Related Posts Plugin for WordPress, Blogger...

Thursday 24 March 2011

Create your own shutdown timer

Windows DOS has a shutdown command which can be used as a shutdown timer, as per our time requirements. It can be used for other functions like Logging off, Restarting etc.

Another pranky feature of this commend is, it allows you to shutdown remote computers. But remember, the remote computer you are trying to shutdown should be running with administrative privileges or the remote shutdown facility should not have been disabled.

Syntax:
shutdown -s -t "number of seconds to shutdown" (without quotes)

Example:
shutdown -s -t 120
[This will shutdown your computer within 120 seconds]

To shutdown a remote computer which is present on the same network enter shutdown -s -m 192.168.1.10 -t 100.

To abort a scheduled shutdown enter shutdown -a


The -s parameter in the command specifies that it is going to shutdown the computer. Likewise you can use -r option to restart and -l to logoff.

Type shutdown /help to see a list of options that you can use with shutdown command for different purposes.

Hint:
Type shutdown -i to get a GUI window to do your task easily.

0 comments

Post a Comment