Assuming you want a complete shell command line (single “piece”) to schedule an exclusive shutdown in 1 hour:

How to Use It

  1. Press Windows Key + R to open the Run dialog.
  2. Type cmd and press Enter.
  3. Type the command: shutdown /s /t 3600 /exclusive
  4. Press Enter.
Write-Host "Starting 1-hour shutdown timer..."
Start-Sleep -Seconds 3540
Write-Host "Last 60 seconds! Save your work."
Start-Sleep -Seconds 60
shutdown -s -t 0

Force shutdown: Closes all open programs immediately without warning when the timer hits zero. shutdown -r -t 3600

Targeted Digest: "shutdown s t 3600 exclusive"

Context and intent

shutdown -s -t 3600 -m \\ComputerName -f

Right-click the Start button and select Terminal, Command Prompt, or PowerShell. Type the command and press Enter. This is the best method if you want to see specific error messages or confirmations. 3. Creating a Desktop Shortcut (The "One-Click" Method)