Hi There,
I'm looking to see if there is a way to run multiple RunWait's at the same time, so I can start multiple services at the same time and wait for them all to complete before continuing the script.
Here is my script I was working on last night. Unfortunately, today I realize my attempt achieve this goal didn't pan out as I originally thought. Any thoughts?
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: CHRONOMASTER
Script For:
VMware Workstation 6.5.2
Script Function:
Load VMware and Unload when closed.
#ce ----------------------------------------------------------------------------
; Hide tray icon.
Opt ( "TrayIconHide", 1 )
; Set your VMware Workstation install path here.
$InstallPath = "D:\Program Files\VMware\VMware Workstation\"
Func StartServices ( )
Run ( @comspec & ' /c net start "VMware Authorization Service"', "", @SW_HIDE )
Run ( @comspec & ' /c net start "VMware DHCP Service"', "", @SW_HIDE )
Run ( @comspec & ' /c net start "VMware NAT Service"', "", @SW_HIDE )
EndFunc
; Start Services, Tray and Program.
RunWait ( StartServices ( ) ) ; <---- Last night I was hopping this would work, but it just waits the the function to complete not the programs.
Run ( $InstallPath & "vmware-tray.exe" )
Run ( $InstallPath & "vmware.exe" )
; Wait to close Services and Tray until VMware Workstation is closed.
Do
Sleep ( 20000 ) ; Wait for 20 seconds.
$WinState = ProcessExists ( "vmware.exe" )
If $WinState = 0 Then
ProcessClose ( "vmware-tray.exe" )
Run ( @comspec & ' /c net stop "VMware Authorization Service"', "", @SW_HIDE )
Run ( @comspec & ' /c net stop "VMware DHCP Service"', "", @SW_HIDE )
Run ( @comspec & ' /c net stop "VMware NAT Service"', "", @SW_HIDE )
EndIf
Until $WinState = 0
; Exit Script when done.
Exit