OK so I don't know anythiug about stand alone vbs scripts but this bit of code opens notepad from a .vbs file

Code:

Option Explicit 

Dim oShell

Set oShell = WScript.CreateObject("WScript.Shell")

oShell.Run "notepad.exe", 1, FALSE

WScript.Quit