RE: Trying to debug a memory.dmp file

2008-03-13 Thread Art DeKneef
Thanks Ken. I'll try this out.

 

Art

 

From: Ken Schaefer [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 7:01 PM
To: NT System Admin Issues
Subject: RE: Trying to debug a memory.dmp file

 

Hi,

 

You can do this in WinDBG

 

Alternatively, if you want to point it to the symbols in your folder then
do:

 

SRV*d:\symbols*http://msdl.microsoft.com/download/symbols

 

That way, WinDBG will use local symbols (if they are correct for the actual
files used in the dump file), or download the symbols from the MS public
symbol server if not.

 

Then do .symfix and .reload to reload the currently used symbols.

 

Cheers

Ken

 

From: Art DeKneef [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 13 March 2008 11:45 AM
To: NT System Admin Issues
Subject: RE: Trying to debug a memory.dmp file

 

Yes it has very slow Internet access.

 

Where do I do the commands. This is the first time doing this so I am
somewhat confused trying to understand what the help file tells me.

 

Thanks

 

Art

 

From: Ken Schaefer [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 5:31 PM
To: NT System Admin Issues
Subject: RE: Trying to debug a memory.dmp file

 

Does the server have internet access?

If so, just do .symfix  and then .reload

 

Cheers

Ken

 

From: Art DeKneef [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 13 March 2008 11:03 AM
To: NT System Admin Issues
Subject: Trying to debug a memory.dmp file

 

I've been trying to figure this out for the past couple of days with no
luck.

 

Customer has a server that reboots by itself. Sometimes it is several times
a day and then it won't do it for a few days letting me think I have fixed
the problem. Same error code 8E every time and almost the same hex values
also. Server is 2003 Enterprise fully patched running as a Terminal Server.
Server has been fine for several years. Nothing in the event logs other than
the last reboot was unexpected. Events before the reboot show someone
printed something but that entry is usually 5 minutes earlier.

 

I have verified every driver is the latest for this Dell PE1600SC. Ran the
Dell diagnostics with no faults found.

 

Downloaded the latest debugging tools (ver. 6.8.0004.0) and the latest
symbols from the Microsoft website. The SP2 symbols are installed to
D:\Symbols, the 2003 CD files are installed to D:\2003CD.

 

In windbg I tell it the symbols are in D:\Symbols, executable search path is
D:\2003CD\I386. No matter what I try I get the same error message: Symbol
file could not be found. Defaulted to export symbols for ntkrnlmp.exe.

 

Then under Loading User Symbols it shows PEB is paged out.

 

Under Bugcheck Analysis it tells me that the Kernel symbols are WRONG.
Please fix symbols to do analysis.

 

Then there are eight sections that tell me I am not using the correct
symbols. In order for the command to work properly the symbol path must be
pointing to the .pdb files that have full type information.

 

Anyone have any ideas as to what I am doing wrong as my searching so far
sucks as I haven't been able to figure this out.

 

Thanks.

 

Art

 

 

 

 

 

 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: IIS 6 Redirection

2008-03-13 Thread Greg Mulholland
Youda man

I'm actually trying to host a website on a server and redirect in iis to a 
share on another server ie \\server2\sharefile:///\\server2\share

I think with the ntlm permissions its not going to work unless i go with digest 
or anonymous which i sure as hell don't want to.

The simplest way i can figure it is to setup the website on server2 and use 
ntlm that way..

What i am really trying to is give users access to their home drives through 
IIS. Maybe IIS is not the best way to do it, but i haven't looked at other 
products yet. If anyone has any better solutions i'm all ears

Greg

From: Ken Schaefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 12:58 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

What do you mean by redirect?

Are you just trying to map a virtual directory on the IIS server to a UNC share 
on another server? If so, this is called UNC Pass Through Authentication

http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technologies/webapp/iis/remstorg.mspx
and
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/9b908f1e-8c17-4cc1-ac61-ffd0df854950.mspx?mfr=true
should answer your questions.

Or are you trying to actually redirect the user via a HTTP redirect status? 
If so, then that's not going to work.

Cheers
Ken


From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 11:36 AM
To: NT System Admin Issues
Cc: Steve Moffat
Subject: IIS 6 Redirection

Anyone ever done iis redirection to a share on another server. If the share 
resides on the iis server itself it works a treat. if the share resides on 
another server it fails.

acls on the shares and ntfs are the same but when i redirect to the other 
server i get multiple logon prompts and then a 401.3 - Unauthorized: Access is 
denied due to an ACL set on the requested resource.

I seem to remember having a similar issue once before and cant remember ever 
solving it.

Anyone have any ideas i would appreciate.

Thanks

Greg







~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: IIS 6 Redirection

2008-03-13 Thread Ken Schaefer
From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 5:53 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

Youda man

I'm actually trying to host a website on a server and redirect in iis to a 
share on another server ie \\server2\share

Again - what do you mean by redirect?!?

If you mean http://servername exists on server1, and http://servername/folder 
gets its content from \\server2\sharefile:///\\server2\share then all you 
need is a virtual directory, and map that back to the second server.

There's no redirection involved here. All you are doing is telling IIS to get 
the content for a virtual directory from a UNC path rather than a local path.

I think with the ntlm permissions its not going to work unless i go with digest 
or anonymous which i sure as hell don't want to.

This doesn't make sense.

What are you trying to do? Here are some options:


a)  Users don't need to authenticate - use anonymous auth, and a fixed 
identity to connect to the UNC share

b)  Users need to authenticate to server1, but should all have access to 
files on server2 - enable whatever AuthN mechanism you want on Server1, but use 
a fixed identity to connect to server2

c)   Users need to authenticate to Server1, but their individual 
credentials need to flow through to Server2. In this case you have a couple of 
options:

a.   Use Basic AuthN (with SSL/TLS to secure credentials in transit)

b.  Use Kerberos AuthN and delegation to Server2

c.   Use Digest/NTLM authN to Server1 and protocol transition to enable 
Kerberos back to Server2

Go to this link:
http://www.adopenstatic.com/cs/blogs/ken/archive/2007/07/19/8460.aspx
(IIS and Kerberos Part 5 - Protocol Transition, Constrained Delegation, S4U2S 
and S4U2P)
Which has links to the other 4 parts on how Kerberos and IIS work, and how to 
get Delegation etc working

If you need to use IIS 7.0, then go to Part 6 which has changes in IIS 
7.0/Windows Server 2008

Cheers
Ken


The simplest way i can figure it is to setup the website on server2 and use 
ntlm that way..

What i am really trying to is give users access to their home drives through 
IIS. Maybe IIS is not the best way to do it, but i haven't looked at other 
products yet. If anyone has any better solutions i'm all ears

Greg

From: Ken Schaefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 12:58 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

What do you mean by redirect?

Are you just trying to map a virtual directory on the IIS server to a UNC share 
on another server? If so, this is called UNC Pass Through Authentication

http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technologies/webapp/iis/remstorg.mspx
and
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/9b908f1e-8c17-4cc1-ac61-ffd0df854950.mspx?mfr=true
should answer your questions.

Or are you trying to actually redirect the user via a HTTP redirect status? 
If so, then that's not going to work.

Cheers
Ken


From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 11:36 AM
To: NT System Admin Issues
Cc: Steve Moffat
Subject: IIS 6 Redirection

Anyone ever done iis redirection to a share on another server. If the share 
resides on the iis server itself it works a treat. if the share resides on 
another server it fails.

acls on the shares and ntfs are the same but when i redirect to the other 
server i get multiple logon prompts and then a 401.3 - Unauthorized: Access is 
denied due to an ACL set on the requested resource.

I seem to remember having a similar issue once before and cant remember ever 
solving it.

Anyone have any ideas i would appreciate.

Thanks

Greg










~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

OT: pacemaker hacking

2008-03-13 Thread Rankin, James R
http://www.nytimes.com/2008/03/12/business/12heart-web.html?_r=2
http://www.nytimes.com/2008/03/12/business/12heart-web.html?_r=2oref=slogi
noref=slogin oref=sloginoref=slogin

 

Indeed, nothing is safe…


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: pacemaker hacking

2008-03-13 Thread Ken Schaefer
Was anything ever safe?

Cheers
Ken

From: Rankin, James R [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 7:09 PM
To: NT System Admin Issues
Subject: OT: pacemaker hacking

http://www.nytimes.com/2008/03/12/business/12heart-web.html?_r=2oref=sloginoref=slogin

Indeed, nothing is safe...




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: IIS 6 Redirection

2008-03-13 Thread Greg Mulholland
http://server1 is pointing to \\server2\homedrivesfile:///\\server2\homedrives

so i want users to be able to go to the url and type in their username and 
password and get access to their home folder but i get the credentials error

if i change the path to \\server1\sharefile:///\\server1\share as a test, it 
works fine.




From: Ken Schaefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 6:39 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 5:53 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

Youda man

I'm actually trying to host a website on a server and redirect in iis to a 
share on another server ie \\server2\share

Again - what do you mean by redirect?!?

If you mean http://servername exists on server1, and http://servername/folder 
gets its content from \\server2\share then all you need is a virtual directory, 
and map that back to the second server.

There's no redirection involved here. All you are doing is telling IIS to get 
the content for a virtual directory from a UNC path rather than a local path.

I think with the ntlm permissions its not going to work unless i go with digest 
or anonymous which i sure as hell don't want to.

This doesn't make sense.

What are you trying to do? Here are some options:


a)  Users don't need to authenticate - use anonymous auth, and a fixed 
identity to connect to the UNC share

b)  Users need to authenticate to server1, but should all have access to 
files on server2 - enable whatever AuthN mechanism you want on Server1, but use 
a fixed identity to connect to server2

c)   Users need to authenticate to Server1, but their individual 
credentials need to flow through to Server2. In this case you have a couple of 
options:

a.   Use Basic AuthN (with SSL/TLS to secure credentials in transit)

b.  Use Kerberos AuthN and delegation to Server2

c.   Use Digest/NTLM authN to Server1 and protocol transition to enable 
Kerberos back to Server2

Go to this link:
http://www.adopenstatic.com/cs/blogs/ken/archive/2007/07/19/8460.aspx
(IIS and Kerberos Part 5 - Protocol Transition, Constrained Delegation, S4U2S 
and S4U2P)
Which has links to the other 4 parts on how Kerberos and IIS work, and how to 
get Delegation etc working

If you need to use IIS 7.0, then go to Part 6 which has changes in IIS 
7.0/Windows Server 2008

Cheers
Ken


The simplest way i can figure it is to setup the website on server2 and use 
ntlm that way..

What i am really trying to is give users access to their home drives through 
IIS. Maybe IIS is not the best way to do it, but i haven't looked at other 
products yet. If anyone has any better solutions i'm all ears

Greg

From: Ken Schaefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 12:58 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

What do you mean by redirect?

Are you just trying to map a virtual directory on the IIS server to a UNC share 
on another server? If so, this is called UNC Pass Through Authentication

http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technologies/webapp/iis/remstorg.mspx
and
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/9b908f1e-8c17-4cc1-ac61-ffd0df854950.mspx?mfr=true
should answer your questions.

Or are you trying to actually redirect the user via a HTTP redirect status? 
If so, then that's not going to work.

Cheers
Ken


From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 11:36 AM
To: NT System Admin Issues
Cc: Steve Moffat
Subject: IIS 6 Redirection

Anyone ever done iis redirection to a share on another server. If the share 
resides on the iis server itself it works a treat. if the share resides on 
another server it fails.

acls on the shares and ntfs are the same but when i redirect to the other 
server i get multiple logon prompts and then a 401.3 - Unauthorized: Access is 
denied due to an ACL set on the requested resource.

I seem to remember having a similar issue once before and cant remember ever 
solving it.

Anyone have any ideas i would appreciate.

Thanks

Greg













~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: IIS 6 Redirection

2008-03-13 Thread Ken Schaefer

From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 7:36 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

http://server1 is pointing to \\server2\homedrivesfile:///\\server2\homedrives

so i want users to be able to go to the url and type in their username and 
password and get access to their home folder but i get the credentials error

Then you need to either:

a)  Configure Kerberos authN to http://server1 -or-

b)  Configure Protocol Transition.
Both options are explained on my blog in a lot of detail


if i change the path to \\server1\share as a test, it works fine.

Do you mean \\server2\sharefile:///\\server2\share? Surely 
\\server1\sharefile:///\\server1\share would be a share on Server1 (your web 
server), not server2 (which houses your home directories)?

Cheers
Ken



From: Ken Schaefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 6:39 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 5:53 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

Youda man

I'm actually trying to host a website on a server and redirect in iis to a 
share on another server ie \\server2\share

Again - what do you mean by redirect?!?

If you mean http://servername exists on server1, and http://servername/folder 
gets its content from \\server2\share then all you need is a virtual directory, 
and map that back to the second server.

There's no redirection involved here. All you are doing is telling IIS to get 
the content for a virtual directory from a UNC path rather than a local path.

I think with the ntlm permissions its not going to work unless i go with digest 
or anonymous which i sure as hell don't want to.

This doesn't make sense.

What are you trying to do? Here are some options:


a)  Users don't need to authenticate - use anonymous auth, and a fixed 
identity to connect to the UNC share

b)  Users need to authenticate to server1, but should all have access to 
files on server2 - enable whatever AuthN mechanism you want on Server1, but use 
a fixed identity to connect to server2

c)   Users need to authenticate to Server1, but their individual 
credentials need to flow through to Server2. In this case you have a couple of 
options:

a.   Use Basic AuthN (with SSL/TLS to secure credentials in transit)

b.  Use Kerberos AuthN and delegation to Server2

c.   Use Digest/NTLM authN to Server1 and protocol transition to enable 
Kerberos back to Server2

Go to this link:
http://www.adopenstatic.com/cs/blogs/ken/archive/2007/07/19/8460.aspx
(IIS and Kerberos Part 5 - Protocol Transition, Constrained Delegation, S4U2S 
and S4U2P)
Which has links to the other 4 parts on how Kerberos and IIS work, and how to 
get Delegation etc working

If you need to use IIS 7.0, then go to Part 6 which has changes in IIS 
7.0/Windows Server 2008

Cheers
Ken


The simplest way i can figure it is to setup the website on server2 and use 
ntlm that way..

What i am really trying to is give users access to their home drives through 
IIS. Maybe IIS is not the best way to do it, but i haven't looked at other 
products yet. If anyone has any better solutions i'm all ears

Greg

From: Ken Schaefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 12:58 PM
To: NT System Admin Issues
Subject: RE: IIS 6 Redirection

What do you mean by redirect?

Are you just trying to map a virtual directory on the IIS server to a UNC share 
on another server? If so, this is called UNC Pass Through Authentication

http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technologies/webapp/iis/remstorg.mspx
and
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/9b908f1e-8c17-4cc1-ac61-ffd0df854950.mspx?mfr=true
should answer your questions.

Or are you trying to actually redirect the user via a HTTP redirect status? 
If so, then that's not going to work.

Cheers
Ken


From: Greg Mulholland [mailto:[EMAIL PROTECTED]
Sent: Thursday, 13 March 2008 11:36 AM
To: NT System Admin Issues
Cc: Steve Moffat
Subject: IIS 6 Redirection

Anyone ever done iis redirection to a share on another server. If the share 
resides on the iis server itself it works a treat. if the share resides on 
another server it fails.

acls on the shares and ntfs are the same but when i redirect to the other 
server i get multiple logon prompts and then a 401.3 - Unauthorized: Access is 
denied due to an ACL set on the requested resource.

I seem to remember having a similar issue once before and cant remember ever 
solving it.

Anyone have any ideas i would appreciate.

Thanks

Greg
















~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Stop WSUS updates

2008-03-13 Thread David W. McSpadden
The netstat -an on the Hub WSUS had hundreds of TCP connections to the WSUS 
port.
I think the problem was that the GPO for the clients wasn't ever modified for 
their Spokes but still had them pointing 
either to the Hub or just in general to the MU server.
We will work on that today now that I have more than 12kps to utilize from the 
T1 circuit

  - Original Message - 
  From: Ken Schaefer 
  To: NT System Admin Issues 
  Sent: Wednesday, March 12, 2008 6:57 PM
  Subject: RE: Stop WSUS updates


  Why aren't your spoke WSUS servers updating from the hub WSUS server? And 
then your clients update from the closest WSUS server?

   

   

  Client1  Spoke WSUS  -  Hub WSUS - internet - MU server

   ^

  Client2  Spoke WSUS  --|

   

   

  If that's the case, then only the hub WSUS server would ever use the internet 
link. And it shouldn't be saturated for long.

   

  Why do you think it's WSUS and not something else?

   

  Cheers

  Ken

   

   

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: Thursday, 13 March 2008 2:23 AM
  To: NT System Admin Issues
  Subject: Re: Stop WSUS updates

   

  25 LAN's with T1's tied to 1 T1 with Internet Access.(MAIN WSUS Resides)

  Internet LAN saturated.

   

- Original Message - 

From: NTSysAdmin 

To: NT System Admin Issues 

Sent: Wednesday, March 12, 2008 11:21 AM

Subject: RE: Stop WSUS updates

 

I doubt it's wsus unless you just approved hundreds of patches. Last nights 
downloads didn't amount to anything much..plus, wsus won't saturate an internet 
connection.

 

S

 

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 12:15 PM
To: NT System Admin Issues
Subject: Re: Stop WSUS updates

 

Load started at 3:00am.  That's when WSUS is set up to run downloads.

We have a hub and spoke for our WAN setup.  We killed the HUB thinking the 
spokes would cease but it appears

as if the spoke servers are still pushing downloads and bybassing the HUB 
server to saturate the Internet link

  - Original Message - 

  From: Ames Matthew B 

  To: NT System Admin Issues 

  Sent: Wednesday, March 12, 2008 11:12 AM

  Subject: RE: Stop WSUS updates

   

  Maybe they are going else where to get windows updates, like the 
internet, rather than your local wsus server?  Or is someone just copying some 
large files around your network?  Are you seeing a lot of network traffic to 
your wsus server, or just else where on your network?

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 12 March 2008 15:06
  To: NT System Admin Issues
  Subject: Re: Stop WSUS updates

  Ok I have them stopped.  But the load is still to high.  Could the PC's 
still be downloading even if WSUS and WWW is dead?

- Original Message - 

From: Damien Solodow 

To: NT System Admin Issues 

Sent: Wednesday, March 12, 2008 11:04 AM

Subject: RE: Stop WSUS updates

 

Then stop the Wsus and www services on your wsus server.

 

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 10:59 AM
To: NT System Admin Issues
Subject: Re: Stop WSUS updates

 

My network load is too high.

I need to stop the WSUS.

 

  - Original Message - 

  From: Miller Bonnie L. 

  To: NT System Admin Issues 

  Sent: Wednesday, March 12, 2008 10:28 AM

  Subject: RE: Stop WSUS updates

   

  What are you trying to prevent from happening?

   

  -Bonnie

   

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: Wednesday, March 12, 2008 7:21 AM
  To: NT System Admin Issues
  Subject: Stop WSUS updates

   

  To stop WSUS updates I need to do the following:

   

  1.)Stop WWW on WSUS server.

   

  2.)Reboot workstations that have downloading icon in system tray.

   

  Or is there more?

   

  





__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Remote server won't allow management

2008-03-13 Thread David W. McSpadden
I have a remote server I would like to get into but is was last restarted in 
Diag mode from MSCONFIG.
There is no one at the remote site.  Is there a way to get it unstuck?
I can ping it but that is all.
~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Remote server won't allow management

2008-03-13 Thread Rankin, James R
Take it it doesn’t have a DRAC/RIB/ILO installed?

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted in
Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden
Nope.

  - Original Message - 
  From: Rankin, James R 
  To: NT System Admin Issues 
  Sent: Thursday, March 13, 2008 7:29 AM
  Subject: RE: Remote server won't allow management


  Take it it doesn't have a DRAC/RIB/ILO installed?

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:20
  To: NT System Admin Issues
  Subject: Remote server won't allow management

   

  I have a remote server I would like to get into but is was last restarted in 
Diag mode from MSCONFIG.

  There is no one at the remote site.  Is there a way to get it unstuck?

  I can ping it but that is all.

   

 





__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Remote server won't allow management

2008-03-13 Thread Michael B. Smith
Have you tried the shutdown.exe command remotely?

 

Regards,

 

Michael B. Smith

MCSE/Exchange MVP

http://TheEssentialExchange.com

 

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 7:30 AM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James R mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn't have a DRAC/RIB/ILO installed?

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted in
Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

 

 

 







__






This email has been scanned by the MessageLabs Email Security System.






For more information please visit http://www.messagelabs.com/email 






__






 
 
 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Remote server won't allow management

2008-03-13 Thread Rankin, James R
If it won’t take a remote shutdown command (from the ResKit), then it is
probably out of reach. Most stuff relies on some form of RPC communication.
I sometimes use pskill to kill the winlogon process which generally makes it
bluescreen, but this may not work either in diagnostic mode

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James mailto:[EMAIL PROTECTED]  R 

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn’t have a DRAC/RIB/ILO installed?

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted in
Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

 

 

 







__






This email has been scanned by the MessageLabs Email Security System.






For more information please visit http://www.messagelabs.com/email 






__






 
 
 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Remote server won't allow management

2008-03-13 Thread Ames Matthew B
so that leaves the option of somehow causing the machine to bluescreen
and hope it then reboots.
 
What does the server do?  if it is on a remote site with no bodies
there, is its unavailably going to be an issue until a body arrives on
site? (who could then possibly manually reboot it/power cycle it for
you)



From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow management



If it won't take a remote shutdown command (from the ResKit), then it is
probably out of reach. Most stuff relies on some form of RPC
communication. I sometimes use pskill to kill the winlogon process which
generally makes it bluescreen, but this may not work either in
diagnostic mode

 



From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James R mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn't have a DRAC/RIB/ILO installed?

 





From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last
restarted in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it
unstuck?

I can ping it but that is all.

 

 

 

 






__




This email has been scanned by the MessageLabs Email Security
System.




For more information please visit
http://www.messagelabs.com/email 





__




 
 
 

 

 






The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal Purchase 
Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, Farnborough, 
Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread Rubens Almeida
Some times GenControl works for me in situations like these:
http://www.gensortium.com/products/gencontrol.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden
I have a web based power switch.  I have completely shut it down.
It has autorestart on power.  I ping it and see the pings go away and then 
comes back but still no management.
  - Original Message - 
  From: Michael B. Smith 
  To: NT System Admin Issues 
  Sent: Thursday, March 13, 2008 7:33 AM
  Subject: RE: Remote server won't allow management


  Have you tried the shutdown.exe command remotely?

   

  Regards,

   

  Michael B. Smith

  MCSE/Exchange MVP

  http://TheEssentialExchange.com

   

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: Thursday, March 13, 2008 7:30 AM
  To: NT System Admin Issues
  Subject: Re: Remote server won't allow management

   

  Nope.

   

- Original Message - 

From: Rankin, James R 

To: NT System Admin Issues 

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn't have a DRAC/RIB/ILO installed?

 




From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted 
in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

  

 

__

This email has been scanned by the MessageLabs Email Security System.

For more information please visit http://www.messagelabs.com/email 

__



 





__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden
That's what I am figuring on.
But they cost $180 hour to show up.
It sits in an ATT data center 4 hours from my location.
It is my 'backup' DC for AD.  No real worries today but just would like to not 
have to pay ATT to start it up and 
mssonfig it back to normal
  - Original Message - 
  From: Ames Matthew B 
  To: NT System Admin Issues 
  Sent: Thursday, March 13, 2008 7:40 AM
  Subject: RE: Remote server won't allow management


  so that leaves the option of somehow causing the machine to bluescreen and 
hope it then reboots.

  What does the server do?  if it is on a remote site with no bodies there, 
is its unavailably going to be an issue until a body arrives on site? (who 
could then possibly manually reboot it/power cycle it for you)



--
  From: Rankin, James R [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:38
  To: NT System Admin Issues
  Subject: RE: Remote server won't allow management


  If it won't take a remote shutdown command (from the ResKit), then it is 
probably out of reach. Most stuff relies on some form of RPC communication. I 
sometimes use pskill to kill the winlogon process which generally makes it 
bluescreen, but this may not work either in diagnostic mode

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:30
  To: NT System Admin Issues
  Subject: Re: Remote server won't allow management

   

  Nope.

   

- Original Message - 

From: Rankin, James R 

To: NT System Admin Issues 

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn't have a DRAC/RIB/ILO installed?

 




From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted 
in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

  

 

__

This email has been scanned by the MessageLabs Email Security System.

For more information please visit http://www.messagelabs.com/email 

__



 





The information contained in this E-Mail and any subsequent 
  correspondence is private and is intended solely for the intended 
  recipient(s).  The information in this communication may be 
  confidential and/or legally privileged.  Nothing in this e-mail is 
  intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
  subject to any other legally binding commitments, unless the e-mail 
  contains an express statement to the contrary or incorporates a formal 
Purchase Order.

  For those other than the recipient any disclosure, copying, 
  distribution, or any action taken or omitted to be taken in reliance 
  on such information is prohibited and may be unlawful.

  Emails and other electronic communication with QinetiQ may be 
  monitored and recorded for business purposes including security, audit 
  and archival purposes.  Any response to this email indicates consent 
  to this.

  Telephone calls to QinetiQ may be monitored or recorded for quality 
  control, security and other business purposes.

  QinetiQ Limited
  Registered in England  Wales: Company Number:3796233
  Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
  Trading address: Cody Technology Park, Cody Building, Ively Road, 
Farnborough, Hampshire, GU14 0LX, United Kingdom 
  http://www.QinetiQ.com/home/legal.html







__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Remote server won't allow management

2008-03-13 Thread Rankin, James R
That $180 per hour would surely be better placed towards getting a DRAC
bunged in

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but just would like to
not have to pay ATT to start it up and 

mssonfig it back to normal

- Original Message - 

From: Ames Matthew B mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:40 AM

Subject: RE: Remote server won't allow management

 

so that leaves the option of somehow causing the machine to bluescreen and
hope it then reboots.

 

What does the server do?  if it is on a remote site with no bodies there,
is its unavailably going to be an issue until a body arrives on site? (who
could then possibly manually reboot it/power cycle it for you)

 


  _  


From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

If it won’t take a remote shutdown command (from the ResKit), then it is
probably out of reach. Most stuff relies on some form of RPC communication.
I sometimes use pskill to kill the winlogon process which generally makes it
bluescreen, but this may not work either in diagnostic mode

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James mailto:[EMAIL PROTECTED]  R 

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn’t have a DRAC/RIB/ILO installed?

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted in
Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

 

 

 














 
__













 
This email has been scanned by the MessageLabs Email Security System.













 
For more information please visit http://www.messagelabs.com/email 













 
__













 
 
 
 

 

 

 

 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 







__






This email has been scanned by the MessageLabs Email Security System.






For more information please visit http://www.messagelabs.com/email 






__






 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden
I wonder if HP has something like a DRAC.
  - Original Message - 
  From: Rankin, James R 
  To: NT System Admin Issues 
  Sent: Thursday, March 13, 2008 7:47 AM
  Subject: RE: Remote server won't allow management


  That $180 per hour would surely be better placed towards getting a DRAC 
bunged in

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:41
  To: NT System Admin Issues
  Subject: Re: Remote server won't allow management

   

  That's what I am figuring on.

  But they cost $180 hour to show up.

  It sits in an ATT data center 4 hours from my location.

  It is my 'backup' DC for AD.  No real worries today but just would like to 
not have to pay ATT to start it up and 

  mssonfig it back to normal

- Original Message - 

From: Ames Matthew B 

To: NT System Admin Issues 

Sent: Thursday, March 13, 2008 7:40 AM

Subject: RE: Remote server won't allow management

 

so that leaves the option of somehow causing the machine to bluescreen and 
hope it then reboots.

 

What does the server do?  if it is on a remote site with no bodies there, 
is its unavailably going to be an issue until a body arrives on site? (who 
could then possibly manually reboot it/power cycle it for you)

 




From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

If it won't take a remote shutdown command (from the ResKit), then it is 
probably out of reach. Most stuff relies on some form of RPC communication. I 
sometimes use pskill to kill the winlogon process which generally makes it 
bluescreen, but this may not work either in diagnostic mode

 




From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

  - Original Message - 

  From: Rankin, James R 

  To: NT System Admin Issues 

  Sent: Thursday, March 13, 2008 7:29 AM

  Subject: RE: Remote server won't allow management

   

  Take it it doesn't have a DRAC/RIB/ILO installed?

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:20
  To: NT System Admin Issues
  Subject: Remote server won't allow management

   

  I have a remote server I would like to get into but is was last restarted 
in Diag mode from MSCONFIG.

  There is no one at the remote site.  Is there a way to get it unstuck?

  I can ping it but that is all.

   

  

 



 __



 This email has been scanned by the MessageLabs Email Security System.



 For more information please visit http://www.messagelabs.com/email 



 __



 

  

  The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal 
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, 
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

__

This email has been scanned by the MessageLabs Email Security System.

For more information please visit http://www.messagelabs.com/email 

__

  

 





RE: Remote server won't allow management

2008-03-13 Thread Rankin, James R
ILO/RIB, whatever they’re called now

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:45
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

I wonder if HP has something like a DRAC.

- Original Message - 

From: Rankin, James mailto:[EMAIL PROTECTED]  R 

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:47 AM

Subject: RE: Remote server won't allow management

 

That $180 per hour would surely be better placed towards getting a DRAC
bunged in

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but just would like to
not have to pay ATT to start it up and 

mssonfig it back to normal

- Original Message - 

From: Ames Matthew B mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:40 AM

Subject: RE: Remote server won't allow management

 

so that leaves the option of somehow causing the machine to bluescreen and
hope it then reboots.

 

What does the server do?  if it is on a remote site with no bodies there,
is its unavailably going to be an issue until a body arrives on site? (who
could then possibly manually reboot it/power cycle it for you)

 


  _  


From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

If it won’t take a remote shutdown command (from the ResKit), then it is
probably out of reach. Most stuff relies on some form of RPC communication.
I sometimes use pskill to kill the winlogon process which generally makes it
bluescreen, but this may not work either in diagnostic mode

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James mailto:[EMAIL PROTECTED]  R 

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn’t have a DRAC/RIB/ILO installed?

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted in
Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

 

 

 














 














 
 
__













 














 
 
This email has been scanned by the MessageLabs Email Security System.













 














 
 
For more information please visit http://www.messagelabs.com/email 













 














 
 
__













 














 
 
 
 
 

 

 

 

 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 














 
__













 
This email has been scanned by the MessageLabs Email Security System.













 
For more information please visit http://www.messagelabs.com/email 













 

RE: Remote server won't allow management

2008-03-13 Thread Ames Matthew B
ILO



From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:45
To: NT System Admin Issues
Subject: Re: Remote server won't allow management


I wonder if HP has something like a DRAC.

- Original Message - 
From: Rankin, James R mailto:[EMAIL PROTECTED]  
To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  
Sent: Thursday, March 13, 2008 7:47 AM
Subject: RE: Remote server won't allow management


That $180 per hour would surely be better placed towards getting
a DRAC bunged in

 





From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but just
would like to not have to pay ATT to start it up and 

mssonfig it back to normal

- Original Message - 

From: Ames Matthew B mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:40 AM

Subject: RE: Remote server won't allow management

 

so that leaves the option of somehow causing the machine
to bluescreen and hope it then reboots.

 

What does the server do?  if it is on a remote site with
no bodies there, is its unavailably going to be an issue until a body
arrives on site? (who could then possibly manually reboot it/power cycle
it for you)

 





From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

If it won't take a remote shutdown command (from the
ResKit), then it is probably out of reach. Most stuff relies on some
form of RPC communication. I sometimes use pskill to kill the winlogon
process which generally makes it bluescreen, but this may not work
either in diagnostic mode

 





From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James R
mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow
management

 

Take it it doesn't have a DRAC/RIB/ILO
installed?

 





From: David W. McSpadden
[mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into
but is was last restarted in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a
way to get it unstuck?

I can ping it but that is all.

 

 

 

 










 

__









 
This email has been scanned by the MessageLabs
Email Security System.









 

RE: Remote server won't allow management

2008-03-13 Thread Rankin, James R
http://h18013.www1.hp.com/products/servers/management/ilo/

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:45
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

I wonder if HP has something like a DRAC.

- Original Message - 

From: Rankin, James mailto:[EMAIL PROTECTED]  R 

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:47 AM

Subject: RE: Remote server won't allow management

 

That $180 per hour would surely be better placed towards getting a DRAC
bunged in

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but just would like to
not have to pay ATT to start it up and 

mssonfig it back to normal

- Original Message - 

From: Ames Matthew B mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:40 AM

Subject: RE: Remote server won't allow management

 

so that leaves the option of somehow causing the machine to bluescreen and
hope it then reboots.

 

What does the server do?  if it is on a remote site with no bodies there,
is its unavailably going to be an issue until a body arrives on site? (who
could then possibly manually reboot it/power cycle it for you)

 


  _  


From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

If it won’t take a remote shutdown command (from the ResKit), then it is
probably out of reach. Most stuff relies on some form of RPC communication.
I sometimes use pskill to kill the winlogon process which generally makes it
bluescreen, but this may not work either in diagnostic mode

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James mailto:[EMAIL PROTECTED]  R 

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn’t have a DRAC/RIB/ILO installed?

 


  _  


From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted in
Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

 

 

 














 














 
 
__













 














 
 
This email has been scanned by the MessageLabs Email Security System.













 














 
 
For more information please visit http://www.messagelabs.com/email 













 














 
 
__













 














 
 
 
 
 

 

 

 

 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 














 
__













 
This email has been scanned by the MessageLabs Email Security System.













 
For more information please visit http://www.messagelabs.com/email 













 

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden
I have ILO interfaces just never had a need to set one up.
The DRAC looked to be a controller card or is it similar to the an ether port 
also?
  - Original Message - 
  From: Rankin, James R 
  To: NT System Admin Issues 
  Sent: Thursday, March 13, 2008 7:52 AM
  Subject: RE: Remote server won't allow management


  ILO/RIB, whatever they're called now

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:45
  To: NT System Admin Issues
  Subject: Re: Remote server won't allow management

   

  I wonder if HP has something like a DRAC.

- Original Message - 

From: Rankin, James R 

To: NT System Admin Issues 

Sent: Thursday, March 13, 2008 7:47 AM

Subject: RE: Remote server won't allow management

 

That $180 per hour would surely be better placed towards getting a DRAC 
bunged in

 




From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but just would like to 
not have to pay ATT to start it up and 

mssonfig it back to normal

  - Original Message - 

  From: Ames Matthew B 

  To: NT System Admin Issues 

  Sent: Thursday, March 13, 2008 7:40 AM

  Subject: RE: Remote server won't allow management

   

  so that leaves the option of somehow causing the machine to bluescreen 
and hope it then reboots.

   

  What does the server do?  if it is on a remote site with no bodies 
there, is its unavailably going to be an issue until a body arrives on site? 
(who could then possibly manually reboot it/power cycle it for you)

   


--

  From: Rankin, James R [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:38
  To: NT System Admin Issues
  Subject: RE: Remote server won't allow management

  If it won't take a remote shutdown command (from the ResKit), then it is 
probably out of reach. Most stuff relies on some form of RPC communication. I 
sometimes use pskill to kill the winlogon process which generally makes it 
bluescreen, but this may not work either in diagnostic mode

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:30
  To: NT System Admin Issues
  Subject: Re: Remote server won't allow management

   

  Nope.

   

- Original Message - 

From: Rankin, James R 

To: NT System Admin Issues 

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn't have a DRAC/RIB/ILO installed?

 




From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last 
restarted in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

  

 



 



  __



 



  This email has been scanned by the MessageLabs Email Security System.



 



  For more information please visit http://www.messagelabs.com/email 



 



  __



 



  

  

  The information contained in this E-Mail and any subsequent 
  correspondence is private and is intended solely for the intended 
  recipient(s).  The information in this communication may be 
  confidential and/or legally privileged.  Nothing in this e-mail is 
  intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
  subject to any other legally binding commitments, unless the e-mail 
  contains an express statement to the contrary or incorporates a formal 
Purchase Order.

  For those other than the recipient any disclosure, copying, 
  distribution, or any action taken or omitted to be taken in reliance 
  on such information is prohibited and may be unlawful.

  Emails and other electronic communication with QinetiQ may be 
  monitored and recorded for business purposes including security, audit 
  and archival purposes.  Any 

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden
Thanks.
  - Original Message - 
  From: Rankin, James R 
  To: NT System Admin Issues 
  Sent: Thursday, March 13, 2008 7:52 AM
  Subject: RE: Remote server won't allow management


  http://h18013.www1.hp.com/products/servers/management/ilo/

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:45
  To: NT System Admin Issues
  Subject: Re: Remote server won't allow management

   

  I wonder if HP has something like a DRAC.

- Original Message - 

From: Rankin, James R 

To: NT System Admin Issues 

Sent: Thursday, March 13, 2008 7:47 AM

Subject: RE: Remote server won't allow management

 

That $180 per hour would surely be better placed towards getting a DRAC 
bunged in

 




From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but just would like to 
not have to pay ATT to start it up and 

mssonfig it back to normal

  - Original Message - 

  From: Ames Matthew B 

  To: NT System Admin Issues 

  Sent: Thursday, March 13, 2008 7:40 AM

  Subject: RE: Remote server won't allow management

   

  so that leaves the option of somehow causing the machine to bluescreen 
and hope it then reboots.

   

  What does the server do?  if it is on a remote site with no bodies 
there, is its unavailably going to be an issue until a body arrives on site? 
(who could then possibly manually reboot it/power cycle it for you)

   


--

  From: Rankin, James R [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:38
  To: NT System Admin Issues
  Subject: RE: Remote server won't allow management

  If it won't take a remote shutdown command (from the ResKit), then it is 
probably out of reach. Most stuff relies on some form of RPC communication. I 
sometimes use pskill to kill the winlogon process which generally makes it 
bluescreen, but this may not work either in diagnostic mode

   


--

  From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
  Sent: 13 March 2008 11:30
  To: NT System Admin Issues
  Subject: Re: Remote server won't allow management

   

  Nope.

   

- Original Message - 

From: Rankin, James R 

To: NT System Admin Issues 

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn't have a DRAC/RIB/ILO installed?

 




From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last 
restarted in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

  

 



 



  __



 



  This email has been scanned by the MessageLabs Email Security System.



 



  For more information please visit http://www.messagelabs.com/email 



 



  __



 



  

  

  The information contained in this E-Mail and any subsequent 
  correspondence is private and is intended solely for the intended 
  recipient(s).  The information in this communication may be 
  confidential and/or legally privileged.  Nothing in this e-mail is 
  intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
  subject to any other legally binding commitments, unless the e-mail 
  contains an express statement to the contrary or incorporates a formal 
Purchase Order.

  For those other than the recipient any disclosure, copying, 
  distribution, or any action taken or omitted to be taken in reliance 
  on such information is prohibited and may be unlawful.

  Emails and other electronic communication with QinetiQ may be 
  monitored and recorded for business purposes including security, audit 
  and archival purposes.  Any response to this email indicates consent 
  to this.

  Telephone calls to QinetiQ may be monitored or recorded 

DMZ care and feeding

2008-03-13 Thread RichardMcClary
OK, we've developed a philosopical situation here regarding a DMZ server:

The server hosts a public web site and database.  I was told that it 
needed to be backed up because development was being done in it.  My first 
consideration was a backup mechanism.  It wasn't until several minutes 
later than I did my Donald Duck squawk questioning the wisdom of doing 
active development on a DMZ machine.

Backing up is a bit of an issue (buy a drive, or start collecting CDs from 
its writable drive), but to me the bigger issue is, should we be backing 
this up?  It seems to me that the DMZ is considered to be hackable yet 
isolated.  Therefore, it might be best to consider that at any time (from 
moment #1) that it may have already been compromised.  In other words, if 
we find that in fact it has been cracked, would we even be able to trust 
that which has been backed up?  That we'd never be sure that we had a 
backup that had never been compromised in any way so it could be restored?

It seems to me that, by there nature, materials on DMZ machines should be 
developed elsewhere, and the finished products should then be published to 
the DMZ machine.

Personally, I'm not worried about being right or wrong here but rather 
wanting to follow best practices.  SO,is it consistant with best 
practices to go ahead and do development on the DMZ system, back up source 
code, etc, and presume that when the system has to be re-built we can 
restore an uncompromized machine?  Or, should I be stubborn and insist 
that development be done elsewhere and then published to the DMZ machine?

Thanks - I have a number of folks here wanting answers...
--
Richard McClary, Systems Administrator
ASPCA Knowledge Management
1717 S Philo Rd, Ste 36, Urbana, IL  61802
217-337-9761
http://www.aspca.org


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Confusing server issue

2008-03-13 Thread Rankin, James R
Here’s a confusing one – I have a virtual server running Windows 2003 that
shuts itself down every time I log in. It will boot in safe mode or
diagnostic mode without any issues, yet whenever I log on in normal mode, it
shuts down. The shutdown in the event log shows as “Legacy API shutdown” and
comes from NT Authority. The UPS service is stopped, and there are no
patches pending or trying to install. The startup in msconfig shows nothing
strange. Anyone have any ideas why this might be happening? Google appears
not to be my friend for this issue…

 

 

TIA,

 

 

JR


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Confusing server issue

2008-03-13 Thread Rankin, James R
Should have added, there are no scheduled tasks either…

 

  _  

From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:59
To: NT System Admin Issues
Subject: Confusing server issue

 

Here’s a confusing one – I have a virtual server running Windows 2003 that
shuts itself down every time I log in. It will boot in safe mode or
diagnostic mode without any issues, yet whenever I log on in normal mode, it
shuts down. The shutdown in the event log shows as “Legacy API shutdown” and
comes from NT Authority. The UPS service is stopped, and there are no
patches pending or trying to install. The startup in msconfig shows nothing
strange. Anyone have any ideas why this might be happening? Google appears
not to be my friend for this issue…

 

 

TIA,

 

 

JR

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: DMZ care and feeding

2008-03-13 Thread Manpreet Chaniana
Well It truly depends on what company wants to be in DMZ , things like
Firewalls , databases, high availability servers, etc

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 7:56 AM
To: NT System Admin Issues
Subject: DMZ care and feeding

OK, we've developed a philosopical situation here regarding a DMZ server:

The server hosts a public web site and database.  I was told that it 
needed to be backed up because development was being done in it.  My first 
consideration was a backup mechanism.  It wasn't until several minutes 
later than I did my Donald Duck squawk questioning the wisdom of doing 
active development on a DMZ machine.

Backing up is a bit of an issue (buy a drive, or start collecting CDs from 
its writable drive), but to me the bigger issue is, should we be backing 
this up?  It seems to me that the DMZ is considered to be hackable yet 
isolated.  Therefore, it might be best to consider that at any time (from 
moment #1) that it may have already been compromised.  In other words, if 
we find that in fact it has been cracked, would we even be able to trust 
that which has been backed up?  That we'd never be sure that we had a 
backup that had never been compromised in any way so it could be restored?

It seems to me that, by there nature, materials on DMZ machines should be 
developed elsewhere, and the finished products should then be published to 
the DMZ machine.

Personally, I'm not worried about being right or wrong here but rather 
wanting to follow best practices.  SO,is it consistant with best 
practices to go ahead and do development on the DMZ system, back up source 
code, etc, and presume that when the system has to be re-built we can 
restore an uncompromized machine?  Or, should I be stubborn and insist 
that development be done elsewhere and then published to the DMZ machine?

Thanks - I have a number of folks here wanting answers...
--
Richard McClary, Systems Administrator
ASPCA Knowledge Management
1717 S Philo Rd, Ste 36, Urbana, IL  61802
217-337-9761
http://www.aspca.org


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Confusing server issue

2008-03-13 Thread Ames Matthew B
Just when you log in?  If so kill your profile and let it create a new
one from fresh.



From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 12:01
To: NT System Admin Issues
Subject: RE: Confusing server issue



Should have added, there are no scheduled tasks either...

 



From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:59
To: NT System Admin Issues
Subject: Confusing server issue

 

Here's a confusing one - I have a virtual server running Windows 2003
that shuts itself down every time I log in. It will boot in safe mode or
diagnostic mode without any issues, yet whenever I log on in normal
mode, it shuts down. The shutdown in the event log shows as Legacy API
shutdown and comes from NT Authority. The UPS service is stopped, and
there are no patches pending or trying to install. The startup in
msconfig shows nothing strange. Anyone have any ideas why this might be
happening? Google appears not to be my friend for this issue...

 

 

TIA,

 

 

JR

 

 






The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal Purchase 
Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, Farnborough, 
Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Confusing server issue

2008-03-13 Thread Rankin, James R
No, when anyone logs in. Even a user that creates a new profile - it
actually shut down quicker than normal with a new profile.

 

  _  

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 12:19
To: NT System Admin Issues
Subject: RE: Confusing server issue

 

Just when you log in?  If so kill your profile and let it create a new one
from fresh.

 

  _  

From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 12:01
To: NT System Admin Issues
Subject: RE: Confusing server issue

Should have added, there are no scheduled tasks either.

 

  _  

From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:59
To: NT System Admin Issues
Subject: Confusing server issue

 

Here's a confusing one - I have a virtual server running Windows 2003 that
shuts itself down every time I log in. It will boot in safe mode or
diagnostic mode without any issues, yet whenever I log on in normal mode, it
shuts down. The shutdown in the event log shows as Legacy API shutdown and
comes from NT Authority. The UPS service is stopped, and there are no
patches pending or trying to install. The startup in msconfig shows nothing
strange. Anyone have any ideas why this might be happening? Google appears
not to be my friend for this issue.

 

 

TIA,

 

 

JR

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Sharepoint migration/conslidation

2008-03-13 Thread Richards, Brian D
We're looking at migration products from a company called Metalogix for
moving WSS 2.0 content to MOSS 2007:

http://www.metalogix.net/products/migrationmanagersp/index.htm 

Brian


-Original Message-
From: M Bruyere [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2008 3:20 PM
To: NT System Admin Issues
Subject: Sharepoint migration/conslidation

Hi,
I have to merge Sharepoint servers (1.0 and 2.0) to a new server
(3.0). Anyone know a good tool to merge Sharepoint sites?


Thanks

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: Sharepoint migration/conslidation

2008-03-13 Thread Kevin Lundy
Michael - I just searched on CodePlex and it has been removed (or my search
skills failed due to lack of coffee)

On Wed, Mar 12, 2008 at 6:03 PM, Michael B. Smith 
[EMAIL PROTECTED] wrote:

 Yes, I've been developing one under contract to a client. :-)

 I'll give you some HUGE hints, that I didn't have when I started:

 1] PowerShell is MUCH easier to work in than cmd.exe (ok, I already knew
 this one)

 2] Don't even TRY to do this without SPSiteManager (it's on CodePlex). It
 does at least 50% of the work for you.

 3] Make sure that you setsitelock none before you release a contentdb, and

 4] Make sure that you release a contentdb before attaching it to another
 WSS
 instance.

 5] If prescan fails: Stop. Don't try to force an upgrade until you've
 fixed
 the problems. It shouldn't be called prescan, it should be called
 required-scan.

 6] psexec makes this doable from a single server

 7] you better know a little T-SQL if you want to automate the process.

 8] Microsoft absolutely positively does NOT support any direct
 modification
 to either configdb or any contentdb.

 Now, I don't know your environment, but the one I'm working in right now
 is
 a killer. Every individual can only do small pieces of the puzzle, so I've
 had to break the processes up into teeny-tiny steps requiring different
 AUTH
 from different users for each relevant step. I hope, for your sanity's
 sake,
 that you don't have to do that too.

 Regards,

 Michael B. Smith
 MCSE/Exchange MVP
 http://TheEssentialExchange.com http://theessentialexchange.com/


 -Original Message-
 From: M Bruyere [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2008 3:20 PM
 To: NT System Admin Issues
 Subject: Sharepoint migration/conslidation

 Hi,
I have to merge Sharepoint servers (1.0 and 2.0) to a new server
 (3.0). Anyone know a good tool to merge Sharepoint sites?


 Thanks

 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Sharepoint migration/conslidation

2008-03-13 Thread Michael B. Smith
http://www.codeplex.com/SPSiteManager

 

Regards,

 

Michael B. Smith

MCSE/Exchange MVP

http://TheEssentialExchange.com

 

From: Kevin Lundy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 9:11 AM
To: NT System Admin Issues
Subject: Re: Sharepoint migration/conslidation

 

Michael - I just searched on CodePlex and it has been removed (or my search
skills failed due to lack of coffee)

On Wed, Mar 12, 2008 at 6:03 PM, Michael B. Smith
[EMAIL PROTECTED] wrote:

Yes, I've been developing one under contract to a client. :-)

I'll give you some HUGE hints, that I didn't have when I started:

1] PowerShell is MUCH easier to work in than cmd.exe (ok, I already knew
this one)

2] Don't even TRY to do this without SPSiteManager (it's on CodePlex). It
does at least 50% of the work for you.

3] Make sure that you setsitelock none before you release a contentdb, and

4] Make sure that you release a contentdb before attaching it to another WSS
instance.

5] If prescan fails: Stop. Don't try to force an upgrade until you've fixed
the problems. It shouldn't be called prescan, it should be called
required-scan.

6] psexec makes this doable from a single server

7] you better know a little T-SQL if you want to automate the process.

8] Microsoft absolutely positively does NOT support any direct modification
to either configdb or any contentdb.

Now, I don't know your environment, but the one I'm working in right now is
a killer. Every individual can only do small pieces of the puzzle, so I've
had to break the processes up into teeny-tiny steps requiring different AUTH
from different users for each relevant step. I hope, for your sanity's sake,
that you don't have to do that too.

Regards,

Michael B. Smith
MCSE/Exchange MVP
http://TheEssentialExchange.com http://theessentialexchange.com/ 



-Original Message-
From: M Bruyere [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2008 3:20 PM
To: NT System Admin Issues
Subject: Sharepoint migration/conslidation

Hi,
   I have to merge Sharepoint servers (1.0 and 2.0) to a new server
(3.0). Anyone know a good tool to merge Sharepoint sites?


Thanks

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Sharepoint migration/conslidation

2008-03-13 Thread M Bruyere
Thanks for the hints! To be honest, I never worked with sharepoint
before and I'm charged to merge 3 servers into a single one. There is
one 1.0 and two 2.0 that will be moved to 3.0.
I'm reading as much as I can to learn the product as well as the way
to migrate/merge sites on another server. As of now, it seems that
there is no easy way to achieve this.

Well still reading and openned to ideas, ressources or hints

Thanks!
MB

On Wed, Mar 12, 2008 at 6:03 PM, Michael B. Smith
[EMAIL PROTECTED] wrote:
 Yes, I've been developing one under contract to a client. :-)

  I'll give you some HUGE hints, that I didn't have when I started:

  1] PowerShell is MUCH easier to work in than cmd.exe (ok, I already knew
  this one)

  2] Don't even TRY to do this without SPSiteManager (it's on CodePlex). It
  does at least 50% of the work for you.

  3] Make sure that you setsitelock none before you release a contentdb, and

  4] Make sure that you release a contentdb before attaching it to another WSS
  instance.

  5] If prescan fails: Stop. Don't try to force an upgrade until you've fixed
  the problems. It shouldn't be called prescan, it should be called
  required-scan.

  6] psexec makes this doable from a single server

  7] you better know a little T-SQL if you want to automate the process.

  8] Microsoft absolutely positively does NOT support any direct modification
  to either configdb or any contentdb.

  Now, I don't know your environment, but the one I'm working in right now is
  a killer. Every individual can only do small pieces of the puzzle, so I've
  had to break the processes up into teeny-tiny steps requiring different AUTH
  from different users for each relevant step. I hope, for your sanity's sake,
  that you don't have to do that too.

  Regards,

  Michael B. Smith
  MCSE/Exchange MVP
  http://TheEssentialExchange.com




  -Original Message-
  From: M Bruyere [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, March 12, 2008 3:20 PM
  To: NT System Admin Issues
  Subject: Sharepoint migration/conslidation

  Hi,
 I have to merge Sharepoint servers (1.0 and 2.0) to a new server
  (3.0). Anyone know a good tool to merge Sharepoint sites?


  Thanks

  ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
  ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


  ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
  ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: Sharepoint migration/conslidation

2008-03-13 Thread Kevin Lundy
Now why did I know that was going to bite me in the butt?  Hate it when that
happens.

I guess google had a link to an old version on codeplex that said it has
been removed and no longer supported

Thanks
On Thu, Mar 13, 2008 at 9:11 AM, Michael B. Smith 
[EMAIL PROTECTED] wrote:

  http://www.codeplex.com/SPSiteManager



 Regards,



 Michael B. Smith

 MCSE/Exchange MVP

 http://TheEssentialExchange.com http://theessentialexchange.com/



 *From:* Kevin Lundy [mailto:[EMAIL PROTECTED]
 *Sent:* Thursday, March 13, 2008 9:11 AM
 *To:* NT System Admin Issues
 *Subject:* Re: Sharepoint migration/conslidation



 Michael - I just searched on CodePlex and it has been removed (or my
 search skills failed due to lack of coffee)

 On Wed, Mar 12, 2008 at 6:03 PM, Michael B. Smith 
 [EMAIL PROTECTED] wrote:

 Yes, I've been developing one under contract to a client. :-)

 I'll give you some HUGE hints, that I didn't have when I started:

 1] PowerShell is MUCH easier to work in than cmd.exe (ok, I already knew
 this one)

 2] Don't even TRY to do this without SPSiteManager (it's on CodePlex). It
 does at least 50% of the work for you.

 3] Make sure that you setsitelock none before you release a contentdb, and

 4] Make sure that you release a contentdb before attaching it to another
 WSS
 instance.

 5] If prescan fails: Stop. Don't try to force an upgrade until you've
 fixed
 the problems. It shouldn't be called prescan, it should be called
 required-scan.

 6] psexec makes this doable from a single server

 7] you better know a little T-SQL if you want to automate the process.

 8] Microsoft absolutely positively does NOT support any direct
 modification
 to either configdb or any contentdb.

 Now, I don't know your environment, but the one I'm working in right now
 is
 a killer. Every individual can only do small pieces of the puzzle, so I've
 had to break the processes up into teeny-tiny steps requiring different
 AUTH
 from different users for each relevant step. I hope, for your sanity's
 sake,
 that you don't have to do that too.

 Regards,

 Michael B. Smith
 MCSE/Exchange MVP
 http://TheEssentialExchange.com http://theessentialexchange.com/



 -Original Message-
 From: M Bruyere [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2008 3:20 PM
 To: NT System Admin Issues
 Subject: Sharepoint migration/conslidation

 Hi,
I have to merge Sharepoint servers (1.0 and 2.0) to a new server
 (3.0). Anyone know a good tool to merge Sharepoint sites?


 Thanks

 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~





~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

XP Plug and Play printers GPO

2008-03-13 Thread Kennedy, Jim
Am I reading this right, even as a power users and allowing 'load and unload 
device drivers' a user can not install a plug and play USB printer? And if so 
how are the rest of you handling that for laptop users with home printers?


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: XP Plug and Play printers GPO

2008-03-13 Thread John Hornbuckle
Hm... I don't recall any of my users asking to print to their home
printers from their work laptops. I think they don't want to use their
own paper and toner.

 

I do know that shared printers can be installed on an XP machine by
users with restricted rights, so that would be one way to get around the
issue.

 

 

 

 

John Hornbuckle

MIS Department

Taylor County School District

318 North Clark Street

Perry, FL 32347

 

www.taylor.k12.fl.us

 

 

 

From: Kennedy, Jim [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 9:41 AM
To: NT System Admin Issues
Subject: XP Plug and Play printers GPO

 

Am I reading this right, even as a power users and allowing 'load and
unload device drivers' a user can not install a plug and play USB
printer? And if so how are the rest of you handling that for laptop
users with home printers?

 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Server build recommendations

2008-03-13 Thread Tom Miller
Thanks for the advice folks.  Cost is a big concern, so knowing I can do
this is important.   I still had yet to do anything with 2008, as we're
in planning stages now.
 
Tom Miller
Engineer, Information Technology
Hampton-Newport News Community Services Board
757-788-0528

 Tim Vander Kooi [EMAIL PROTECTED] 3/12/2008 7:34 PM 

Since Tom specifically mentions that the new Windows servers will be
2008, there should not be an issue with this setup. The trick is RODC’s
and correct setup of sites. If sites are configured correctly then
rebooting a remote DC due to print queue issues (hopefully fairly rare I
know they are for me) should not pose a problem as authentication at
those times will simply be directed to the next best available DC. RODC
removes much of the worry regarding lower or non-existent security
measures at smaller branch offices. Granted, there is still a security
issue involved that only Tom and Co. can address, but it should be very
“do-able”.
IMHO,
Tim
 

From:Salvador Manzo [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 4:25 PM
To: NT System Admin Issues
Subject: Re: Server build recommendations

 
Performance won’t be an issue, but security needs might be.  That’s a
risk assesment task, though.


On 3/12/08 2:22 PM, Jacob [EMAIL PROTECTED] wrote:
We have 75 employees here and we have print/file services on our DC. 
DC is Windows 2003, with dual 2 GHz CPU with 2 GB RAM.
1 domain, 1 site, 10 printers and a large (146GB) hard drive for file
storage.  Has not been an issue here.

From:Tom Miller [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 1:53 PM
To: NT System Admin Issues
Subject: Server build recommendations


Hi Folks,



In the coming year we will be moving from file and print on Netware to
file and print on Windows 2008 servers.  I have several small sites,
smaller than 20 persons, and would like advice on if I really need a
server for DC and another server for file and print.  I know MS best
practices recommend separate hardware, but management wants to know why,
especially in small sites with low network/computer usage anyway.  This
is not an issue at our larger sites where DC, file and print will be on
different hardware.



Comments, suggestions, horror stories welcome.








Tom Miller
Engineer, Information Technology
Hampton-Newport News Community Services Board
757-788-0528
Confidentiality Notice: This e-mail message, including attachments, is
for the sole use of the intended recipient(s) and may contain
confidential and privileged information. Any unauthorized review, use,
disclosure, or distribution is prohibited. If you are not the intended
recipient, please contact the sender by reply e-mail and destroy all
copies of the original message.











-- 
Salvador Manzo [ 620 W. 35th St - Los Angeles, CA 90089  e.
[EMAIL PROTECTED]
Auxiliary Services IT, Datacenter
University of Southern California
818-612-5112
The secret of happiness is freedom, and the secret of freedom is
courage. 
Pericles' Funeral Oration (431 BC) 




Confidentiality Notice:  This e-mail message, including attachments, is
for the sole use of the intended recipient(s) and may contain
confidential and privileged information.  Any unauthorized review, use,
disclosure, or distribution is prohibited.  If you are not the intended
recipient, please contact the sender by reply e-mail and destroy all
copies of the original message.

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: OT: Job opening

2008-03-13 Thread Peter van Houten

Sunderland?  Say no more; famous place squire...

Only joking, I've never been there; nearest is Newcastle from time to
time.  I live in Streatham, S. London and work in the City.  Believe me,
I know all about inner city life.  Lived in Brixton for a while and
worked for a company supplying cashless systems for school dinners. Had
several run-ins with students in some of the rougher neighbourhoods, in
White City (London), Renfrewshire (Glasgow) and minor incidents with
junkies in central Brixton when leaving the underground at night.

I hear what you are saying; the UK has deteriorated (especially in the
eyes of us 'older' blokes but so has every other place in the world.  My
original point was one of comparison between a first world country (UK)
and a country that is split between first and third depending on who you
are.

On the 11/03/2008 10:14, Rankin, James R wrote the following:
Which part of the UK do you live in then? Surely it mustn't be an 
inner city. Let me know and I'll move there, I bet it's not 
Sunderland! This country is swimming in immigrants with no regard for
 British law or decency. I'll grant you, South Africa is probably 
worse (my relatives came back to the UK from there only recently), 
but the UK is not what it was ten or fifteen years ago. The Human 
Rights Act and Labour have a lot to answer for.


End political rant

Awaits flames for posting said rant

-Original Message- From: Peter van Houten 
[mailto:[EMAIL PROTECTED] Sent: 11 March 2008 01:13 To: NT System 
Admin Issues Subject: Re: OT: Job opening


James, I trust that the open prison comment was meant in jest!  I 
spent the first 45 years of my life in South Africa and travelled 
extensively for the last 25 of those, including visits to the UK, the

 US and most of Europe.

In 2003 I relocated to the UK and have never looked back.  I 
discovered a kind and tolerant society, job opportunities that were 
previously denied to me due to age/race/gender and absolute freedom 
of movement and a sense of safety.


Not so back in South Africa.  On returning for the funeral of my 
father, I have found a society bitter, disillusioned and bent out of

 shape by the ravages of past injustices, poverty, and greed.  Over
50 murders, 150 rapes, 340 armed robberies per *day*.  Not to mention
 the hundreds of vehicle hijackings, cash-in-transit heists and 
blown-up cash machines.  I won't even mention the atrocities against
 children, some as young as 3 months old.  Then there is the maniac 
just to the north in Zimbabwe running a country with 100,000% 
annual inflation.  Does not bode well.


Life in the UK is not easy but if one is prepared to work hard, it 
can be pretty comfortable [in my experience].


p.s.  Folks in the US: I did enjoy Boston (visited several times 
while I worked for Wang) and Seattle (visiting family) ;-)



On Thu, Mar 6, 2008 at 2:16 AM, Rankin, James R 
[EMAIL PROTECTED] wrote:


Don't suppose you're willing to sponsor work permit applications are 
you? I am sick of living in the open prison that the UK has become L



-Original Message- From: Webb, Brian (Corp) 
[EMAIL PROTECTED] Sent: 05 March 2008 22:17 To: NT System Admin

 Issues Subject: OT: Job opening

We are looking for a Windows Server Admin - located in snowy Madison,
 WI.  ;-)

If you are interested, the posting is here: 
http://www.teldta.com/contact/43e_CMS1_218080.htm#P-5_0


Brian Webb - MCSE TDS Corporate IS, Windows Server Platform Team 
Senior Systems Administrator


When stuck on a problem as often can be, try to remember G.B.T.T.D.
 (Go Back To The Definition). - Dave Seybold


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: Confusing server issue

2008-03-13 Thread Peter van Houten

Running out of space in the VM when paging to disk for the user?  Which
VM are you using?

On the 13/03/2008 14:21, Rankin, James R wrote the following:
No, when anyone logs in. Even a user that creates a new profile – it 
actually shut down quicker than normal with a new profile.




*From:* Ames Matthew B [mailto:[EMAIL PROTECTED]
*Sent:* 13 March 2008 12:19
*To:* NT System Admin Issues
*Subject:* RE: Confusing server issue

Just when you log in?  If so kill your profile and let it create a new 
one from fresh.




*From:* Rankin, James R [mailto:[EMAIL PROTECTED]
*Sent:* 13 March 2008 12:01
*To:* NT System Admin Issues
*Subject:* RE: Confusing server issue

Should have added, there are no scheduled tasks either…



*From:* Rankin, James R [mailto:[EMAIL PROTECTED]
*Sent:* 13 March 2008 11:59
*To:* NT System Admin Issues
*Subject:* Confusing server issue

Here’s a confusing one – I have a virtual server running Windows 2003 
that shuts itself down every time I log in. It will boot in safe mode or 
diagnostic mode without any issues, yet whenever I log on in normal 
mode, it shuts down. The shutdown in the event log shows as “Legacy API 
shutdown” and comes from NT Authority. The UPS service is stopped, and 
there are no patches pending or trying to install. The startup in 
msconfig shows nothing strange. Anyone have any ideas why this might be 
happening? Google appears not to be my friend for this issue…


TIA,

JR
 


The information contained in this E-Mail and any subsequent
correspondence is private and is intended solely for the intended
recipient(s).  The information in this communication may be
confidential and/or legally privileged.  Nothing in this e-mail is
intended to conclude a contract on behalf of QinetiQ or make QinetiQ
subject to any other legally binding commitments, unless the e-mail
contains an express statement to the contrary or incorporates a formal 
Purchase Order.


For those other than the recipient any disclosure, copying,
distribution, or any action taken or omitted to be taken in reliance
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be
monitored and recorded for business purposes including security, audit
and archival purposes.  Any response to this email indicates consent
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, 
Farnborough, Hampshire, GU14 0LX, United Kingdom

http://www.QinetiQ.com/home/legal.html




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Looking for a recommendation on a power cycle device

2008-03-13 Thread Lee, Damon
Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Remote server won't allow management

2008-03-13 Thread Joe Heaton
Sounds like a 4 hour drive out there may be less expensive than paying
ATT to go there.  And you get fresh air, and you get to see that big
ball of fire that people say is in the sky... 
 
Joe Heaton
 



From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 4:54 AM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management


Thanks.

- Original Message - 
From: Rankin, James R mailto:[EMAIL PROTECTED]  
To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  
Sent: Thursday, March 13, 2008 7:52 AM
Subject: RE: Remote server won't allow management


http://h18013.www1.hp.com/products/servers/management/ilo/

 





From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:45
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

I wonder if HP has something like a DRAC.

- Original Message - 

From: Rankin, James R mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:47 AM

Subject: RE: Remote server won't allow management

 

That $180 per hour would surely be better placed towards
getting a DRAC bunged in

 





From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but
just would like to not have to pay ATT to start it up and 

mssonfig it back to normal

- Original Message - 

From: Ames Matthew B mailto:[EMAIL PROTECTED]


To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:40 AM

Subject: RE: Remote server won't allow
management

 

so that leaves the option of somehow causing the
machine to bluescreen and hope it then reboots.

 

What does the server do?  if it is on a remote
site with no bodies there, is its unavailably going to be an issue
until a body arrives on site? (who could then possibly manually reboot
it/power cycle it for you)

 





From: Rankin, James R
[mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow
management

If it won't take a remote shutdown command (from
the ResKit), then it is probably out of reach. Most stuff relies on some
form of RPC communication. I sometimes use pskill to kill the winlogon
process which generally makes it bluescreen, but this may not work
either in diagnostic mode

 





From: David W. McSpadden
[mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow
management

 

Nope.

 

- Original Message - 

From: Rankin, James R
mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow
management

 

Take it it doesn't have a DRAC/RIB/ILO
installed?

 





From: David W. McSpadden
[mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow
management

 

  

RE: XP Plug and Play printers GPO

2008-03-13 Thread Joe Heaton
IIRC, there's also a policy setting for Allow user to install/delete
printers.  Maybe that's where you need to look?
 
Joe Heaton
 



From: Kennedy, Jim [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 6:41 AM
To: NT System Admin Issues
Subject: XP Plug and Play printers GPO



Am I reading this right, even as a power users and allowing 'load and
unload device drivers' a user can not install a plug and play USB
printer? And if so how are the rest of you handling that for laptop
users with home printers?

 






~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Ames Matthew B
how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?
 
Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device



Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 






The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal Purchase 
Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, Farnborough, 
Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Testing a VM Environment Through a Firewall (OT?)

2008-03-13 Thread Doige, Clayton
Hi all, I have a test environment in VMWare running on a Windows Vista
Box. The Windows Vista NIC is in the DMZ and has an IP of 10.1.0.10. I
have an ISA Server running in VMWare using Bridged Networking with an IP
of 10.1.0.221. The Windows Vista Firewall is disabled.

 

The Main Firewall has a NAT to allow the public IP to 10.1.0.221. When I
attempt to connect on the appropriate port for the rule, it says denied
on the main firewall and references ARP.

 

Should I be using some other configuration other than bridged  for
VMWARE Networking to get this working?

 

Clayton Doige

IT Project Manager

CME Development Corporation

T: 020 7430 5355

M: 07949 255062

E:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 

W:www.cetv-net.com http://www.cetv-net.com 


__
This electronic mail message and any attached files contain information 
intended for the exclusive use of the person(s) to whom it is addressed and may 
contain information that is proprietary, privileged, confidential and/or exempt 
from disclosure under applicable law. If you are not the intended recipient, 
you are hereby notified that any viewing, copying, disclosure or distribution 
of this message or its contents may be subject to legal restriction or 
sanction. If you have received this message in error, please notify the sender 
immediately by electronic mail and delete the original message and any 
attachments without retaining any copies. 
_
~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: XP Plug and Play printers GPO

2008-03-13 Thread Kennedy, Jim
Got that set also, it seems...and google backs it up.that this does not fix 
the issue for USB printers. USB printers seem to install more as a device 
rather than a 'printer', as far as XP is concerned.

So far the combo I am trying is having the users as power users, allow load and 
unload device drivers + disabled 'prevent users from installing printer 
drivers' (although that should not impact power users per MS) and I am even 
allowing silent succeed on unsigned drivers.

I plug in the USB printer and it detects and instantly says you need to be an 
admin and asks for credentials.



From: Joe Heaton [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

IIRC, there's also a policy setting for Allow user to install/delete printers.  
Maybe that's where you need to look?

Joe Heaton



From: Kennedy, Jim [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2008 6:41 AM
To: NT System Admin Issues
Subject: XP Plug and Play printers GPO
Am I reading this right, even as a power users and allowing 'load and unload 
device drivers' a user can not install a plug and play USB printer? And if so 
how are the rest of you handling that for laptop users with home printers?












~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: backup exec question

2008-03-13 Thread M Bruyere
Hi,
  Yes you can set the priority for each job (under priority and
availability) and also run multiple jobs but for that, you need
multiple drives (I do it on a daily basis in a library)


Thanks

On Thu, Mar 13, 2008 at 12:55 AM, Ara Avvali [EMAIL PROTECTED] wrote:




 Hello everyone,

 Is there any way to change backup exec 11d job start priority? Let's say if
 you schedule using the media rotation template they all start at 11 PM.
 Problem is we can change this is a big selection list which has multiple
 servers but we need to use separate selection list?

 My first guess was they start based on time and then if time conflict,
 alphabetically but no

 Also is there any way to have multiple backup jobs going to tape at the same
 time?



 Appreciated







~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Confusing server issue

2008-03-13 Thread Rankin, James R
I think I have just sorted this, actually. However in true I.T. support
fashion I don't understand why it was happening - I disabled all the
Symantec services and now it works fine. All the other VMs (running on
VMWare) have the same Symantec garbage running and they log on without
issue. Very strange.

Thanks for all suggestions as usual though - and yes, the UK sucks, although
doubtless I would be scurrying back if I lived somewhere like Mogadishu  :-)

-Original Message-
From: Peter van Houten [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:20
To: NT System Admin Issues
Subject: Re: Confusing server issue

Running out of space in the VM when paging to disk for the user?  Which
VM are you using?

On the 13/03/2008 14:21, Rankin, James R wrote the following:
 No, when anyone logs in. Even a user that creates a new profile – it 
 actually shut down quicker than normal with a new profile.
 
 
 
 *From:* Ames Matthew B [mailto:[EMAIL PROTECTED]
 *Sent:* 13 March 2008 12:19
 *To:* NT System Admin Issue
 *Subject:* RE: Confusing server issue
 
 Just when you log in?  If so kill your profile and let it create a new 
 one from fresh.
 
 
 
 *From:* Rankin, James R [mailto:[EMAIL PROTECTED]
 *Sent:* 13 March 2008 12:01
 *To:* NT System Admin Issues
 *Subject:* RE: Confusing server issue
 
 Should have added, there are no scheduled tasks either…
 
 
 
 *From:* Rankin, James R [mailto:[EMAIL PROTECTED]
 *Sent:* 13 March 2008 11:59
 *To:* NT System Admin Issues
 *Subject:* Confusing server issue
 
 Here’s a confusing one – I have a virtual server running Windows 2003 
 that shuts itself down every time I log in. It will boot in safe mode or 
 diagnostic mode without any issues, yet whenever I log on in normal 
 mode, it shuts down. The shutdown in the event log shows as “Legacy API 
 shutdown” and comes from NT Authority. The UPS service is stopped, and 
 there are no patches pending or trying to install. The startup in 
 msconfig shows nothing strange. Anyone have any ideas why this might be 
 happening? Google appears not to be my friend for this issue…
 
 TIA,
 
 JR
  
 
 The information contained in this E-Mail and any subsequent
 correspondence is private and is intended solely for the intended
 recipient(s).  The information in this communication may be
 confidential and/or legally privileged.  Nothing in this e-mail is
 intended to conclude a contract on behalf of QinetiQ or make QinetiQ
 subject to any other legally binding commitments, unless the e-mail
 contains an express statement to the contrary or incorporates a formal 
 Purchase Order.
 
 For those other than the recipient any disclosure, copying,
 distribution, or any action taken or omitted to be taken in reliance
 on such information is prohibited and may be unlawful.
 
 Emails and other electronic communication with QinetiQ may be
 monitored and recorded for business purposes including security, audit
 and archival purposes.  Any response to this email indicates consent
 to this.
 
 Telephone calls to QinetiQ may be monitored or recorded for quality
 control, security and other business purposes.
 
 QinetiQ Limited
 Registered in England  Wales: Company Number:3796233
 Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
 Trading address: Cody Technology Park, Cody Building, Ively Road, 
 Farnborough, Hampshire, GU14 0LX, United Kingdom
 http://www.QinetiQ.com/home/legal.html



~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Lee, Damon
I was hoping for a device that had a built in modem or Ethernet jack.
And yes, I'm having the modem is not responding, please power cycle the
device Problem.

 

Unfortunately, I don't have any computers/servers in the room, just
phone cross connects and a network switch. That's why a dial in and or
network connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Ames Matthew B
Which side of the cable modem are you?  Internet, or LAN side?  If
internet side, an ethernet port won't help too much!



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 15:12
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device



I was hoping for a device that had a built in modem or Ethernet jack.
And yes, I'm having the modem is not responding, please power cycle the
device Problem.

 

Unfortunately, I don't have any computers/servers in the room, just
phone cross connects and a network switch. That's why a dial in and or
network connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 






The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal Purchase 
Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, Farnborough, 
Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Ames Matthew B
How about this:
 
http://www.dataprobe.com/products/power/ppal/single/index.html



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 15:12
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device



I was hoping for a device that had a built in modem or Ethernet jack.
And yes, I'm having the modem is not responding, please power cycle the
device Problem.

 

Unfortunately, I don't have any computers/servers in the room, just
phone cross connects and a network switch. That's why a dial in and or
network connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 






The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal Purchase 
Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, Farnborough, 
Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Win2k3 R2 x64 SP2

2008-03-13 Thread Louis, Joe
I installed a 64 bit Win2k3R2 a few weeks ago. We're moving to Exchange 2007
on it starting tomorrow night but before I started, I wanted to make sure we
had all the latest greatest Windows patches. I just realized that WSUS 2.x
doesn't update 64 bit OSs, so I'm doing them manually. My greater concern is
SP2. Anyone have any have issues with SP2 on x64 (or SP2 and Exchange 2k7)? 
 
-Joe Louis

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Win2k3 R2 x64 SP2

2008-03-13 Thread Troy Meyer
Nope running just fine here.  4 servers with W2k3 R2 Ent SP2 with Exchange 2007 
SP1.




From: Louis, Joe [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2008 8:30 AM
To: NT System Admin Issues
Subject: Win2k3 R2 x64 SP2

I installed a 64 bit Win2k3R2 a few weeks ago. We're moving to Exchange 2007 on 
it starting tomorrow night but before I started, I wanted to make sure we had 
all the latest greatest Windows patches. I just realized that WSUS 2.x doesn't 
update 64 bit OSs, so I'm doing them manually. My greater concern is SP2. 
Anyone have any have issues with SP2 on x64 (or SP2 and Exchange 2k7)?

-Joe Louis




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: My most ignorant question to date.

2008-03-13 Thread Edwards, David
So what I picture in my mind of your configuration is simply two RAID
arrays on one channel. Each drive having a different SCSI ID yet grouped
together into two separate arrays. I assume you are not also mirroring
the two arrays (RAID 10) and they contain different data. 

In my experience with Compaq RAID controllers, you should be able to add
the second controller connect the desired array and during post of the
controller, read the RAID configuration from the disk to the controller
memory to speed up the RAID array move to the new controller. Of course
you want a good backup anyway but the older Compaq RAID controllers had
that ability. Even some of the Dell Perc controllers can do this as
well. 

 

Regards, 

Dave



From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 11, 2008 3:25 PM
To: NT System Admin Issues
Subject: My most ignorant question to date.

 

I know it is hard to believe but here goes.

I have a RAID array attached to a RAID array attached to a Smart Array
controller.

This works but I believe I have an idea to make things faster by backing
up RAID array 1 then

adding a second Smart Array controller.  Moving RAID array 1 to Smart
Array controller 2.

Then restore data to new Logical drive on new Smart Array controller.

This should be RAID array 1 a lot faster, yes?

 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Krishna Reddy
http://www.synaccess-net.com/acart/agora.cgi?cart_id=xm=onproduct=Prod
ucts
 
I have multiple NP-08's used in mostly testing setups by my engineering
dept.  You probably want an NP-02.  With this you can have the NP-02
ping an address and if it fails, it will automatically reboot the port
you select.
 

Krishna Reddy
IT Manager
Nucomm, Inc.

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:12 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device



I was hoping for a device that had a built in modem or Ethernet jack.
And yes, I'm having the modem is not responding, please power cycle the
device Problem.

 

Unfortunately, I don't have any computers/servers in the room, just
phone cross connects and a network switch. That's why a dial in and or
network connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 










The information contained in this email and attachments to this email are the 
proprietary and confidential property 
of Nucomm, Inc.  The information is provided in strict confidence and shall not 
be reproduced, copied, or
used (partially or wholly) in any manner without prior, express written 
authorization of Nucomm, Inc.


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Win2k3 R2 x64 SP2

2008-03-13 Thread Matthew McComas
We also run it W2K03, Ent, 64-bit, SP2 with SQL2005 SAN connected...no
issues at all...Just make sure you run windows update as it should catch
it all.  Also, ensure you upgrade all of your system firmware (BIOS,
controllers, etc), and you should be fine.

 

From: Louis, Joe [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:30 AM
To: NT System Admin Issues
Subject: Win2k3 R2 x64 SP2

 

I installed a 64 bit Win2k3R2 a few weeks ago. We're moving to Exchange
2007 on it starting tomorrow night but before I started, I wanted to
make sure we had all the latest greatest Windows patches. I just
realized that WSUS 2.x doesn't update 64 bit OSs, so I'm doing them
manually. My greater concern is SP2. Anyone have any have issues with
SP2 on x64 (or SP2 and Exchange 2k7)? 

 

-Joe Louis

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: pacemaker hacking

2008-03-13 Thread Kurt Buff
Only bets on death and taxes.

On Thu, Mar 13, 2008 at 12:09 AM, Ken Schaefer [EMAIL PROTECTED] wrote:




 Was anything ever safe?



 Cheers

 Ken





 From: Rankin, James R [mailto:[EMAIL PROTECTED]
  Sent: Thursday, 13 March 2008 7:09 PM
  To: NT System Admin Issues
  Subject: OT: pacemaker hacking



 http://www.nytimes.com/2008/03/12/business/12heart-web.html?_r=2oref=sloginoref=slogin



 Indeed, nothing is safe…










~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Lee, Damon
Yeah, I know. It would be for the LAN side.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:16 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

Which side of the cable modem are you?  Internet, or LAN side?  If
internet side, an ethernet port won't help too much!

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 15:12
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

I was hoping for a device that had a built in modem or Ethernet jack.
And yes, I'm having the modem is not responding, please power cycle the
device Problem.

 

Unfortunately, I don't have any computers/servers in the room, just
phone cross connects and a network switch. That's why a dial in and or
network connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Lee, Damon
I saw this one. Just wanted to know if anyone had any experiences with
it.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:22 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

How about this:

 

http://www.dataprobe.com/products/power/ppal/single/index.html

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 15:12
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

I was hoping for a device that had a built in modem or Ethernet jack.
And yes, I'm having the modem is not responding, please power cycle the
device Problem.

 

Unfortunately, I don't have any computers/servers in the room, just
phone cross connects and a network switch. That's why a dial in and or
network connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: how to find out which service is locking down a user?

2008-03-13 Thread Benjamin Zachary
You could goto all those services and have it run the batch file upon
failure. You could also in the same time go through and stop and start each
one until one doesn't start.

 

  _  

From: Boaz Galil [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 4:44 PM
To: NT System Admin Issues
Subject: how to find out which service is locking down a user?

 

 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Lee, Damon
Thanks. I'll look into it.

 

From: Krishna Reddy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:37 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

http://www.synaccess-net.com/acart/agora.cgi?cart_id=xm=onproduct=Prod
ucts

 

I have multiple NP-08's used in mostly testing setups by my engineering
dept.  You probably want an NP-02.  With this you can have the NP-02
ping an address and if it fails, it will automatically reboot the port
you select.

 

Krishna Reddy
IT Manager
Nucomm, Inc.

 

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:12 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

I was hoping for a device that had a built in modem or Ethernet jack.
And yes, I'm having the modem is not responding, please power cycle the
device Problem.

 

Unfortunately, I don't have any computers/servers in the room, just
phone cross connects and a network switch. That's why a dial in and or
network connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I
assuming you need to power cycle the cable modem due to loss of
connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server
to the device, or connect to it via an IP addrss (internally) and kill
the power?

 



From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I've found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and Rehabilitation
http://www.silvercrest.org/ 

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

 

 

 

 
 
 

 

 

 

 

 

The information contained in this email and attachments to this email
are the proprietary and confidential property 
of Nucomm, Inc.  The information is provided in strict confidence and
shall not be reproduced, copied, or
used (partially or wholly) in any manner without prior, express written
authorization of Nucomm, Inc. 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Win2k3 R2 x64 SP2

2008-03-13 Thread Louis, Joe
Thanks guys. I planned on a long weekend doing this and didn't want
something like a SP deployment to cause me to revert back to Exchange 5.5. 

  _  

From: Troy Meyer [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:33 AM
To: NT System Admin Issues
Subject: RE: Win2k3 R2 x64 SP2



Nope running just fine here.  4 servers with W2k3 R2 Ent SP2 with Exchange
2007 SP1.

 

 

 

 

From: Louis, Joe [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 8:30 AM
To: NT System Admin Issues
Subject: Win2k3 R2 x64 SP2

 

I installed a 64 bit Win2k3R2 a few weeks ago. We're moving to Exchange 2007
on it starting tomorrow night but before I started, I wanted to make sure we
had all the latest greatest Windows patches. I just realized that WSUS 2.x
doesn't update 64 bit OSs, so I'm doing them manually. My greater concern is
SP2. Anyone have any have issues with SP2 on x64 (or SP2 and Exchange 2k7)? 

 

-Joe Louis

 

 










~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: DMZ care and feeding

2008-03-13 Thread Kurt Buff
On Thu, Mar 13, 2008 at 3:56 AM,  [EMAIL PROTECTED] wrote:
 OK, we've developed a philosopical situation here regarding a DMZ server:

  The server hosts a public web site and database.  I was told that it
  needed to be backed up because development was being done in it.  My first
  consideration was a backup mechanism.  It wasn't until several minutes
  later than I did my Donald Duck squawk questioning the wisdom of doing
  active development on a DMZ machine.

Wisdom? Try insanity instead. A proper development cycle has
separate environments for development, testing, staging and
production, though sometimes testing and staging are compressed, which
I consider risky.

  Backing up is a bit of an issue (buy a drive, or start collecting CDs from
  its writable drive), but to me the bigger issue is, should we be backing
  this up?  It seems to me that the DMZ is considered to be hackable yet
  isolated.  Therefore, it might be best to consider that at any time (from
  moment #1) that it may have already been compromised.  In other words, if
  we find that in fact it has been cracked, would we even be able to trust
  that which has been backed up?  That we'd never be sure that we had a
  backup that had never been compromised in any way so it could be restored?

Well, if you're considering it *only* as a production system, whether
or not to back it up becomes an issue of whether the data changes, if
those changes are desired and whether those changes come from
end-users, or if they are only updates from an internal system that
are published to end-users.

  It seems to me that, by there nature, materials on DMZ machines should be
  developed elsewhere, and the finished products should then be published to
  the DMZ machine.

Yes. Absolutely agree.

  Personally, I'm not worried about being right or wrong here but rather
  wanting to follow best practices.  SO,is it consistant with best
  practices to go ahead and do development on the DMZ system, back up source
  code, etc, and presume that when the system has to be re-built we can
  restore an uncompromized machine?  Or, should I be stubborn and insist
  that development be done elsewhere and then published to the DMZ machine?

Right and wrong, in this case, is about following good development
practices. You already know the answer.

Kurt

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Procurve IP Lockdown feature

2008-03-13 Thread Joseph L. Casale
Anyone used the IP Lockdown feature on a Procurve? If I reconfigure my dhcp 
server to handout 192.168.0.129-254 and setup IP Lockdown to 192.168.0.128/25 
on the select few ports that devices connect to, would this fall in line with 
how this option is implemented? IFIC how IP  Lockdown works, it only concerns 
itself with the IP of the host and not the broadcast address etc?

Thanks!
jlc

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Looking for a recommendation on a power cycle device

2008-03-13 Thread Louis, Joe
We have used NP08's as well. Work very well. 

  _  

From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:00 PM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device



Thanks. I'll look into it.

 

From: Krishna Reddy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:37 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

http://www.synaccess-net.com/acart/agora.cgi?cart_id=
http://www.synaccess-net.com/acart/agora.cgi?cart_id=xm=onproduct=Product
s xm=onproduct=Products

 

I have multiple NP-08's used in mostly testing setups by my engineering
dept.  You probably want an NP-02.  With this you can have the NP-02 ping an
address and if it fails, it will automatically reboot the port you select.

 

Krishna Reddy
IT Manager
Nucomm, Inc.

 

 

  _  

From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 11:12 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

I was hoping for a device that had a built in modem or Ethernet jack. And
yes, I'm having the modem is not responding, please power cycle the device
Problem.

 

Unfortunately, I don't have any computers/servers in the room, just phone
cross connects and a network switch. That's why a dial in and or network
connection would work perfectly.

 

From: Ames Matthew B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: Looking for a recommendation on a power cycle device

 

how do u want to connect to the device?  seperate dial in modem?  I assuming
you need to power cycle the cable modem due to loss of connectivity?

 

Therefore maybe a RAS dialin and then a serial connection from a server to
the device, or connect to it via an IP addrss (internally) and kill the
power?

 

  _  

From: Lee, Damon [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I'm looking for a device I can use to power cycle a cable modem in a
remote location. So I only need one outlet and I have network and phone
access in the same room.  I've found several, but have no experience with
these boxes and I wanted to see if anyone has one in place and or any
recommendations.

 

Thanks.

 

 

Damon Lee

The Silvercrest Center for Nursing and  http://www.silvercrest.org/
Rehabilitation

144-45 87th Avenue

Briarwood, NY 11435

718.480.4009

[EMAIL PROTECTED]

 

 

 

 
 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road,
Farnborough, Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html
http://www.QinetiQ.com/home/legal.html 

 

 

 

 
 
 

 

 

 

 

 

The information contained in this email and attachments to this email are
the proprietary and confidential property 
of Nucomm, Inc.  The information is provided in strict confidence and shall
not be reproduced, copied, or
used (partially or wholly) in any manner without prior, express written
authorization of Nucomm, Inc. 










~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread Peter van Houten

Thanks to Mark R. once again:

psexec \\computername -i shutdown -r -t 1

or if you *really* want to shut down no matter what:

pskill -t \\computername svchost.exe

which will kill most instances of the generic host process and
consequently restart the machine. But as James pointed out, the
integrity of the RPC channel must be intact.

I have experienced the frustration of being able to ping a system but
not being able to communicate in any other way else.  This idea would be 
useful if one could implement it in Windows:


http://www.securiteam.com/tools/5GP071FG0Q.html


*From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
March 2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote 
server won't allow management


If it won’t take a remote shutdown command (from the ResKit), then it
 is probably out of reach. Most stuff relies on some form of RPC 
communication. I sometimes use pskill to kill the winlogon process 
which generally makes it bluescreen, but this may not work either in 
diagnostic mode





*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server 
won't allow management


Nope.

- Original Message -

*From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com 
*Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote server

won't allow management

Take it it doesn’t have a DRAC/RIB/ILO installed?




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
won't allow management


I have a remote server I would like to get into but is was last 
restarted in Diag mode from MSCONFIG.


There is no one at the remote site.  Is there a way to get it 
unstuck?


I can ping it but that is all.




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: XP Plug and Play printers GPO

2008-03-13 Thread Salvador Manzo
USB printers will create a printer port when they¹re setup (USB001, etc.).
THIS is probably the part that¹s failing, since I¹ve seen that, even if it¹s
the same printer/PC combination, the USB printer port can change depending
on what devices are present and what port it¹s plugged into.


On 3/13/08 7:42 AM, Kennedy, Jim [EMAIL PROTECTED] wrote:

 Got that set also, it seemsŠand google backs it upŠ..that this does not fix
 the issue for USB printers. USB printers seem to install more as a device
 rather than a Œprinter¹, as far as XP is concerned.
  
 So far the combo I am trying is having the users as power users, allow load
 and unload device drivers + disabled Œprevent users from installing printer
 drivers¹ (although that should not impact power users per MS) and I am even
 allowing silent succeed on unsigned drivers.
  
 I plug in the USB printer and it detects and instantly says you need to be an
 admin and asks for credentials.
 
  
  
  
 
 From: Joe Heaton [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 13, 2008 10:28 AM
 To: NT System Admin Issues
 Subject: RE: XP Plug and Play printers GPO
  
 IIRC, there's also a policy setting for Allow user to install/delete printers.
 Maybe that's where you need to look?
 
  
 Joe Heaton
 
  
  
 
 
 From: Kennedy, Jim [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 13, 2008 6:41 AM
 To: NT System Admin Issues
 Subject: XP Plug and Play printers GPO
 Am I reading this right, even as a power users and allowing Œload and unload
 device drivers¹ a user can not install a plug and play USB printer? And if so
 how are the rest of you handling that for laptop users with home printers?
  
  
  
  
  
  
  
 
 
 
 
 
 
 
 
 - 
 Salvador Manzo  [ 620 W. 35th St - Los Angeles, CA 90089  e. [EMAIL 
 PROTECTED] ]
 Auxiliary Services IT, Datacenter
 University of Southern California
 818-612-5112


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: XP Plug and Play printers GPO

2008-03-13 Thread Benjamin Zachary
Yeah the user needs the ability to add hardware. i.e dot001, usb001 or
whatever. Love HP home units!!

 

  _  

From: Salvador Manzo [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:55 PM
To: NT System Admin Issues
Subject: Re: XP Plug and Play printers GPO

 

USB printers will create a printer port when they're setup (USB001, etc.).
THIS is probably the part that's failing, since I've seen that, even if it's
the same printer/PC combination, the USB printer port can change depending
on what devices are present and what port it's plugged into. 


On 3/13/08 7:42 AM, Kennedy, Jim [EMAIL PROTECTED] wrote:

Got that set also, it seems.and google backs it up...that this does not fix
the issue for USB printers. USB printers seem to install more as a device
rather than a 'printer', as far as XP is concerned.
 
So far the combo I am trying is having the users as power users, allow load
and unload device drivers + disabled 'prevent users from installing printer
drivers' (although that should not impact power users per MS) and I am even
allowing silent succeed on unsigned drivers.
 
I plug in the USB printer and it detects and instantly says you need to be
an admin and asks for credentials.


 
 

From: Joe Heaton [mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

IIRC, there's also a policy setting for Allow user to install/delete
printers.  Maybe that's where you need to look?


Joe Heaton


  

  _  


From: Kennedy, Jim [mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  
Sent: Thursday, March 13, 2008 6:41 AM
To: NT System Admin Issues
Subject: XP Plug and Play printers GPO
Am I reading this right, even as a power users and allowing 'load and unload
device drivers' a user can not install a plug and play USB printer? And if
so how are the rest of you handling that for laptop users with home
printers?
 


 
 











- 
Salvador Manzo  [ 620 W. 35th St - Los Angeles, CA 90089  e. [EMAIL PROTECTED] ]
Auxiliary Services IT, Datacenter
University of Southern California
818-612-5112

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: XP Plug and Play printers GPO

2008-03-13 Thread Kennedy, Jim
Just to confirm where I am at thenPower User is not going to make it for 
them in this situation then. Correct?

That stinks. Laptops are probably the worst place for a local admin in our 
environment. They go home where they are no longer protected by our web 
filter...we run that very tight.

How are the rest of you dealing with this? I am tempted to day 'bring your 
printer in and we will help you'.

Does Vista have a better answer?


From: Benjamin Zachary [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2008 1:10 PM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

Yeah the user needs the ability to add hardware. i.e dot001, usb001 or 
whatever. Love HP home units!!


From: Salvador Manzo [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2008 12:55 PM
To: NT System Admin Issues
Subject: Re: XP Plug and Play printers GPO

USB printers will create a printer port when they're setup (USB001, etc.).  
THIS is probably the part that's failing, since I've seen that, even if it's 
the same printer/PC combination, the USB printer port can change depending on 
what devices are present and what port it's plugged into.


On 3/13/08 7:42 AM, Kennedy, Jim [EMAIL PROTECTED] wrote:
Got that set also, it seems...and google backs it up.that this does not fix 
the issue for USB printers. USB printers seem to install more as a device 
rather than a 'printer', as far as XP is concerned.

So far the combo I am trying is having the users as power users, allow load and 
unload device drivers + disabled 'prevent users from installing printer 
drivers' (although that should not impact power users per MS) and I am even 
allowing silent succeed on unsigned drivers.

I plug in the USB printer and it detects and instantly says you need to be an 
admin and asks for credentials.





From: Joe Heaton [mailto:[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

IIRC, there's also a policy setting for Allow user to install/delete printers.  
Maybe that's where you need to look?


Joe Heaton





From: Kennedy, Jim [mailto:[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2008 6:41 AM
To: NT System Admin Issues
Subject: XP Plug and Play printers GPO
Am I reading this right, even as a power users and allowing 'load and unload 
device drivers' a user can not install a plug and play USB printer? And if so 
how are the rest of you handling that for laptop users with home printers?













-
Salvador Manzo  [ 620 W. 35th St - Los Angeles, CA 90089  e. [EMAIL PROTECTED] ]
Auxiliary Services IT, Datacenter
University of Southern California
818-612-5112






~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Looking for a recommendation on a power cycle device

2008-03-13 Thread Peter van Houten

I've seen one of these at a client site as part of their Bloomberg setup:

http://www.digidave.co.uk/product_info.php?products_id=474

--

From: Lee, Damon [mailto:[EMAIL PROTECTED]
Sent: 13 March 2008 14:21
To: NT System Admin Issues
Subject: Looking for a recommendation on a power cycle device

Hi all, I’m looking for a device I can use to power cycle a cable modem
in a remote location. So I only need one outlet and I have network and
phone access in the same room.  I’ve found several, but have no
experience with these boxes and I wanted to see if anyone has one in
place and or any recommendations.

Thanks.

Damon Lee
The Silvercrest Center for Nursing and Rehabilitation
144-45 87th Avenue
Briarwood, NY 11435
718.480.4009
[EMAIL PROTECTED]

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: XP Plug and Play printers GPO

2008-03-13 Thread John Hornbuckle
We don't give them admin rights under any circumstances. Not on a
desktop, not on a laptop, not on nothin'.

 

In our case, we don't want them connecting their hardware to ours
anyway. So if their home printer doesn't work, it's fine by us.

 

As I mentioned earlier, you could have them share their home printer.
They can then connect to the shared printer from their laptop without
admin rights (and without having to unplug the printer from their home
computer to plug into the laptop). That seems like an easy solution.
Works better with some printers than others, though, depending on the
drivers.

 

 

 

John Hornbuckle

MIS Department

Taylor County School District

318 North Clark Street

Perry, FL 32347

 

www.taylor.k12.fl.us

 

 

 

 

 

From: Kennedy, Jim [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 1:11 PM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

 

Just to confirm where I am at thenPower User is not going to make it
for them in this situation then. Correct?

 

That stinks. Laptops are probably the worst place for a local admin in
our environment. They go home where they are no longer protected by our
web filter...we run that very tight.

 

How are the rest of you dealing with this? I am tempted to day 'bring
your printer in and we will help you'.

 

Does Vista have a better answer?

 

 

From: Benjamin Zachary [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 1:10 PM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

 

Yeah the user needs the ability to add hardware. i.e dot001, usb001 or
whatever. Love HP home units!!

 



From: Salvador Manzo [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:55 PM
To: NT System Admin Issues
Subject: Re: XP Plug and Play printers GPO

 

USB printers will create a printer port when they're setup (USB001,
etc.).  THIS is probably the part that's failing, since I've seen that,
even if it's the same printer/PC combination, the USB printer port can
change depending on what devices are present and what port it's plugged
into. 


On 3/13/08 7:42 AM, Kennedy, Jim [EMAIL PROTECTED] wrote:

Got that set also, it seems...and google backs it up.that this does
not fix the issue for USB printers. USB printers seem to install more as
a device rather than a 'printer', as far as XP is concerned.
 
So far the combo I am trying is having the users as power users, allow
load and unload device drivers + disabled 'prevent users from installing
printer drivers' (although that should not impact power users per MS)
and I am even allowing silent succeed on unsigned drivers.
 
I plug in the USB printer and it detects and instantly says you need to
be an admin and asks for credentials.


 
 

From: Joe Heaton [mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

IIRC, there's also a policy setting for Allow user to install/delete
printers.  Maybe that's where you need to look?


Joe Heaton


  




From: Kennedy, Jim [mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  
Sent: Thursday, March 13, 2008 6:41 AM
To: NT System Admin Issues
Subject: XP Plug and Play printers GPO
Am I reading this right, even as a power users and allowing 'load and
unload device drivers' a user can not install a plug and play USB
printer? And if so how are the rest of you handling that for laptop
users with home printers?
 


 
 









- 
Salvador Manzo  [ 620 W. 35th St - Los Angeles, CA 90089  e.
[EMAIL PROTECTED] ]
Auxiliary Services IT, Datacenter
University of Southern California
818-612-5112

 

 

 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: XP Plug and Play printers GPO

2008-03-13 Thread Mark Boersma
I've usually had good success with installing the software for the
printer and then when they plug it in it'll pick it up and work fine.
This is done logged in as admin.

 

If it's a multifunction you can just run the software without plugging
the printer in.  If it's a regular printer just install it and tell it
to be on the parallel port, then when you plug it into the usb it'll
usually work.

 

Mark

-

Two rules to success in life:

1. Never tell people everything you know.

 

From: Benjamin Zachary [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 1:10 PM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

 

Yeah the user needs the ability to add hardware. i.e dot001, usb001 or
whatever. Love HP home units!!

 



From: Salvador Manzo [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:55 PM
To: NT System Admin Issues
Subject: Re: XP Plug and Play printers GPO

 

USB printers will create a printer port when they're setup (USB001,
etc.).  THIS is probably the part that's failing, since I've seen that,
even if it's the same printer/PC combination, the USB printer port can
change depending on what devices are present and what port it's plugged
into. 


On 3/13/08 7:42 AM, Kennedy, Jim [EMAIL PROTECTED] wrote:

Got that set also, it seems...and google backs it up.that this does
not fix the issue for USB printers. USB printers seem to install more as
a device rather than a 'printer', as far as XP is concerned.
 
So far the combo I am trying is having the users as power users, allow
load and unload device drivers + disabled 'prevent users from installing
printer drivers' (although that should not impact power users per MS)
and I am even allowing silent succeed on unsigned drivers.
 
I plug in the USB printer and it detects and instantly says you need to
be an admin and asks for credentials.


 
 

From: Joe Heaton [mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  
Sent: Thursday, March 13, 2008 10:28 AM
To: NT System Admin Issues
Subject: RE: XP Plug and Play printers GPO

IIRC, there's also a policy setting for Allow user to install/delete
printers.  Maybe that's where you need to look?


Joe Heaton


  




From: Kennedy, Jim [mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]  
Sent: Thursday, March 13, 2008 6:41 AM
To: NT System Admin Issues
Subject: XP Plug and Play printers GPO
Am I reading this right, even as a power users and allowing 'load and
unload device drivers' a user can not install a plug and play USB
printer? And if so how are the rest of you handling that for laptop
users with home printers?
 


 
 










- 
Salvador Manzo  [ 620 W. 35th St - Los Angeles, CA 90089  e.
[EMAIL PROTECTED] ]
Auxiliary Services IT, Datacenter
University of Southern California
818-612-5112

 

 

 


Please consider the environment before printing this email.


CONFIDENTIALITY NOTICE: This e-mail message, including any attachments, is for 
the sole use of the intended recipients(s) and may contain confidential and 
privileged information.  Any unauthorized review, use, disclosure or 
distribution is prohibited.  If you are not the intended recipient, please 
contact the sender by reply e-mail and destroy all copies of the original 
message.

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden

All of the ps tools come back unable to connect.
- Original Message - 
From: Peter van Houten [EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 12:53 PM
Subject: Re: Remote server won't allow management



Thanks to Mark R. once again:

psexec \\computername -i shutdown -r -t 1

or if you *really* want to shut down no matter what:

pskill -t \\computername svchost.exe

which will kill most instances of the generic host process and
consequently restart the machine. But as James pointed out, the
integrity of the RPC channel must be intact.

I have experienced the frustration of being able to ping a system but
not being able to communicate in any other way else.  This idea would be 
useful if one could implement it in Windows:


http://www.securiteam.com/tools/5GP071FG0Q.html


*From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server 
won't allow management


If it won’t take a remote shutdown command (from the ResKit), then it
 is probably out of reach. Most stuff relies on some form of RPC 
communication. I sometimes use pskill to kill the winlogon process which 
generally makes it bluescreen, but this may not work either in diagnostic 
mode





*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 2008 
11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server won't 
allow management


Nope.

- Original Message -

*From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com 
*Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote server

won't allow management

Take it it doesn’t have a DRAC/RIB/ILO installed?




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 2008 
11:20 *To:* NT System Admin Issues *Subject:* Remote server won't allow 
management


I have a remote server I would like to get into but is was last restarted 
in Diag mode from MSCONFIG.


There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__





~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: Remote server won't allow management

2008-03-13 Thread Peter van Houten
Going out on a limb but I know when I'm in this situation, I'll try just 
about anything to talk to a server I can see (bearing in mind the 
time/cost).  What about running nmap against the system to see if port 
135 (RPC) or any others are, in fact open?  Anyone have a copy of 
Blaster for David :-)


On the 13/03/2008 19:18, David W. McSpadden wrote the following:

All of the ps tools come back unable to connect.
- Original Message - From: Peter van Houten [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 12:53 PM
Subject: Re: Remote server won't allow management



Thanks to Mark R. once again:

psexec \\computername -i shutdown -r -t 1

or if you *really* want to shut down no matter what:

pskill -t \\computername svchost.exe

which will kill most instances of the generic host process and
consequently restart the machine. But as James pointed out, the
integrity of the RPC channel must be intact.

I have experienced the frustration of being able to ping a system but
not being able to communicate in any other way else.  This idea would 
be useful if one could implement it in Windows:


http://www.securiteam.com/tools/5GP071FG0Q.html


*From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
March 2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote 
server won't allow management


If it won’t take a remote shutdown command (from the ResKit), then it
 is probably out of reach. Most stuff relies on some form of RPC 
communication. I sometimes use pskill to kill the winlogon process 
which generally makes it bluescreen, but this may not work either in 
diagnostic mode





*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server 
won't allow management


Nope.

- Original Message -

*From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com 
*Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote server

won't allow management

Take it it doesn’t have a DRAC/RIB/ILO installed?




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
won't allow management


I have a remote server I would like to get into but is was last 
restarted in Diag mode from MSCONFIG.


There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Connect two servers via fiber NICs

2008-03-13 Thread Bret Hanson
Is it possible to connect 2 servers together via fiber NICs?  With copper
we need crossover cables - is there something similar for fiber?  
 
Thanks!
 
Bret

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden

It does has SQL 2000 on it.  With a blank SA password...
- Original Message - 
From: Peter van Houten [EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:30 PM
Subject: Re: Remote server won't allow management


Going out on a limb but I know when I'm in this situation, I'll try just 
about anything to talk to a server I can see (bearing in mind the 
time/cost).  What about running nmap against the system to see if port 135 
(RPC) or any others are, in fact open?  Anyone have a copy of Blaster for 
David :-)


On the 13/03/2008 19:18, David W. McSpadden wrote the following:

All of the ps tools come back unable to connect.
- Original Message - From: Peter van Houten 
[EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 12:53 PM
Subject: Re: Remote server won't allow management



Thanks to Mark R. once again:

psexec \\computername -i shutdown -r -t 1

or if you *really* want to shut down no matter what:

pskill -t \\computername svchost.exe

which will kill most instances of the generic host process and
consequently restart the machine. But as James pointed out, the
integrity of the RPC channel must be intact.

I have experienced the frustration of being able to ping a system but
not being able to communicate in any other way else.  This idea would be 
useful if one could implement it in Windows:


http://www.securiteam.com/tools/5GP071FG0Q.html


*From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server 
won't allow management


If it won’t take a remote shutdown command (from the ResKit), then it
 is probably out of reach. Most stuff relies on some form of RPC 
communication. I sometimes use pskill to kill the winlogon process 
which generally makes it bluescreen, but this may not work either in 
diagnostic mode





*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server 
won't allow management


Nope.

- Original Message -

*From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com 
*Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote server

won't allow management

Take it it doesn’t have a DRAC/RIB/ILO installed?




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March 
2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server won't 
allow management


I have a remote server I would like to get into but is was last 
restarted in Diag mode from MSCONFIG.


There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__





~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Stop WSUS updates

2008-03-13 Thread Jim Dandy
Could it be  a bridge loop or a NIC jabbering on the network?

 

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 12, 2008 7:21 AM
To: NT System Admin Issues
Subject: Stop WSUS updates

 

To stop WSUS updates I need to do the following:

 

1.)Stop WWW on WSUS server.

 

2.)Reboot workstations that have downloading icon in system tray.

 

Or is there more?

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden

Yeah I know.
It's actually a honeypot when it is up.
Haven't had any real biters though.

- Original Message - 
From: Salvador Manzo [EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:48 PM
Subject: Re: Remote server won't allow management


Wow.  That's an exploit waiting to happen.


On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:


It does has SQL 2000 on it.  With a blank SA password...
- Original Message -
From: Peter van Houten [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:30 PM
Subject: Re: Remote server won't allow management



Going out on a limb but I know when I'm in this situation, I'll try just
about anything to talk to a server I can see (bearing in mind the
time/cost).  What about running nmap against the system to see if port 
135

(RPC) or any others are, in fact open?  Anyone have a copy of Blaster for
David :-)

On the 13/03/2008 19:18, David W. McSpadden wrote the following:

All of the ps tools come back unable to connect.
- Original Message - From: Peter van Houten
[EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 12:53 PM
Subject: Re: Remote server won't allow management



Thanks to Mark R. once again:

psexec \\computername -i shutdown -r -t 1

or if you *really* want to shut down no matter what:

pskill -t \\computername svchost.exe

which will kill most instances of the generic host process and
consequently restart the machine. But as James pointed out, the
integrity of the RPC channel must be intact.

I have experienced the frustration of being able to ping a system but
not being able to communicate in any other way else.  This idea would 
be

useful if one could implement it in Windows:

http://www.securiteam.com/tools/5GP071FG0Q.html


*From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
March

2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
won't allow management

If it won¹t take a remote shutdown command (from the ResKit), then it
 is probably out of reach. Most stuff relies on some form of RPC
communication. I sometimes use pskill to kill the winlogon process
which generally makes it bluescreen, but this may not work either in
diagnostic mode




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
won't allow management

Nope.

- Original Message -

*From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
*Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote server
won't allow management

Take it it doesn¹t have a DRAC/RIB/ILO installed?




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server won't
allow management

I have a remote server I would like to get into but is was last
restarted in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


- 
Salvador Manzo  [ 620 W. 35th St - Los Angeles, CA 90089  e. [EMAIL PROTECTED] ]

Auxiliary Services IT, Datacenter
University of Southern California
818-612-5112
The injury which may possibly be done by defeating a few good laws, will be
amply compensated by the advantage of preventing a number of bad ones. --
Alexander Hamilton, Federalist No. 73 on the veto power


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: backup exec question

2008-03-13 Thread Roger Wright
Also is there any way to have multiple backup jobs going to tape at the
same time?

No, and this is one of my big disappointments with BUE.  You can send
multiple jobs to disk, however.



Roger Wright 
Network Administrator 
727.572.7076  x388 
 

We all have style, but few have class. 
  
  
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:56 AM 
To: NT System Admin Issues 
Subject: backup exec question 
  
Hello everyone, 
Is there any way to change backup exec 11d job start priority? Let's say
if you schedule using the media rotation template they all start at 11
PM. Problem is we can change this is a big selection list which has
multiple servers but we need to use separate selection list? 

My first guess was they start based on time and then if time conflict,
alphabetically but no 
Also is there any way to have multiple backup jobs going to tape at the
same time? 
  
Appreciated 
  
  


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: Remote server won't allow management

2008-03-13 Thread Peter van Houten
OK, so nmap against ports 1433 and 1434 and then grab your metasploit or 
 head over here:


http://tinyurl.com/rcah3

Alternatively, give the list the box's ip address and an offer of
$(datacentre_charge_per_hour-1) for the 1st successful reboot ;-)


On the 13/03/2008 20:59, David W. McSpadden wrote the following:

Yeah I know.
It's actually a honeypot when it is up.
Haven't had any real biters though.

- Original Message - From: Salvador Manzo [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:48 PM
Subject: Re: Remote server won't allow management


Wow.  That's an exploit waiting to happen.


On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:


It does has SQL 2000 on it.  With a blank SA password...
- Original Message -
From: Peter van Houten [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:30 PM
Subject: Re: Remote server won't allow management



Going out on a limb but I know when I'm in this situation, I'll try just
about anything to talk to a server I can see (bearing in mind the
time/cost).  What about running nmap against the system to see if 
port 135
(RPC) or any others are, in fact open?  Anyone have a copy of Blaster 
for

David :-)

On the 13/03/2008 19:18, David W. McSpadden wrote the following:

All of the ps tools come back unable to connect.
- Original Message - From: Peter van Houten
[EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 12:53 PM
Subject: Re: Remote server won't allow management



Thanks to Mark R. once again:

psexec \\computername -i shutdown -r -t 1

or if you *really* want to shut down no matter what:

pskill -t \\computername svchost.exe

which will kill most instances of the generic host process and
consequently restart the machine. But as James pointed out, the
integrity of the RPC channel must be intact.

I have experienced the frustration of being able to ping a system but
not being able to communicate in any other way else.  This idea 
would be

useful if one could implement it in Windows:

http://www.securiteam.com/tools/5GP071FG0Q.html


*From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
March

2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
won't allow management

If it won¹t take a remote shutdown command (from the ResKit), then it
 is probably out of reach. Most stuff relies on some form of RPC
communication. I sometimes use pskill to kill the winlogon process
which generally makes it bluescreen, but this may not work either in
diagnostic mode

 




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
won't allow management

Nope.

- Original Message -

*From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
*Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote server
won't allow management

Take it it doesn¹t have a DRAC/RIB/ILO installed?

 




*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
won't

allow management

I have a remote server I would like to get into but is was last
restarted in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it 
unstuck?


I can ping it but that is all.


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: backup exec question

2008-03-13 Thread Michael . Leone
Roger Wright [EMAIL PROTECTED] wrote on 03/13/2008 03:33:08 PM:

 ?Also is there any way to have multiple backup jobs going to tape at
 the same time??
 No, and this is one of my big disappointments with BUE.  You can 
 send multiple jobs to disk, however.


EMC NetWorker can send multiple backup jobs to multiple tapes at the same 
time, using streams to spread the load across more than one tape. 

 Roger Wright 
 Network Administrator 
 727.572.7076  x388 
  
 We all have style, but few have class. 
 
 
 From: Ara Avvali [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, March 13, 2008 12:56 AM 
 To: NT System Admin Issues 
 Subject: backup exec question 
 
 Hello everyone, 
 Is there any way to change backup exec 11d job start priority? Let?s
 say if you schedule using the media rotation template they all start
 at 11 PM. Problem is we can change this is a big selection list 
 which has multiple servers but we need to use separate selection list? 
 My first guess was they start based on time and then if time 
 conflict, alphabetically but no 
 Also is there any way to have multiple backup jobs going to tape at 
 the same time? 
 
 Appreciated 
 
 
 
 

 
 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Commvault resumability question

2008-03-13 Thread Jeremy Young
I just attended a Commvault demo yesterday at their Oceanport HQ 
yesterday and had a chance to go over a lot of their features.  So far 
I'm very happy with what I've seen.  Not having an in house demo install 
(something they are very reluctant to give us) is a sticking point so I 
need to reach out to others for practical feedback.


They talk about their ability to resume backups based on checkpoints of 
data blocks already processed to tape (or another location).  This is 
something that would really matter to me.  For one thing I wouldn't need 
to purchase a spare tape drive that sits idle waiting for restore 
operations like I currently have and would have to buy in my new 
library.  Since restores are a higher priority the backup or duplication 
job would pause, the tape being written to would eject, the restore tape 
would load and run and then the previous operation would start where it 
left off.


I questioned Commvault heavily about this feature and they swear it 
works as advertised.  I've since had an external source say that it kind 
of works but not nearly as well as Commvault claims.  Who has experience 
with this feature and what are your thoughts on it?


- Jer

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Remote server won't allow management

2008-03-13 Thread Ames Matthew B
lol... Maybe you had one good bite ;-) 

-Original Message-
From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 18:59
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

Yeah I know.
It's actually a honeypot when it is up.
Haven't had any real biters though.

- Original Message - 
From: Salvador Manzo [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:48 PM
Subject: Re: Remote server won't allow management


Wow.  That's an exploit waiting to happen.


On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:

 It does has SQL 2000 on it.  With a blank SA password
The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal Purchase 
Order.

For those other than the recipient any disclosure, copying, 
distribution, or any action taken or omitted to be taken in reliance 
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be 
monitored and recorded for business purposes including security, audit 
and archival purposes.  Any response to this email indicates consent 
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality 
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, Farnborough, 
Hampshire, GU14 0LX, United Kingdom 
http://www.QinetiQ.com/home/legal.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Remote server won't allow management

2008-03-13 Thread Christopher Boggs
Just an interesting story,

I once had a Ricoh copier that I was trying to setup to send scanned documents 
to a share...  The way the share was specified was a machine name, share name, 
and folder name (folder within the share).  If I remember correctly, if you put 
a full sharename\folder address in the share section (minus the \\machine part) 
instead of just the share name, it would reboot the workstation.  I know it 
wasn't just a blue screen, as I had auto-reboot turned off and would have seen 
it when I got back to the workstation.. nothing in the event logs either, just 
POOF and it reboots.

I was in a hurry and eventually figured out my error and got it working 
properly, but never actually investigated as to how it rebooted the 
workstation  

-cb

-Original Message-
From: Peter van Houten [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 2:36 PM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

OK, so nmap against ports 1433 and 1434 and then grab your metasploit or 
  head over here:

http://tinyurl.com/rcah3

Alternatively, give the list the box's ip address and an offer of
$(datacentre_charge_per_hour-1) for the 1st successful reboot ;-)


On the 13/03/2008 20:59, David W. McSpadden wrote the following:
 Yeah I know.
 It's actually a honeypot when it is up.
 Haven't had any real biters though.
 
 - Original Message - From: Salvador Manzo [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:48 PM
 Subject: Re: Remote server won't allow management
 
 
 Wow.  That's an exploit waiting to happen.
 
 
 On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:
 
 It does has SQL 2000 on it.  With a blank SA password...
 - Original Message -
 From: Peter van Houten [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:30 PM
 Subject: Re: Remote server won't allow management


 Going out on a limb but I know when I'm in this situation, I'll try just
 about anything to talk to a server I can see (bearing in mind the
 time/cost).  What about running nmap against the system to see if 
 port 135
 (RPC) or any others are, in fact open?  Anyone have a copy of Blaster 
 for
 David :-)

 On the 13/03/2008 19:18, David W. McSpadden wrote the following:
 All of the ps tools come back unable to connect.
 - Original Message - From: Peter van Houten
 [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 12:53 PM
 Subject: Re: Remote server won't allow management


 Thanks to Mark R. once again:

 psexec \\computername -i shutdown -r -t 1

 or if you *really* want to shut down no matter what:

 pskill -t \\computername svchost.exe

 which will kill most instances of the generic host process and
 consequently restart the machine. But as James pointed out, the
 integrity of the RPC channel must be intact.

 I have experienced the frustration of being able to ping a system but
 not being able to communicate in any other way else.  This idea 
 would be
 useful if one could implement it in Windows:

 http://www.securiteam.com/tools/5GP071FG0Q.html


 *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
 March
 2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
 won't allow management

 If it won¹t take a remote shutdown command (from the ResKit), then it
  is probably out of reach. Most stuff relies on some form of RPC
 communication. I sometimes use pskill to kill the winlogon process
 which generally makes it bluescreen, but this may not work either in
 diagnostic mode

  



 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
 won't allow management

 Nope.

 - Original Message -

 *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
 System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote server
 won't allow management

 Take it it doesn¹t have a DRAC/RIB/ILO installed?

  



 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
 won't
 allow management

 I have a remote server I would like to get into but is was last
 restarted in Diag mode from MSCONFIG.

 There is no one at the remote site.  Is there a way to get it 
 unstuck?

 I can ping it but that is all.

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: backup exec question

2008-03-13 Thread Roger Wright
Yes, but BackupExec can only send one job at a time to a single tape
drive.  Other jobs wait in a queue until the previous job completes.

CA ARCserve also streams (multiplexes) multiple jobs to a single job,
thereby improving tape write efficiency substantially.



Roger Wright 
Network Administrator 
727.572.7076  x388 
 

A kleptomaniac is a person who helps himself because he can't help
himself. 
  
  
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 3:40 PM 
To: NT System Admin Issues 
Subject: RE: backup exec question 
  

Roger Wright [EMAIL PROTECTED] wrote on 03/13/2008 03:33:08 PM: 

 Also is there any way to have multiple backup jobs going to tape at 
 the same time? 
 No, and this is one of my big disappointments with BUE.  You can 
 send multiple jobs to disk, however. 

 

EMC NetWorker can send multiple backup jobs to multiple tapes at the
same time, using streams to spread the load across more than one tape.


 Roger Wright 
 Network Administrator 
 727.572.7076  x388 
  
 We all have style, but few have class. 
   
   
 From: Ara Avvali [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, March 13, 2008 12:56 AM 
 To: NT System Admin Issues 
 Subject: backup exec question 
   
 Hello everyone, 
 Is there any way to change backup exec 11d job start priority? Let's 
 say if you schedule using the media rotation template they all start 
 at 11 PM. Problem is we can change this is a big selection list 
 which has multiple servers but we need to use separate selection list?

 My first guess was they start based on time and then if time 
 conflict, alphabetically but no 
 Also is there any way to have multiple backup jobs going to tape at 
 the same time? 
   
 Appreciated 
   
   
 
 

 
 

 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: backup exec question

2008-03-13 Thread Sherry Abercrombie
BUE can send multiple jobs to multiple tapes at the same time.  Sending
multiple jobs to the same tape at one time, no.

On Thu, Mar 13, 2008 at 2:39 PM, [EMAIL PROTECTED] wrote:


 Roger Wright [EMAIL PROTECTED] wrote on 03/13/2008 03:33:08 PM:

  Also is there any way to have multiple backup jobs going to tape at
  the same time?

  No, and this is one of my big disappointments with BUE.  You can
  send multiple jobs to disk, however.


 EMC NetWorker can send multiple backup jobs to multiple tapes at the same
 time, using streams to spread the load across more than one tape.

  Roger Wright
  Network Administrator
  727.572.7076  x388
  
  We all have style, but few have class.
 
 
  From: Ara Avvali [mailto:[EMAIL PROTECTED]
  Sent: Thursday, March 13, 2008 12:56 AM
  To: NT System Admin Issues
  Subject: backup exec question
 
  Hello everyone,
  Is there any way to change backup exec 11d job start priority? Let's
  say if you schedule using the media rotation template they all start
  at 11 PM. Problem is we can change this is a big selection list
  which has multiple servers but we need to use separate selection list?
  My first guess was they start based on time and then if time
  conflict, alphabetically but no
  Also is there any way to have multiple backup jobs going to tape at
  the same time?
 
  Appreciated
 
 
 
 

 
 

 




-- 
Sherry Abercrombie

Any sufficiently advanced technology is indistinguishable from magic.
Arthur C. Clarke

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

Re: backup exec question

2008-03-13 Thread Jeremy Young
Ara,

Try staging to disk with multiple streams and then moving to tape. 
That'll shorten your backup window and won't require additional tape 
hardware and will provide you with faster backups.

A word of caution. My existing BUE environment doesn't dupe to tape well 
so I would test in your environment first for reliability. This is why 
I'm moving away from BUE.

- Jer

[EMAIL PROTECTED] wrote:

 Roger Wright [EMAIL PROTECTED] wrote on 03/13/2008 03:33:08 PM:

  “Also is there any way to have multiple backup jobs going to tape at
  the same time?”
  No, and this is one of my big disappointments with BUE. You can
  send multiple jobs to disk, however.


 EMC NetWorker can send multiple backup jobs to multiple tapes at the 
 same time, using streams to spread the load across more than one tape.

  Roger Wright
  Network Administrator
  727.572.7076 x388
  
  We all have style, but few have class.
 
 
  From: Ara Avvali [mailto:[EMAIL PROTECTED]
  Sent: Thursday, March 13, 2008 12:56 AM
  To: NT System Admin Issues
  Subject: backup exec question
 
  Hello everyone,
  Is there any way to change backup exec 11d job start priority? Let’s
  say if you schedule using the media rotation template they all start
  at 11 PM. Problem is we can change this is a big selection list
  which has multiple servers but we need to use separate selection list?
  My first guess was they start based on time and then if time
  conflict, alphabetically but no
  Also is there any way to have multiple backup jobs going to tape at
  the same time?
 
  Appreciated
 
 
 
 

 
 

 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden

I am hoping.
- Original Message - 
From: Ames Matthew B [EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:40 PM
Subject: RE: Remote server won't allow management


lol... Maybe you had one good bite ;-)

-Original Message-
From: David W. McSpadden [mailto:[EMAIL PROTECTED]
Sent: 13 March 2008 18:59
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

Yeah I know.
It's actually a honeypot when it is up.
Haven't had any real biters though.

- Original Message - 
From: Salvador Manzo [EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:48 PM
Subject: Re: Remote server won't allow management


Wow.  That's an exploit waiting to happen.


On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:


It does has SQL 2000 on it.  With a blank SA password

The information contained in this E-Mail and any subsequent
correspondence is private and is intended solely for the intended
recipient(s).  The information in this communication may be
confidential and/or legally privileged.  Nothing in this e-mail is
intended to conclude a contract on behalf of QinetiQ or make QinetiQ
subject to any other legally binding commitments, unless the e-mail
contains an express statement to the contrary or incorporates a formal 
Purchase Order.


For those other than the recipient any disclosure, copying,
distribution, or any action taken or omitted to be taken in reliance
on such information is prohibited and may be unlawful.

Emails and other electronic communication with QinetiQ may be
monitored and recorded for business purposes including security, audit
and archival purposes.  Any response to this email indicates consent
to this.

Telephone calls to QinetiQ may be monitored or recorded for quality
control, security and other business purposes.

QinetiQ Limited
Registered in England  Wales: Company Number:3796233
Registered office: 85 Buckingham Gate, London SW1E 6PD, United Kingdom
Trading address: Cody Technology Park, Cody Building, Ively Road, 
Farnborough, Hampshire, GU14 0LX, United Kingdom

http://www.QinetiQ.com/home/legal.html

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden

206.18.123.211
have at it.
I don't think it is advertising at the moment though.

- Original Message - 
From: Peter van Houten [EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:36 PM
Subject: Re: Remote server won't allow management


OK, so nmap against ports 1433 and 1434 and then grab your metasploit or 
head over here:


http://tinyurl.com/rcah3

Alternatively, give the list the box's ip address and an offer of
$(datacentre_charge_per_hour-1) for the 1st successful reboot ;-)


On the 13/03/2008 20:59, David W. McSpadden wrote the following:

Yeah I know.
It's actually a honeypot when it is up.
Haven't had any real biters though.

- Original Message - From: Salvador Manzo [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:48 PM
Subject: Re: Remote server won't allow management


Wow.  That's an exploit waiting to happen.


On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:


It does has SQL 2000 on it.  With a blank SA password...
- Original Message -
From: Peter van Houten [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:30 PM
Subject: Re: Remote server won't allow management


Going out on a limb but I know when I'm in this situation, I'll try 
just

about anything to talk to a server I can see (bearing in mind the
time/cost).  What about running nmap against the system to see if port 
135
(RPC) or any others are, in fact open?  Anyone have a copy of Blaster 
for

David :-)

On the 13/03/2008 19:18, David W. McSpadden wrote the following:

All of the ps tools come back unable to connect.
- Original Message - From: Peter van Houten
[EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 12:53 PM
Subject: Re: Remote server won't allow management



Thanks to Mark R. once again:

psexec \\computername -i shutdown -r -t 1

or if you *really* want to shut down no matter what:

pskill -t \\computername svchost.exe

which will kill most instances of the generic host process and
consequently restart the machine. But as James pointed out, the
integrity of the RPC channel must be intact.

I have experienced the frustration of being able to ping a system but
not being able to communicate in any other way else.  This idea would 
be

useful if one could implement it in Windows:

http://www.securiteam.com/tools/5GP071FG0Q.html


*From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
March

2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
won't allow management

If it won¹t take a remote shutdown command (from the ResKit), then 
it

 is probably out of reach. Most stuff relies on some form of RPC
communication. I sometimes use pskill to kill the winlogon process
which generally makes it bluescreen, but this may not work either in
diagnostic mode





*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
won't allow management

Nope.

- Original Message -

*From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
*Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote 
server

won't allow management

Take it it doesn¹t have a DRAC/RIB/ILO installed?





*From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
won't

allow management

I have a remote server I would like to get into but is was last
restarted in Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it 
unstuck?


I can ping it but that is all.


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__





~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Remote server won't allow management

2008-03-13 Thread Christopher Boggs
TCP: 206.18.123.211 [21-ftp]
TCP: 206.18.123.211 [110-pop3]
TCP: 206.18.123.211 [80-www-http]
TCP: 206.18.123.211 [443-https]


-Original Message-
From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 2:55 PM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

206.18.123.211
have at it.
I don't think it is advertising at the moment though.

- Original Message - 
From: Peter van Houten [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:36 PM
Subject: Re: Remote server won't allow management


 OK, so nmap against ports 1433 and 1434 and then grab your metasploit or 
 head over here:

 http://tinyurl.com/rcah3

 Alternatively, give the list the box's ip address and an offer of
 $(datacentre_charge_per_hour-1) for the 1st successful reboot ;-)


 On the 13/03/2008 20:59, David W. McSpadden wrote the following:
 Yeah I know.
 It's actually a honeypot when it is up.
 Haven't had any real biters though.

 - Original Message - From: Salvador Manzo [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:48 PM
 Subject: Re: Remote server won't allow management


 Wow.  That's an exploit waiting to happen.


 On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:

 It does has SQL 2000 on it.  With a blank SA password...
 - Original Message -
 From: Peter van Houten [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:30 PM
 Subject: Re: Remote server won't allow management


 Going out on a limb but I know when I'm in this situation, I'll try 
 just
 about anything to talk to a server I can see (bearing in mind the
 time/cost).  What about running nmap against the system to see if port 
 135
 (RPC) or any others are, in fact open?  Anyone have a copy of Blaster 
 for
 David :-)

 On the 13/03/2008 19:18, David W. McSpadden wrote the following:
 All of the ps tools come back unable to connect.
 - Original Message - From: Peter van Houten
 [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 12:53 PM
 Subject: Re: Remote server won't allow management


 Thanks to Mark R. once again:

 psexec \\computername -i shutdown -r -t 1

 or if you *really* want to shut down no matter what:

 pskill -t \\computername svchost.exe

 which will kill most instances of the generic host process and
 consequently restart the machine. But as James pointed out, the
 integrity of the RPC channel must be intact.

 I have experienced the frustration of being able to ping a system but
 not being able to communicate in any other way else.  This idea would 
 be
 useful if one could implement it in Windows:

 http://www.securiteam.com/tools/5GP071FG0Q.html


 *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
 March
 2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
 won't allow management

 If it won¹t take a remote shutdown command (from the ResKit), then 
 it
  is probably out of reach. Most stuff relies on some form of RPC
 communication. I sometimes use pskill to kill the winlogon process
 which generally makes it bluescreen, but this may not work either in
 diagnostic mode

 



 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
 won't allow management

 Nope.

 - Original Message -

 *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
 System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote 
 server
 won't allow management

 Take it it doesn¹t have a DRAC/RIB/ILO installed?

 



 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
 won't
 allow management

 I have a remote server I would like to get into but is was last
 restarted in Diag mode from MSCONFIG.

 There is no one at the remote site.  Is there a way to get it 
 unstuck?

 I can ping it but that is all.

 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

 __
 This email has been scanned by the MessageLabs Email Security System.
 For more information please visit http://www.messagelabs.com/email 
 __
 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

~ Upgrade to Next Generation Antispam/Antivirus 

Re: Remote server won't allow management

2008-03-13 Thread David W. McSpadden

I am sorry for your upset stomach and ringing in your ears but it's true.
Actually, it's worthless.  The way the DMZ is setup you can't even see it 
from the outside world so it doesn't

get much play.

- Original Message - 
From: Micheal Espinola Jr [EMAIL PROTECTED]

To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:44 PM
Subject: Re: Remote server won't allow management



1.  I cant beleive you said that outloud.
2.  I cant beleive its true.


On Thu, Mar 13, 2008 at 2:43 PM, David W. McSpadden [EMAIL PROTECTED] 
wrote:

It does has SQL 2000 on it.  With a blank SA password...
- Original Message -
From: Peter van Houten [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 2:30 PM
Subject: Re: Remote server won't allow management


 Going out on a limb but I know when I'm in this situation, I'll try 
 just

 about anything to talk to a server I can see (bearing in mind the
 time/cost).  What about running nmap against the system to see if port 
 135
 (RPC) or any others are, in fact open?  Anyone have a copy of Blaster 
 for

 David :-)

 On the 13/03/2008 19:18, David W. McSpadden wrote the following:

 All of the ps tools come back unable to connect.
 - Original Message - From: Peter van Houten
 [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 12:53 PM
 Subject: Re: Remote server won't allow management


 Thanks to Mark R. once again:

 psexec \\computername -i shutdown -r -t 1

 or if you *really* want to shut down no matter what:

 pskill -t \\computername svchost.exe

 which will kill most instances of the generic host process and
 consequently restart the machine. But as James pointed out, the
 integrity of the RPC channel must be intact.

 I have experienced the frustration of being able to ping a system but
 not being able to communicate in any other way else.  This idea would 
 be

 useful if one could implement it in Windows:

 http://www.securiteam.com/tools/5GP071FG0Q.html


 *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
 March

 2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
 won't allow management

 If it won't take a remote shutdown command (from the ResKit), then 
 it

  is probably out of reach. Most stuff relies on some form of RPC
 communication. I sometimes use pskill to kill the winlogon process
 which generally makes it bluescreen, but this may not work either in
 diagnostic mode

 


 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
 won't allow management

 Nope.

 - Original Message -

 *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
 System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote 
 server

 won't allow management

 Take it it doesn't have a DRAC/RIB/ILO installed?

 


 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
 won't

 allow management

 I have a remote server I would like to get into but is was last
 restarted in Diag mode from MSCONFIG.

 There is no one at the remote site.  Is there a way to get it 
 unstuck?


 I can ping it but that is all.

 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

 __
 This email has been scanned by the MessageLabs Email Security System.
 For more information please visit http://www.messagelabs.com/email
 __



~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~





--
ME2

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: backup exec question

2008-03-13 Thread Roger Wright
Correct.  Thanks for the clarification.



Roger Wright 
Network Administrator 
727.572.7076  x388 
 

If it was easy, they'd send someone else. 
  
  
From: Sherry Abercrombie [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 3:47 PM 
To: NT System Admin Issues 
Subject: Re: backup exec question 
  
BUE can send multiple jobs to multiple tapes at the same time.  Sending
multiple jobs to the same tape at one time, no.  

On Thu, Mar 13, 2008 at 2:39 PM, HYPERLINK
mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: 

Roger Wright HYPERLINK mailto:[EMAIL PROTECTED]
[EMAIL PROTECTED] wrote on 03/13/2008 03:33:08 PM: 

 

 Also is there any way to have multiple backup jobs going to tape at 
 the same time? 
  
 No, and this is one of my big disappointments with BUE.  You can 
 send multiple jobs to disk, however. 

 

EMC NetWorker can send multiple backup jobs to multiple tapes at the
same time, using streams to spread the load across more than one tape.


 Roger Wright 
 Network Administrator 
 727.572.7076  x388 
  
 We all have style, but few have class. 
   
   
 From: Ara Avvali [mailto:HYPERLINK mailto:[EMAIL PROTECTED]
[EMAIL PROTECTED] 
 Sent: Thursday, March 13, 2008 12:56 AM 
 To: NT System Admin Issues 
 Subject: backup exec question 
   
 Hello everyone, 
 Is there any way to change backup exec 11d job start priority? Let's 
 say if you schedule using the media rotation template they all start 
 at 11 PM. Problem is we can change this is a big selection list 
 which has multiple servers but we need to use separate selection list?

 My first guess was they start based on time and then if time 
 conflict, alphabetically but no 
 Also is there any way to have multiple backup jobs going to tape at 
 the same time? 
   
 Appreciated 
   
   
 
 

 
 

 

 

-- 
Sherry Abercrombie 

Any sufficiently advanced technology is indistinguishable from magic. 
Arthur C. Clarke 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

RE: Remote server won't allow management

2008-03-13 Thread Christopher Boggs
Definitely a honeypot... UDP responses on every port!

You running nepenthes on that thing?

:)


-Original Message-
From: Christopher Boggs [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 3:00 PM
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

TCP: 206.18.123.211 [21-ftp]
TCP: 206.18.123.211 [110-pop3]
TCP: 206.18.123.211 [80-www-http]
TCP: 206.18.123.211 [443-https]


-Original Message-
From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 2:55 PM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

206.18.123.211
have at it.
I don't think it is advertising at the moment though.

- Original Message - 
From: Peter van Houten [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:36 PM
Subject: Re: Remote server won't allow management


 OK, so nmap against ports 1433 and 1434 and then grab your metasploit or 
 head over here:

 http://tinyurl.com/rcah3

 Alternatively, give the list the box's ip address and an offer of
 $(datacentre_charge_per_hour-1) for the 1st successful reboot ;-)


 On the 13/03/2008 20:59, David W. McSpadden wrote the following:
 Yeah I know.
 It's actually a honeypot when it is up.
 Haven't had any real biters though.

 - Original Message - From: Salvador Manzo [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:48 PM
 Subject: Re: Remote server won't allow management


 Wow.  That's an exploit waiting to happen.


 On 3/13/08 11:43 AM, David W. McSpadden [EMAIL PROTECTED] wrote:

 It does has SQL 2000 on it.  With a blank SA password...
 - Original Message -
 From: Peter van Houten [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:30 PM
 Subject: Re: Remote server won't allow management


 Going out on a limb but I know when I'm in this situation, I'll try 
 just
 about anything to talk to a server I can see (bearing in mind the
 time/cost).  What about running nmap against the system to see if port 
 135
 (RPC) or any others are, in fact open?  Anyone have a copy of Blaster 
 for
 David :-)

 On the 13/03/2008 19:18, David W. McSpadden wrote the following:
 All of the ps tools come back unable to connect.
 - Original Message - From: Peter van Houten
 [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 12:53 PM
 Subject: Re: Remote server won't allow management


 Thanks to Mark R. once again:

 psexec \\computername -i shutdown -r -t 1

 or if you *really* want to shut down no matter what:

 pskill -t \\computername svchost.exe

 which will kill most instances of the generic host process and
 consequently restart the machine. But as James pointed out, the
 integrity of the RPC channel must be intact.

 I have experienced the frustration of being able to ping a system but
 not being able to communicate in any other way else.  This idea would 
 be
 useful if one could implement it in Windows:

 http://www.securiteam.com/tools/5GP071FG0Q.html


 *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13 
 March
 2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
 won't allow management

 If it won¹t take a remote shutdown command (from the ResKit), then 
 it
  is probably out of reach. Most stuff relies on some form of RPC
 communication. I sometimes use pskill to kill the winlogon process
 which generally makes it bluescreen, but this may not work either in
 diagnostic mode

 



 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
 won't allow management

 Nope.

 - Original Message -

 *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
 System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote 
 server
 won't allow management

 Take it it doesn¹t have a DRAC/RIB/ILO installed?

 



 *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
 2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server 
 won't
 allow management

 I have a remote server I would like to get into but is was last
 restarted in Diag mode from MSCONFIG.

 There is no one at the remote site.  Is there a way to get it 
 unstuck?

 I can ping it but that is all.

 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

 __
 This email has been scanned by the MessageLabs Email Security System.
 For more information please 

RE: Remote server won't allow management

2008-03-13 Thread Joe Heaton
I believe Christopher would argue that point... 


Joe Heaton

-Original Message-
From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:58 PM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

I am sorry for your upset stomach and ringing in your ears but it's
true.
Actually, it's worthless.  The way the DMZ is setup you can't even see
it from the outside world so it doesn't get much play.

- Original Message -
From: Micheal Espinola Jr [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:44 PM
Subject: Re: Remote server won't allow management


 1.  I cant beleive you said that outloud.
 2.  I cant beleive its true.


 On Thu, Mar 13, 2008 at 2:43 PM, David W. McSpadden [EMAIL PROTECTED] 
 wrote:
 It does has SQL 2000 on it.  With a blank SA password...
 - Original Message -
 From: Peter van Houten [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:30 PM
 Subject: Re: Remote server won't allow management


  Going out on a limb but I know when I'm in this situation, I'll try

  just
  about anything to talk to a server I can see (bearing in mind the
  time/cost).  What about running nmap against the system to see if
port 
  135
  (RPC) or any others are, in fact open?  Anyone have a copy of
Blaster 
  for
  David :-)
 
  On the 13/03/2008 19:18, David W. McSpadden wrote the following:

  All of the ps tools come back unable to connect.
  - Original Message - From: Peter van Houten
  [EMAIL PROTECTED]
  To: NT System Admin Issues
ntsysadmin@lyris.sunbelt-software.com
  Sent: Thursday, March 13, 2008 12:53 PM
  Subject: Re: Remote server won't allow management
 
 
  Thanks to Mark R. once again:
 
  psexec \\computername -i shutdown -r -t 1
 
  or if you *really* want to shut down no matter what:
 
  pskill -t \\computername svchost.exe
 
  which will kill most instances of the generic host process and
  consequently restart the machine. But as James pointed out, the
  integrity of the RPC channel must be intact.
 
  I have experienced the frustration of being able to ping a system
but
  not being able to communicate in any other way else.  This idea
would 
  be
  useful if one could implement it in Windows:
 
  http://www.securiteam.com/tools/5GP071FG0Q.html
 
 
  *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:*
13 
  March
  2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote
server
  won't allow management
 
  If it won't take a remote shutdown command (from the ResKit),
then 
  it
   is probably out of reach. Most stuff relies on some form of RPC
  communication. I sometimes use pskill to kill the winlogon
process
  which generally makes it bluescreen, but this may not work
either in
  diagnostic mode
 
 

 
 
  *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13
March
  2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote
server
  won't allow management
 
  Nope.
 
  - Original Message -
 
  *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
  System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com
  *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote 
  server
  won't allow management
 
  Take it it doesn't have a DRAC/RIB/ILO installed?
 
 

 
 
  *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13
March
  2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server

  won't
  allow management
 
  I have a remote server I would like to get into but is was last
  restarted in Diag mode from MSCONFIG.
 
  There is no one at the remote site.  Is there a way to get it 
  unstuck?
 
  I can ping it but that is all.
 
  ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
  ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~
 
 
__
  This email has been scanned by the MessageLabs Email Security
System.
  For more information please visit http://www.messagelabs.com/email
 
__
 


 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~




 -- 
 ME2

 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~

 __
 This email has been scanned by the MessageLabs Email Security System.
 For more information please visit http://www.messagelabs.com/email
 __
 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ 

Re: Remote server won't allow management

2008-03-13 Thread Micheal Espinola Jr
But what about internally?

On Thu, Mar 13, 2008 at 3:58 PM, David W. McSpadden [EMAIL PROTECTED] wrote:
 I am sorry for your upset stomach and ringing in your ears but it's true.
 Actually, it's worthless.  The way the DMZ is setup you can't even see it
 from the outside world so it doesn't
 get much play.

 - Original Message -
 From: Micheal Espinola Jr [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 3:44 PM
 Subject: Re: Remote server won't allow management


  1.  I cant beleive you said that outloud.
  2.  I cant beleive its true.
 
 
  On Thu, Mar 13, 2008 at 2:43 PM, David W. McSpadden [EMAIL PROTECTED]

  wrote:
  It does has SQL 2000 on it.  With a blank SA password...
  - Original Message -
  From: Peter van Houten [EMAIL PROTECTED]
  To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
  Sent: Thursday, March 13, 2008 2:30 PM
  Subject: Re: Remote server won't allow management
 
 
   Going out on a limb but I know when I'm in this situation, I'll try
   just
   about anything to talk to a server I can see (bearing in mind the
   time/cost).  What about running nmap against the system to see if port
   135
   (RPC) or any others are, in fact open?  Anyone have a copy of Blaster
   for
   David :-)
  
   On the 13/03/2008 19:18, David W. McSpadden wrote the following:
 
   All of the ps tools come back unable to connect.
   - Original Message - From: Peter van Houten
   [EMAIL PROTECTED]
   To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
   Sent: Thursday, March 13, 2008 12:53 PM
   Subject: Re: Remote server won't allow management
  
  
   Thanks to Mark R. once again:
  
   psexec \\computername -i shutdown -r -t 1
  
   or if you *really* want to shut down no matter what:
  
   pskill -t \\computername svchost.exe
  
   which will kill most instances of the generic host process and
   consequently restart the machine. But as James pointed out, the
   integrity of the RPC channel must be intact.
  
   I have experienced the frustration of being able to ping a system but
   not being able to communicate in any other way else.  This idea would
   be
   useful if one could implement it in Windows:
  
   http://www.securiteam.com/tools/5GP071FG0Q.html
  
  
   *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:* 13
   March
   2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote server
   won't allow management
  
   If it won't take a remote shutdown command (from the ResKit), then
   it
is probably out of reach. Most stuff relies on some form of RPC
   communication. I sometimes use pskill to kill the winlogon process
   which generally makes it bluescreen, but this may not work either in
   diagnostic mode
  
   
  
  
   *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
   2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote server
   won't allow management
  
   Nope.
  
   - Original Message -
  
   *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
   System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
   *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote
   server
   won't allow management
  
   Take it it doesn't have a DRAC/RIB/ILO installed?
  
   
  
  
   *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13 March
   2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server
   won't
   allow management
  
   I have a remote server I would like to get into but is was last
   restarted in Diag mode from MSCONFIG.
  
   There is no one at the remote site.  Is there a way to get it
   unstuck?
  
   I can ping it but that is all.
  
   ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
   ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~
  
   __
   This email has been scanned by the MessageLabs Email Security System.
   For more information please visit http://www.messagelabs.com/email
   __
  
 
 
  ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
  ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~
 
 
 
 
  --
  ME2

 
  ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
  ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~
 
  __
  This email has been scanned by the MessageLabs Email Security System.
  For more information please visit http://www.messagelabs.com/email
  __
 


 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ 

TriGEO Log Correlation Appliance

2008-03-13 Thread Mike French
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Anybody using the TriGEO SIM Appliance (http://www.trigeo.com/)? I've
been trough a couple of WebEX's and it looks promising, we audit quite a
bit here and with syslog in the mix, we need a solution to normalize,
correlate and possibly remediate. Their offering even takes care of USB
storage without extra cost. Their rule based but looks easy to setup and
alert. I haven't found many out there doing this, SNARE comes to mind
but, I want a little more out of the data collection. Anybody have any
idea's? 

MIKE FRENCH
NETWORK ENGINEER
~EQUITY BANK

-BEGIN PGP SIGNATURE-
Version: PGP Universal 2.6.3
Charset: us-ascii

wsBVAwUBR9mPg3sd9fh7bf6mAQjvMQgAjrLAkQuCGPdOobFqygENnat6ZWBGSl3t
aJh1qeiD4z8YpxqCInZoOnmQAQzfS5h/GWBxrf0S235nC9uCJz1KcISze9STv/46
c3qCkJIQJ1fMG5QvL+HGsmymJhGs4b4zanXUji5f2/dKDPFtGzctykrvSK1QgUWw
hiyeMSWRfOGmiu805eeYOuJb0Bl1W4msndz+wQiMrGWG1MYyo7fQl8Fe2iE/w0r+
lSUF2xblfxa1S8rH8eXDCTWEwDRviIjqgiwBLkV6YNgd2xVIDvE34m/RDzwG7i2x
TxlrRzPxJOWQV0Ir3KEagZbvSC4JF7wmLwkI1S7TjPpWfAx4ImDyag==
=5nQu
-END PGP SIGNATURE-

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~


RE: Remote server won't allow management

2008-03-13 Thread Christopher Boggs
Bah, I just did a quick scan to see if it was up, as it wasn't
responding to pings...  Whether or not the SQL instance is actually
responding I don't know, I'm not stupid enough to go hacking some IP
posted to a mailing list :)

-cb

-Original Message-
From: Joe Heaton [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 3:09 PM
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

I believe Christopher would argue that point... 


Joe Heaton

-Original Message-
From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:58 PM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

I am sorry for your upset stomach and ringing in your ears but it's
true.
Actually, it's worthless.  The way the DMZ is setup you can't even see
it from the outside world so it doesn't get much play.

- Original Message -
From: Micheal Espinola Jr [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:44 PM
Subject: Re: Remote server won't allow management


 1.  I cant beleive you said that outloud.
 2.  I cant beleive its true.


 On Thu, Mar 13, 2008 at 2:43 PM, David W. McSpadden [EMAIL PROTECTED] 
 wrote:
 It does has SQL 2000 on it.  With a blank SA password...
 - Original Message -
 From: Peter van Houten [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:30 PM
 Subject: Re: Remote server won't allow management


  Going out on a limb but I know when I'm in this situation, I'll try

  just
  about anything to talk to a server I can see (bearing in mind the
  time/cost).  What about running nmap against the system to see if
port 
  135
  (RPC) or any others are, in fact open?  Anyone have a copy of
Blaster 
  for
  David :-)
 
  On the 13/03/2008 19:18, David W. McSpadden wrote the following:

  All of the ps tools come back unable to connect.
  - Original Message - From: Peter van Houten
  [EMAIL PROTECTED]
  To: NT System Admin Issues
ntsysadmin@lyris.sunbelt-software.com
  Sent: Thursday, March 13, 2008 12:53 PM
  Subject: Re: Remote server won't allow management
 
 
  Thanks to Mark R. once again:
 
  psexec \\computername -i shutdown -r -t 1
 
  or if you *really* want to shut down no matter what:
 
  pskill -t \\computername svchost.exe
 
  which will kill most instances of the generic host process and
  consequently restart the machine. But as James pointed out, the
  integrity of the RPC channel must be intact.
 
  I have experienced the frustration of being able to ping a system
but
  not being able to communicate in any other way else.  This idea
would 
  be
  useful if one could implement it in Windows:
 
  http://www.securiteam.com/tools/5GP071FG0Q.html
 
 
  *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:*
13 
  March
  2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote
server
  won't allow management
 
  If it won't take a remote shutdown command (from the ResKit),
then 
  it
   is probably out of reach. Most stuff relies on some form of RPC
  communication. I sometimes use pskill to kill the winlogon
process
  which generally makes it bluescreen, but this may not work
either in
  diagnostic mode
 
 

 
 
  *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13
March
  2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote
server
  won't allow management
 
  Nope.
 
  - Original Message -
 
  *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
  System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com
  *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote 
  server
  won't allow management
 
  Take it it doesn't have a DRAC/RIB/ILO installed?
 
 

 
 
  *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13
March
  2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server

  won't
  allow management
 
  I have a remote server I would like to get into but is was last
  restarted in Diag mode from MSCONFIG.
 
  There is no one at the remote site.  Is there a way to get it 
  unstuck?
 
  I can ping it but that is all.
 
  ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
  ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~
 
 
__
  This email has been scanned by the MessageLabs Email Security
System.
  For more information please visit http://www.messagelabs.com/email
 
__
 


 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
 ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~




 -- 
 ME2

 ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!

RE: Remote server won't allow management

2008-03-13 Thread Jim Majorowicz
The cake is a lie.

 

Oh wait.  We're talking about fireballs.  The sun is a myth.

 

From: Joe Heaton [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 7:23 AM
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

 

Sounds like a 4 hour drive out there may be less expensive than paying ATT
to go there.  And you get fresh air, and you get to see that big ball of
fire that people say is in the sky... 

 

Joe Heaton

 

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 4:54 AM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

Thanks.

- Original Message - 

From: Rankin, James R mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:52 AM

Subject: RE: Remote server won't allow management

 

http://h18013.www1.hp.com/products/servers/management/ilo/

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:45
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

I wonder if HP has something like a DRAC.

- Original Message - 

From: Rankin, James R mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:47 AM

Subject: RE: Remote server won't allow management

 

That $180 per hour would surely be better placed towards getting a DRAC
bunged in

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:41
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

That's what I am figuring on.

But they cost $180 hour to show up.

It sits in an ATT data center 4 hours from my location.

It is my 'backup' DC for AD.  No real worries today but just would like to
not have to pay ATT to start it up and 

mssonfig it back to normal

- Original Message - 

From: Ames Matthew B mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:40 AM

Subject: RE: Remote server won't allow management

 

so that leaves the option of somehow causing the machine to bluescreen and
hope it then reboots.

 

What does the server do?  if it is on a remote site with no bodies there,
is its unavailably going to be an issue until a body arrives on site? (who
could then possibly manually reboot it/power cycle it for you)

 

  _  

From: Rankin, James R [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:38
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

If it won't take a remote shutdown command (from the ResKit), then it is
probably out of reach. Most stuff relies on some form of RPC communication.
I sometimes use pskill to kill the winlogon process which generally makes it
bluescreen, but this may not work either in diagnostic mode

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:30
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

 

Nope.

 

- Original Message - 

From: Rankin, James R mailto:[EMAIL PROTECTED]  

To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com  

Sent: Thursday, March 13, 2008 7:29 AM

Subject: RE: Remote server won't allow management

 

Take it it doesn't have a DRAC/RIB/ILO installed?

 

  _  

From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: 13 March 2008 11:20
To: NT System Admin Issues
Subject: Remote server won't allow management

 

I have a remote server I would like to get into but is was last restarted in
Diag mode from MSCONFIG.

There is no one at the remote site.  Is there a way to get it unstuck?

I can ping it but that is all.

 

 

 

 














 














 
 














 














 
 
 
__













 














 
 














 














 
 
 
This email has been scanned by the MessageLabs Email Security System.













 














 
 














 














 
 
 
For more information please visit http://www.messagelabs.com/email 













 














 
 














 














 
 
 
__













 














 
 














 














 
 
 
 
 
 

 

 

 

 
 

The information contained in this E-Mail and any subsequent 
correspondence is private and is intended solely for the intended 
recipient(s).  The information in this communication may be 
confidential and/or legally privileged.  Nothing in this e-mail is 
intended to conclude a contract on behalf of QinetiQ or make QinetiQ 
subject to any other legally binding commitments, unless the e-mail 
contains an express statement to the contrary or incorporates a formal
Purchase Order.

For those other 

RE: Remote server won't allow management

2008-03-13 Thread Jim Majorowicz
I'm sure there would be a nice slice of cake in it for you if you did...

-Original Message-
From: Christopher Boggs [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 1:42 PM
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

Bah, I just did a quick scan to see if it was up, as it wasn't
responding to pings...  Whether or not the SQL instance is actually
responding I don't know, I'm not stupid enough to go hacking some IP
posted to a mailing list :)

-cb

-Original Message-
From: Joe Heaton [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 3:09 PM
To: NT System Admin Issues
Subject: RE: Remote server won't allow management

I believe Christopher would argue that point... 


Joe Heaton

-Original Message-
From: David W. McSpadden [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 13, 2008 12:58 PM
To: NT System Admin Issues
Subject: Re: Remote server won't allow management

I am sorry for your upset stomach and ringing in your ears but it's
true.
Actually, it's worthless.  The way the DMZ is setup you can't even see
it from the outside world so it doesn't get much play.

- Original Message -
From: Micheal Espinola Jr [EMAIL PROTECTED]
To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
Sent: Thursday, March 13, 2008 3:44 PM
Subject: Re: Remote server won't allow management


 1.  I cant beleive you said that outloud.
 2.  I cant beleive its true.


 On Thu, Mar 13, 2008 at 2:43 PM, David W. McSpadden [EMAIL PROTECTED] 
 wrote:
 It does has SQL 2000 on it.  With a blank SA password...
 - Original Message -
 From: Peter van Houten [EMAIL PROTECTED]
 To: NT System Admin Issues ntsysadmin@lyris.sunbelt-software.com
 Sent: Thursday, March 13, 2008 2:30 PM
 Subject: Re: Remote server won't allow management


  Going out on a limb but I know when I'm in this situation, I'll try

  just
  about anything to talk to a server I can see (bearing in mind the
  time/cost).  What about running nmap against the system to see if
port 
  135
  (RPC) or any others are, in fact open?  Anyone have a copy of
Blaster 
  for
  David :-)
 
  On the 13/03/2008 19:18, David W. McSpadden wrote the following:

  All of the ps tools come back unable to connect.
  - Original Message - From: Peter van Houten
  [EMAIL PROTECTED]
  To: NT System Admin Issues
ntsysadmin@lyris.sunbelt-software.com
  Sent: Thursday, March 13, 2008 12:53 PM
  Subject: Re: Remote server won't allow management
 
 
  Thanks to Mark R. once again:
 
  psexec \\computername -i shutdown -r -t 1
 
  or if you *really* want to shut down no matter what:
 
  pskill -t \\computername svchost.exe
 
  which will kill most instances of the generic host process and
  consequently restart the machine. But as James pointed out, the
  integrity of the RPC channel must be intact.
 
  I have experienced the frustration of being able to ping a system
but
  not being able to communicate in any other way else.  This idea
would 
  be
  useful if one could implement it in Windows:
 
  http://www.securiteam.com/tools/5GP071FG0Q.html
 
 
  *From:* Rankin, James R [mailto:[EMAIL PROTECTED] *Sent:*
13 
  March
  2008 11:38 *To:* NT System Admin Issues *Subject:* RE: Remote
server
  won't allow management
 
  If it won't take a remote shutdown command (from the ResKit),
then 
  it
   is probably out of reach. Most stuff relies on some form of RPC
  communication. I sometimes use pskill to kill the winlogon
process
  which generally makes it bluescreen, but this may not work
either in
  diagnostic mode
 
 

 
 
  *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13
March
  2008 11:30 *To:* NT System Admin Issues *Subject:* Re: Remote
server
  won't allow management
 
  Nope.
 
  - Original Message -
 
  *From:* Rankin, James R mailto:[EMAIL PROTECTED] *To:* NT
  System Admin Issues
mailto:ntsysadmin@lyris.sunbelt-software.com
  *Sent:* Thursday, March 13, 2008 7:29 AM *Subject:* RE: Remote 
  server
  won't allow management
 
  Take it it doesn't have a DRAC/RIB/ILO installed?
 
 

 
 
  *From:* David W. McSpadden [mailto:[EMAIL PROTECTED] *Sent:* 13
March
  2008 11:20 *To:* NT System Admin Issues *Subject:* Remote server

  won't
  allow management
 
  I have a remote server I would like to get into but is was last
  restarted in Diag mode from MSCONFIG.
 
  There is no one at the remote site.  Is there a way to get it 
  unstuck?
 
  I can ping it but that is all.
 
  ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
  ~ http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm  ~
 
 
__
  This email has been scanned by the MessageLabs Email Security
System.
  For more information please visit http://www.messagelabs.com/email
 

Re: Remote server won't allow management

2008-03-13 Thread Salvador Manzo
(singing)The Sun is a mass of incandescent gas, a gigantic nuclear furnace/
Where hydrogen is burned into hee-lee-ium at a temperature of millions of
degrees


On 3/13/08 1:45 PM, Jim Majorowicz [EMAIL PROTECTED] wrote:

 The cake is a lieŠ
  
 Oh wait.  We¹re talking about fireballs.  The sun is a mythŠ
  
 
 From: Joe Heaton [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 13, 2008 7:23 AM
 To: NT System Admin Issues
 Subject: RE: Remote server won't allow management
  
 Sounds like a 4 hour drive out there may be less expensive than paying ATT to
 go there.  And you get fresh air, and you get to see that big ball of fire
 that people say is in the sky...
 
  
 Joe Heaton
 
  
  
 
 
 From: David W. McSpadden [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 13, 2008 4:54 AM
 To: NT System Admin Issues
 Subject: Re: Remote server won't allow management
 
 Thanks.
 
 - Original Message -
 
 From: Rankin, James R mailto:[EMAIL PROTECTED]
 
 To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 
 Sent: Thursday, March 13, 2008 7:52 AM
 
 Subject: RE: Remote server won't allow management
 
  
 http://h18013.www1.hp.com/products/servers/management/ilo/
  
 
 
 From: David W. McSpadden [mailto:[EMAIL PROTECTED]
 Sent: 13 March 2008 11:45
 To: NT System Admin Issues
 Subject: Re: Remote server won't allow management
  
 
 I wonder if HP has something like a DRAC.
 
 - Original Message -
 
 From: Rankin, James R mailto:[EMAIL PROTECTED]
 
 To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 
 Sent: Thursday, March 13, 2008 7:47 AM
 
 Subject: RE: Remote server won't allow management
 
  
 That $180 per hour would surely be better placed towards getting a DRAC
 bunged in
  
 
 
 From: David W. McSpadden [mailto:[EMAIL PROTECTED]
 Sent: 13 March 2008 11:41
 To: NT System Admin Issues
 Subject: Re: Remote server won't allow management
  
 
 That's what I am figuring on.
 
 But they cost $180 hour to show up.
 
 It sits in an ATT data center 4 hours from my location.
 
 It is my 'backup' DC for AD.  No real worries today but just would like to
 not have to pay ATT to start it up and
 
 mssonfig it back to normal
 
 - Original Message -
 
 From: Ames Matthew B mailto:[EMAIL PROTECTED]
 
 To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 
 Sent: Thursday, March 13, 2008 7:40 AM
 
 Subject: RE: Remote server won't allow management
 
  
 so that leaves the option of somehow causing the machine to bluescreen and
 hope it then reboots.
  
 What does the server do?  if it is on a remote site with no bodies there,
 is its unavailably going to be an issue until a body arrives on site? (who
 could then possibly manually reboot it/power cycle it for you)
  
 
 
 From: Rankin, James R [mailto:[EMAIL PROTECTED]
 Sent: 13 March 2008 11:38
 To: NT System Admin Issues
 Subject: RE: Remote server won't allow management
 If it won¹t take a remote shutdown command (from the ResKit), then it is
 probably out of reach. Most stuff relies on some form of RPC communication.
 I sometimes use pskill to kill the winlogon process which generally makes
 it bluescreen, but this may not work either in diagnostic mode
  
 
 
 From: David W. McSpadden [mailto:[EMAIL PROTECTED]
 Sent: 13 March 2008 11:30
 To: NT System Admin Issues
 Subject: Re: Remote server won't allow management
  
 
 Nope.
 
  
 
 - Original Message -
 
 From: Rankin, James R mailto:[EMAIL PROTECTED]
 
 To: NT System Admin Issues mailto:ntsysadmin@lyris.sunbelt-software.com
 
 Sent: Thursday, March 13, 2008 7:29 AM
 
 Subject: RE: Remote server won't allow management
 
  
 Take it it doesn¹t have a DRAC/RIB/ILO installed?
  
 
 
 From: David W. McSpadden [mailto:[EMAIL PROTECTED]
 Sent: 13 March 2008 11:20
 To: NT System Admin Issues
 Subject: Remote server won't allow management
  
 
 I have a remote server I would like to get into but is was last restarted
 in Diag mode from MSCONFIG.
 
 There is no one at the remote site.  Is there a way to get it unstuck?
 
 I can ping it but that is all.
  
  
  
  
 
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
 
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
  
 __
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
 
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
  
 This email has been scanned by the MessageLabs Email Security System.
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
 
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
  
 For more information please visit http://www.messagelabs.com/email
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
 
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
  
 __
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
 
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
  
  
  
  
  
  
  
  
  
  
  
 The information contained in this E-Mail and any subsequent
 correspondence is private and is intended solely for the intended
 recipient(s).  The information in 

  1   2   >