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 >
Text File  |  1999-09-14  |  391b  |  19 lines

  1. ; Example Script
  2. ; ==============
  3. ;
  4. ; OS:     Windows 9x/NT
  5. ; Author: Jonathan Bennett (jbennett@hidden.demon.co.uk)
  6. ;
  7. ; Creates a file called C:\hello.txt using the command.com command
  8. ; Echo and redirection
  9.  
  10. MsgBox, 4, AutoIt Example, Uses \%COMSPEC\% to pipe text to a file.  Run?
  11. IfMsgBox, NO, Goto, denied
  12.  
  13. Run, %COMSPEC% /C Echo Hello > C:\\Hello.txt
  14.  
  15. denied:
  16. Exit
  17.  
  18.  
  19.