2

Need to create a batch file for restarting some services remotely and restarting iis remotely in Admin mode.

Help would be appreciated

Thanks krish

krish
  • 25
  • 3
  • 6
  • Can you give more info - Like which service you want to start? How important is error checking? – RobW Feb 12 '10 at 15:59

3 Answers3

1

SC and net start net stop are the way to go.

MS KB link for SC.

Technet on net commands.

there's also iisrest which is a command line utility specifically for IIS.

Nick Kavadias
  • 10,796
  • 7
  • 37
  • 47
0

Why not just use SC? http://ss64.com/nt/sc.html

Multiverse IT
  • 1,825
  • 9
  • 11
  • I want batch file commands so that i can execute the batch file. – krish Feb 10 '10 at 09:38
  • So... put it in a batch file. A batch file is merely a series of otherwise single command lines. If you read the link I posted, you'd find examples. Examples like: sc \\server1 start schedule sc \\server4 start messenger sc \\server1 stop schedule sc \\server4 stop messenger sc \\webserver stop w3svc sc \\webserver start w3svc – Multiverse IT Feb 10 '10 at 12:03
0

+1 for SC

To elevate past UAC (if that is what you mean by run with admin privileges) you can use elevate.cmd - http://technet.microsoft.com/en-us/magazine/2007.06.utilityspotlight.aspx?pr=blog

commandbreak
  • 1,009
  • 5
  • 6