반응형
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- if(식)
- SetEnv
- ControlSend
- SetTitleMatchMode
- Threads
- API
- 배열
- 식의 설명
- IfInString
- EnvAdd
- MouseClick
- EnvMult
- 함수
- IF (식)
- Var:=식
- Menu
- StringGetPos
- ControlGetText
- SetKeyDelay
- EnvDiv
- DetectHiddenWindows
- EnvSet
- SetMouseDelay
- autohotkey
- SetControlDelay
- Blocks
- EnvSub
- 식
- if
- IfWinExist
Archives
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
Shutdown 시스템을 종료, 재기동, 로그 오프 한다 본문
반응형
Shutdown
시스템을 종료, 재기동, 로그 오프 한다
Shutdown, Code
Parameters
인수명 | 설명 |
---|---|
Code | 이하의 것의 화
|
Remarks
OnExit써브루틴을 설정해 두어, 「A_ExitReason」변수를 조사하면, 유저가 슛다운이나 로그 오프를 실시하려고 한 것을 알 수 있다.
Related
Example(s)
; Force a reboot (reboot + force = 2 + 4 = 6): Shutdown, 6
; 중지나 하이바네이트를 실시하고 싶은 경우는, 아래와 같이Windows의API(을)를 호출한다. ; Windows 95/NT4: Since this function does not exist, the following call would have no effect. ; Parameter #1: Pass 1 instead of 0 to hibernate rather than suspend. ; Parameter #2: Pass 1 instead of 0 to request permission from each application prior to suspending. ; Parameter #3: Pass 1 instead of 0 to disable all wake events. DllCall("PowrProf\SetSuspendState", "int", 0, "int", 0, "int", 0)
반응형
'AUTOHOTKEY > 레퍼런스' 카테고리의 다른 글
Sleep 지정 밀리 세컨드 처리를 정지한다 (0) | 2007.11.05 |
---|---|
Sin() 주어진 각도에 대응하는 싸인을 돌려주는 함수 (0) | 2007.11.05 |
SetWorkingDir 스크립트의 작업 디렉토리를 변경 (0) | 2007.11.05 |
SetWinDelay 윈도우 관련 커멘드의 후에 비우는 동안을 지정 (0) | 2007.11.05 |
SetTitleMatchMode 윈도우 관련 커멘드로의 대상 윈도우 검색 방법을 설정한다 (0) | 2007.11.05 |
Comments