home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / chipcd20010102.iso / software / utilities / autoit / AutoIt_242.exe / %MAINDIR% / Examples / Comspec.aut < prev    next >
Encoding:
Text File  |  2000-11-28  |  391 b   |  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.