시작 - 실행 선택후
shutdown [option]... time
 
옵션 설명
  -f, --force      Forces the execution.
  -s, --shutdown   The system will shutdown and power off (if supported)
  -r, --reboot     The system will reboot.
  -h, --hibernate  The system will suspend to disk (if supported)
  -p, --suspend    The system will suspend to RAM (if supported)
  -a, --abort      Aborts execution of formerly started shutdown.
  -x, --exitex     Use ExitWindowsEx rather than InitateSystemShutdown.
      --help       Display this help and exit.
 
shutdown 명령어와 옵션을 주면 됩니다.
shutdown -s -t 100                 - 100초 뒤 컴퓨터 종료
shutdown -a                          - shutdown을 취소.
shutdown -r -t 10                   - 10초 뒤 재부팅
shutdown -s -f                       - 30초 뒤 강제 종료(응답없는 프로그램 강제 종료 후 컴퓨터 종료, 시간 옵션이 없으면 기본 30초)

+ Recent posts