Is it possible to execute a remote executable using a .vbs script? My below attempt doesn't seem to work (sadly).
Dim objShell
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run("""\\12.345.67.789\filename.exe""")
Set objShell = Nothing