durex Posted February 27, 2005 Posted February 27, 2005 For some reason NAV doesnt like the latest VBScript I just created and prompts with the 'malicious script detected' prompt which you need to grant to run. I run a bunch of scripts in my RunOnceEx after NAV is installed and this is the only one it complains about...Anyone know how I can get around this? Whether it be killing some process or a something particular I need to include in my VBScript so Im not prompted to grant access to run it?Thanks!
gunsmokingman Posted February 28, 2005 Posted February 28, 2005 Could You Have 2 reboots The first one say Install Nav Than Disable anyservices, than run the script, reboot and than have a new runonce start from that point, with the nav now running. That might work.
durex Posted February 28, 2005 Author Posted February 28, 2005 I tried that.. I disabled "Norton Antivirus Auto-Protect Service" and "Symantec Core LC" after it installs... still prompts. I didnt see any other norton/symantec service that should be turned off to prevent this.and again.. not a single other of my vbscripts (out of perhaps 10) that run in my runonceex have this problem.. they all run fine.
gunsmokingman Posted February 28, 2005 Posted February 28, 2005 Could You Run The Vbs Script At CmdLines.txt before nav is installed
durex Posted February 28, 2005 Author Posted February 28, 2005 Suppose I could.. or just run it earlier in my runonce, prior to NAV installing.. I just thought it was odd that this was the only one that was giving me problems like this... thanks for the suggestions!
The Glimmerman Posted February 28, 2005 Posted February 28, 2005 Maybe u can run an autoit script in the background.when nav pops up let the autoit script tel nav to except the script.I believe it was allow once. or something like that.I had the same prob but i didnt like nav to popup constantly and for that i got sav.Break(0)Opt("ExpandEnvStrings", 1)Opt("TrayIconHide", 1)$Waiting = 0Do Sleep(1000) WinActivate("Name of Window", "Text in Window") $Waiting = WinExists("Name of Window", "Text in Window")Until $Waiting = 1WinActivate("Name of Window", "") Sleep(1000) Send("{TAB}") Sleep(100) Send("{ENTER}") Sleep(100) Send("^q")Exit
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now