Hopefully this is something simple I’m missing but I’m trying to figure out why I can’t launch a newly created vb .net app using a vbscript that has no trouble launching other .exe files.
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "WindowsApplication5.exe" & Chr(34), 0
Set WshShell = Nothing
The app can be started manually with no problems just like any other .exe but this .vbs script treats it differently for some reason. Any help would be great.
I’ll put it as an answer to ease this up: