-Q- Posted August 7, 2007 Posted August 7, 2007 Gents,I've gor a problem with my RIS installation. When my client is installed, the local administrator logs on for 1 time. In this session I want to installed my default applications by using a VB-script. But when the logon completes XP asks me to "OK" the vb-script. Is there a way to kick off the vb-script without any questions?-Q-
boredazfcuk Posted August 21, 2007 Posted August 21, 2007 myscript.vbs will run another .vbs script without the prompt.myscript.vbs:Dim WSHShell, WshEnvSet WSHShell = CreateObject("WScript.Shell")Set WSHEnv = WSHShell.Environment("PROCESS")WSHEnv("SEE_MASK_NOZONECHECKS") = 1WSHShell.Run "\\MYDOMAIN\NETLOGON\scripts\login\calledvbs.vbs",1,TrueWSHEnv.Remove("SEE_MASK_NOZONECHECKS")call it from a batch file...@echo offsetlocal extensionsenablecscript \\server\netlogon\scripts\login\myscript.vbs //nologoexityou'll need to modify those files to suit your needs.
Henkes Posted August 28, 2007 Posted August 28, 2007 How do you call the vbscript, by just using the vbscript.vbs?or do you use a batch file which contains:call cscript somescript.vbs //nologoexit
meeuws Posted August 29, 2007 Posted August 29, 2007 I always set the command shell as defaulf handler in for script via the 'cscript //H:cscript' command. In fact thats the first command in my own ris install script.
boredazfcuk Posted September 4, 2007 Posted September 4, 2007 How do you call the vbscript, by just using the vbscript.vbs?or do you use a batch file which contains:call cscript somescript.vbs //nologoexityescall cscript somescript.vbs //nologothis way i don't get prompted to run somescript.vbssomescript.vbs removes the zone checks that bring up the 'ok' prompt.then it calls a bunch of other scripts that need wscript to run...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now