If WScript.Arguments.Count <> 1 Then WScript.Echo "Runs an application invisibly. Usage:" & vbCrLf & "Wscript.exe " & WScript.ScriptName & " ""C:\Path\Program.exe""" & vbCrLf & "Where ""C:\Path\Program.exe"" is the path to any program, script, or batch file." Else CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False End If