Enter your Keyword, Search here,

How to shutdown your System remotely?

“SHUTCMD.EXE” utility that you can use to shutdown or restart your local or remote computer. You must first logon to the computer that you're trying to reboot.

You can shutdown the local computer by running this command:


SHUTCMD /L

To shutdown a computer on your network ("SERVER" the name of the computer you want to shutdown):

SHUTCMD \\SERVER /Y

To shutdown a remote computer connected to the Internet ("131.200.1.1" being the IP address of that computer you want to shutdown).

SHUTCMD \\131.200.1.1 /Y

For Example,
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

Related:

No comments :

Post a Comment

Comment on this Post!!

More Posts that you may be interested...