myscript.vbs will run another .vbs  script without the prompt. myscript.vbs:   Dim WSHShell, WshEnv Set WSHShell = CreateObject("WScript.Shell") Set WSHEnv = WSHShell.Environment("PROCESS") WSHEnv("SEE_MASK_NOZONECHECKS") = 1 WSHShell.Run "\\MYDOMAIN\NETLOGON\scripts\login\calledvbs.vbs",1,True WSHEnv.Remove("SEE_MASK_NOZONECHECKS") call it from a batch file...   @echo off setlocal extensionsenable cscript \\server\netlogon\scripts\login\myscript.vbs //nologo exit  you'll need to modify those files to suit your needs.