Automatically restarting an application in Windows
Set WshShell = CreateObject("WScript.Shell") Do While True WshShell.Run """<the path to the executable file>""", 1, True Loop
The pairs of double quotes inside the quoted string prevent "file not found" errors if the path contains spaces. The Run method is documented here, in case you want to change the window style (the second argument).