This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set WshShell = WScript.CreateObject ("WScript.Shell") | |
Set colProcessList = GetObject("Winmgmts:").ExecQuery ("Select * from Win32_Process") | |
'Check if Corona is already running | |
For Each objProcess in colProcessList | |
If objProcess.name = "Corona Simulator.exe" then | |
vFound = True | |
End if | |
Next | |
If vFound = True then |