up vote 6 down vote favorite
1
share [g+] share [fb]

I have two servers Server A and Server B i want to Stop server A from Server B remotely using powershell script Can anybody help me on this its urgent. Thank you in advance

link|improve this question

55% accept rate
We need some more information about the configuration of your domain. Are both servers operating in the same domain that a single user account has equivalent permissions on the server? – Chris Marisic Aug 31 '09 at 12:55
Also this question should probably be moved to server fault. – Chris Marisic Aug 31 '09 at 13:00
feedback

3 Answers

up vote 4 down vote accepted

One of the simplest ways to do this is really with just a command line execution using PsExec. And send over to the machines

IISReset /STOP or /START or /RESTART

So you'd do something like this

PsExec \\Server2 -u Administrator -p somePassword IISReset /STOP

Just be careful with password management if you go this route or any route that involves some type of admin level account impersonation so that no one can get a plain text copy of the admin password.

link|improve this answer
feedback

Because you asked for Powershell:

(Get-WmiObject Win32_Service -ComputerName ServerA -Filter "Name='iisadmin'").InvokeMethod("StopService", $null) 

Agreed this question should be moved to ServerFault.

link|improve this answer
feedback
$service = Get-WmiObject -computer 'ServerA' Win32_Service -Filter "Name='IISAdmin'"
$service
$service.InvokeMethod('StopService',$Null)
start-sleep -s 5
$service.InvokeMethod('StartService',$Null)
start-sleep -s 5
$service.State

$service = Get-WmiObject -computer 'ServerB' Win32_Service -Filter "Name='IISAdmin'"
$service
$service.InvokeMethod('StopService',$Null)
start-sleep -s 5
$service.InvokeMethod('StartService',$Null)
start-sleep -s 5
$service.State
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.