Jump to content

Recommended Posts

Posted

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-

  • 2 weeks later...

Posted

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.

Posted

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 //nologo
exit

Posted

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.

Posted
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 //nologo
exit

yes

call cscript somescript.vbs //nologo

this way i don't get prompted to run somescript.vbs

somescript.vbs removes the zone checks that bring up the 'ok' prompt.

then it calls a bunch of other scripts that need wscript to run...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...