home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 April
/
PCWorld_2001-04_cd.bin
/
Software
/
Vyzkuste
/
autoit
/
AutoIt.exe
/
AutoIt.msi
/
Cabs.w1.cab
/
Shutdown98.aut
< prev
next >
Wrap
Text File
|
1999-09-14
|
432b
|
22 lines
; Example Script
; ==============
;
; OS: Windows 9x
; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
;
; Will shutdown Windows98. Remove the MsgBox lines if you don't want
; to be prompted
;
MsgBox, 4, AutoIt Example, Really shutdown windows?
IfMsgBox, NO, Goto, denied
WinMinimizeAll
WinActivate, Program Manager
Send, !{F4}
WinWaitActive, Shut Down Windows
Send, !s
Send, {ENTER}
denied:
Exit