윈도우 자동 종료 타이머 프로그램 (오토핫키)
학교 선배가 윈도우 자동 종료해주는 타이머 프로그램을 만들어달라고 이야기하셨다
자동 종료 프로그램은 많지만, 혹시 모르는 악성 프로그램이 많아서 함부로 다운받아서 회사에서 쓰기에는 곤란하다고 하셨다.
그래서 오토핫키로 간단하게 만들어보았다(베꼈다..)
첨부 파일 다운로드 ↓↓↓
첨부 파일 다운로드 ↑↑↑
소스코드 :
#shutdown.ahk
#SingleInstance Force
#NoEnv
Gui, Add, Text, x50 y30 w200 h20, 종료 예약 시간을 설정하세요 ;
Gui, Add, Edit, x30 y60 w25 h20 vhour, 2 ;
Gui, Add, Text, x60 y65 w40 h20, 시간 ;
Gui, Add, Edit, x100 y60 w25 h20 vmin, 0 ;
Gui, Add, Text, x130 y65 w25 h20, 분 ;
Gui, Add, Edit, x160 y60 w25 h20 vsec, 0 ;
Gui, Add, Text, x190 y65 w150 h20, 초 후 종료하도록 ;
Gui, Add, Button, x50 y100 w200 h20, 설정 ;
Gui, Add, Text, x50 y140 w200 h20, ※ 닫으면 자동종료가 취소됩니다.
Gui, Show, w300 h170 , 윈도우 자동 종료 타이머
CoordMode, Pixel
CoordMode, Mouse
return
Button설정:
{
Gui, Submit, nohide
tot :=hour*3600+min*60+sec
Run, shutdown -f -s -t %tot% -c " "
GuiControl, disable, 설정
FormatTime, currentDate,,yyyyMMddHHmmss
currentDate += tot, seconds
FormatTime, shutdownTime,%currentDate%,yyyy-MM-dd HH:mm:ss
GuiControl, Text, 설정, 종료시간 %shutdownTime%
}
return
ESC::goto GUIClose
return
GUIClose:
Run, shutdown -a
ExitApp
return
소스파일 원본 :
참조 및 출처 : https://autohotkey4auto.tistory.com/39
'기타 자료' 카테고리의 다른 글
온라인 테트리스(무료) (0) | 2022.08.12 |
---|---|
Vampire Survivors 아이템 및 스킬 조합 (0) | 2022.01.22 |
넷플릭스 오류 D7361-1254 (엣지) (0) | 2021.09.20 |
부대찌개(평산식품) 후기 (0) | 2019.10.13 |
ASRock Z97 Extreme4 (0) | 2018.09.30 |