Remote restart of services

  • Thread starter Thread starter Joel
  • Start date Start date
J

Joel

Is there a way I can, with authentication, restart
services on a remote W2K server?
I have used NET START locally but it doesn't appear to
have remote functionality.
If there's anything out of the box that I can run at a
command prompt or include with my VB code, I'd be
grateful to hear about it.

Thanks!
 
Please visit this link
http://support.microsoft.com/default.aspx?scid=kb;en-us;317371&Product=win20
00

HOW TO: Use the Remote Shutdown Tool to Shut Down and Restart a Computer in
Windows 2000
View products that this article applies to.
This article was previously published under Q317371
IN THIS TASK
SUMMARY

Description of the Shutdown.exe Tool
Examples
Troubleshooting
REFERENCES
SUMMARY
This article describes how to use the Remote Shutdown tool (Shutdown.exe)
to shut down and restart a local or remote Windows 2000-based or Microsoft
Windows NT 4.0-based computer.

Shutdown.exe is available in the Microsoft Windows 2000 Resource Kit. It is
a command-line tool that you can use to shut down or restart a local or
remote computer that is running Windows 2000 or Windows NT 4.0. If you want
to schedule a computer to shut down and restart at a specific time, use
Shutdown.exe in combination with the at command or Task Scheduler.

back to the top
Description of the Shutdown.exe Tool
Shutdown.exe uses the following syntax:
shutdown \\computername /l /a /r /t:xx "msg" /y /c

You can use the following switches with Shutdown.exe:
\\computername: Use this switch to specify the remote computer to shut
down. If you omit this parameter, the local computer name is used.
/l (Note that this is a lowercase "L" character): Use this switch to shut
down the local computer
/a: Use this switch to quit a shutdown operation. You can do this only
during the time-out period. If you use this switch, all other parameters
are ignored.
/r: Use this switch to restart the computer instead of fully shutting it
down.
/t:xx: Use this switch to specify the time (in seconds) after which the
computer is shut down. The default is 20 seconds.
"msg": Use this switch to specify a message during the shutdown process.
The maximum number of characters that the message can contain is 127.
/y: Use this switch to force a "yes" answer to all queries from the
computer.
/c: Use this switch quit all running programs. If you use this switch,
Windows forces all programs that are running to quit. The option to save
any data that may have changed is ignored. This can result in data loss in
any programs for which data is not previously saved.
back to the top
Examples
To shut down the local computer in two minutes and display a "The computer
is shutting down" message, use the following line in a batch file or type
it at a command prompt, and then press ENTER:
shutdown /l /t:120 "The computer is shutting down" /y /c

To cancel the shutdown process, type the following line at the command
prompt, and then press ENTER:
shutdown /l /a /y

To shut down and restart a remote computer named "Support," use the
following line in a batch file or type it at a command prompt, and then
press ENTER:
shutdown \\support /r

To schedule the local computer to shutdown and restart at 10:00 P.M., type
the following line at a command prompt, and then press ENTER:
at 22:00 shutdown /l /r /y /c

To schedule the local computer to shutdown and restart at 6:00 P.M. every
weekday, type the following line at a command prompt, and then press ENTER:
at 18:00 /every:M,T,W,Th,F shutdown /l /r /y /c

back to the top
Troubleshooting
The specified computer may not shut down when you use the Shutdown.exe tool
to shut it down. This behavior can occur if the Unlock Computer dialog box
appears on the desktop, or if the computer is locked. For additional
information about how to resolve this issue, click the article numbers
below to view the articles in the Microsoft Knowledge Base:
307635 Remote Shutdown Results in Logoff When Unlock Computer Dialog Box Is
Displayed

288180 The ExitWindowsEx() Function May Not Log Off the User or Shut Down
the Computer If the Computer is Locked

back to the top
REFERENCES
For more information about Shutdown.exe, type shutdown /? at the command
prompt, and then press ENTER.

For additional information about how to use the AT command to schedule
tasks in Windows 2000, click the article number below to view the article
in the Microsoft Knowledge Base:
313565 HOW TO: Use the AT Command to Schedule Tasks

For additional information about how to use Task Scheduler to schedule a
task in Windows 2000, click the article number below to view the article in
the Microsoft Knowledge Base:
300160 HOW TO: Schedule a Server Process in Windows 2000

For more information about the Windows 2000 Resource Kit, visit the
following Microsoft Web site:
http://www.microsoft.com/windows2000/techinfo/reskit/default.asp#section1

back to the top



Subbu
This posting is provided "AS IS" with no warranties, and confers no rights.
 
I think what Joel was asking was if there is a way of restarting
Service, not the entire server.

The NET command only offers STOP and START functionality on the loca
server you are working on.

There is a NETSVC command available for free download from the Window
2000 Resource Kit (I have tried to attach it to the thread)

This command allowes you to
/STOP
/START
/PAUSE
/CONTINUE
and /QUERY the services on any server local or remote.


I am still working on how to make it work with VB effectively

Bo

+----------------------------------------------------------------
| Attachment filename: netsvc.zip
|Download attachment: http://www.webservertalk.com/attachment.php?postid=794619
+----------------------------------------------------------------

-
BobBrand
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top