Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VBS - help with existing script

Status
Not open for further replies.

snootalope

IS-IT--Management
Jun 28, 2001
1,706
0
0
US
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top