Set WinScriptHost = CreateObject("WScript.Shell") WinScriptHost.Run Chr(34) & "x:/path/to/script.cmd" & Chr(34), 0 Set WinScriptHost = NothingThe 0 is the magic number as it tells the script to hide the window.
The Chr(34) is quotes, if the path to your script contains spaces.
Save the code as a .vbs file and you should be able to double-click or schedule it like any other executable.