snootalope
IS-IT--Management
I'm trying to get this script to run on our Windows 7 machines: -- It's just a script that's supposed to launch Internet Explorer and allow the user the change their password.
It won't do anything though. I can take out the:
Set objIE = CreateObject("InternetExplorer.Application")
' specify some of the IE window's settings
objIE.Navigate "about:blank"
objIE.Document.Title = "Change password" & String( 80, "." )
objIE.ToolBar = False
objIE.Resizable = False
objIE.StatusBar = False
objIE.Width = 400
objIE.Height = 240
objIE.Visible = 1
and put it in it's own script and that brings up Internet Explorer just fine, but the original script itself won't launch a thing. I don't even see iexplore.exe show up in the task manager at all. Hoping someone out there can help me out a bit; I'm not the brightest when it comes to vbs scripts.
It won't do anything though. I can take out the:
Set objIE = CreateObject("InternetExplorer.Application")
' specify some of the IE window's settings
objIE.Navigate "about:blank"
objIE.Document.Title = "Change password" & String( 80, "." )
objIE.ToolBar = False
objIE.Resizable = False
objIE.StatusBar = False
objIE.Width = 400
objIE.Height = 240
objIE.Visible = 1
and put it in it's own script and that brings up Internet Explorer just fine, but the original script itself won't launch a thing. I don't even see iexplore.exe show up in the task manager at all. Hoping someone out there can help me out a bit; I'm not the brightest when it comes to vbs scripts.