QUOTE (Jamin4u @ Sep 1 2008, 05:40 PM)

If you could give me the basics on how to use the rest I would really appreciate it.
Done via a batch file, just copy and paste the individual code listed below!
Line 1=Shutdown.
Line 2=Pause which allows you to access Line 3 if you want to abort the shutdown by pressing any keyboard key.
Line 3=Abort Shutdown.
Line 4 and 5=Close the batch file Command Prompt window.
CODE
shutdown -s -t 15 -c "System Shutdown"
pause
shutdown -a
cls
exit
Line 1=Restart.
Line 2=Pause which allows you to access Line 3 if you want to abort the restart by pressing any keyboard key.
Line 3=Abort Restart.
Line 4 and 5=Close the batch file Command Prompt window.
CODE
shutdown -r -t 15 -c "System Restart"
pause
shutdown -a
cls
exit
Line 1=Log Off to the Welcome screen. This one cannot be aborted as a countdown timer doesn't work - well at least not in XP it doesn't.
CODE
shutdown -l
cls
exit