2

Is it possible to extend the valid range to the DOS shutdown command in Windows Server 2003? The help shows a maximum time-out period at 600 seconds.

HopelessN00b
  • 53,795
  • 33
  • 135
  • 209
ITAlin
  • 57
  • 8

2 Answers2

2

You can try using the at command to push it off to a later time:

at 9:30 shutdown -t 30 -f -s
Tradiuz
  • 127
  • 1
  • 9
1

Not possible. However, as an alternative, you could create a scheduled task to run shutdown.exe x number of seconds from the current time, using a powershell script. Or, better yet, use powershell's set-sleep in a script to delay executing shutdown.exe until You're ready.

MDMoore313
  • 5,581
  • 6
  • 36
  • 75