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
/
Comspec.aut
< prev
next >
Wrap
Text File
|
1999-09-14
|
391b
|
19 lines
; Example Script
; ==============
;
; OS: Windows 9x/NT
; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
;
; Creates a file called C:\hello.txt using the command.com command
; Echo and redirection
MsgBox, 4, AutoIt Example, Uses \%COMSPEC\% to pipe text to a file. Run?
IfMsgBox, NO, Goto, denied
Run, %COMSPEC% /C Echo Hello > C:\\Hello.txt
denied:
Exit