'shutdown'에 해당되는 글 2건

 
  1. 2020.09.18 [MAC,WINDOWS] 맥북, 윈도우에서 컴퓨터 원하는 시간에 끄기, 예약종료
  2. 2014.05.24 [WINDOWS/XML] 예약작업으로 컴퓨터 끄기, 자동 셧다운 스크립트, Windows System Task Scheduler Auto Shutdown
2020. 9. 18. 16:11 MACINTOSH
[MAC,WINDOWS] 맥북, 윈도우에서 컴퓨터 원하는 시간에 끄기, 예약종료

커맨드나 터미널을 이용하면 컴퓨터를 원하는 시간에 종료할 수 있습니다. 당장도 되고,,,
스케줄을 걸어서 새벽에 자동으로 꺼지게 할수도 있습니다.

 

 

 

맥 예약종료 파라미터 설명

# 종료
-h, -H, -P

# 재가동, 리부팅
-r

# 잠자기, 슬립
-s

# 지금, 현재
now

# 시간 설정
YYMMDDHHMM

# 취소
-c

 


맥 예약종료 명령어

# 잠자기
sudo shutdown -s now

# 시스템 재가동
sudo shutdown -r now

# 시스템 종료
sudo shutdown -h now

# 1시간(60분) 후에 시스템 종료
sudo shutdown -h +60

# 2020년 9월 21일 19시 36분에 재가동
sudo shutdown -r 2009211936

# 저녁 9시 21분에 잠자기
sudo shutdown -s 21:21

# 예약 취소
sudo shutdown -c

 





 

윈도우 예약종료 파라미터 설명

# 시간 설정
-t X

# 강제 여부
-f

# 종료
-s

# 재가동, 리부팅
-r

# 이전 예약 취소
-a

 


윈도우 예약종료 명령어

# 1시간(3600초) 후에 강제로 종료
shutdown -f -s -t 3600

# 30분(1800초) 후에 강제 재부팅
shutdown -f -r -t 1800
2014. 5. 24. 17:30 WINDOWS
[WINDOWS/XML] 예약작업으로 컴퓨터 끄기, 자동 셧다운 스크립트, Windows System Task Scheduler Auto Shutdown

Start > Control Panel > Administrative Tools > Task Scheduler

Menu > Action > Import Task


예약작업에서 임포트 해주는 스크립트 입니다.

이 스크립트는 새벽 1시 50분에 컴퓨터를 5분 후에 종료시킵니다.

만약, 컴퓨터가 꺼지는 걸 원치 않으면 5분내로





Start > Run (콘솔창, 명령 프롬프트)

#> shutdown -a

라고 명령하시면 됩니다.


Shutdown.xml

파일에 Ahutor값 Computer\AHKi를 '본인의컴퓨터명\사용자명' 으로 변경하세요.






<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
  <RegistrationInfo>
    <Date>2013-10-31T00:14:56.3128127</Date>
    <Author>Computer\AHKi</Author>
  </RegistrationInfo>
  <Triggers>
    <CalendarTrigger>
      <StartBoundary>2013-10-31T01:50:00</StartBoundary>
      <Enabled>true</Enabled>
      <ScheduleByDay>
        <DaysInterval>1</DaysInterval>
      </ScheduleByDay>
    </CalendarTrigger>
  </Triggers>
  <Principals>
    <Principal id="Author">
      <UserId>Computer\AHKi</UserId>
      <LogonType>InteractiveToken</LogonType>
      <RunLevel>LeastPrivilege</RunLevel>
    </Principal>
  </Principals>
  <Settings>
    <MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
    <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
    <StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
    <AllowHardTerminate>true</AllowHardTerminate>
    <StartWhenAvailable>false</StartWhenAvailable>
    <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
    <IdleSettings>
      <Duration>PT10M</Duration>
      <WaitTimeout>PT1H</WaitTimeout>
      <StopOnIdleEnd>true</StopOnIdleEnd>
      <RestartOnIdle>false</RestartOnIdle>
    </IdleSettings>
    <AllowStartOnDemand>true</AllowStartOnDemand>
    <Enabled>true</Enabled>
    <Hidden>false</Hidden>
    <RunOnlyIfIdle>false</RunOnlyIfIdle>
    <WakeToRun>false</WakeToRun>
    <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
    <Priority>7</Priority>
  </Settings>
  <Actions Context="Author">
    <Exec>
      <Command>shutdown</Command>
      <Arguments>-f -s -t 600</Arguments>
    </Exec>
  </Actions>
</Task>





최근에 올라온 글

최근에 달린 댓글