home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / software / vyzkuste / autoit / autoit-v3-setup.exe / Include / Process.au3 < prev    next >
Text File  |  2005-01-11  |  1KB  |  27 lines

  1. #include-once
  2.  
  3. ; ------------------------------------------------------------------------------
  4. ;
  5. ; AutoIt Version: 3.0
  6. ; Language:       English
  7. ; Description:    Functions that assist with process management.
  8. ;
  9. ; ------------------------------------------------------------------------------
  10.  
  11.  
  12. ;===============================================================================
  13. ;
  14. ; Description:      Executes a DOS command in a hidden command window.
  15. ; Syntax:           _RunDOS( $sCommand )
  16. ; Parameter(s):     $sCommand - Command to execute
  17. ; Requirement(s):   None
  18. ; Return Value(s):  On Success - Returns the exit code of the command
  19. ;                   On Failure - Depends on RunErrorsFatal setting
  20. ; Author(s):        Jeremy Landes <jlandes@landeserve.com>
  21. ; Note(s):          None
  22. ;
  23. ;===============================================================================
  24. Func _RunDOS($sCommand)
  25.     Return RunWait(@ComSpec & " /C " & $sCommand, "", @SW_HIDE)
  26. EndFunc   ;==>_RunDOS
  27.