Remote Shutdown

shutdown /s /m \\REMOTE-PC /t TIME /c “COMMENT” /f

  • /s is used to shut down the computer.
  • /r is used to reboot the computer.
  • /m \\computer is used to specify the target computer
  • /t is used to set the time-out period before shut down
  • TIME represents the number of seconds to wait before beginning the shut down process
  • /c is used to print comments to the computer screen before rebooting or shutting down
  • COMMENT means the custom dialog you want to send the user
  • /f is used to force running applications to close without forewarning users

Add Feedback