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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

IE script needs refining

Status
Not open for further replies.

Techie64

Technical User
Mar 22, 2005
29
US
Below is a simple script that will open the Microsoft home page. You can modify the toolbars' values to display or hide as you see fit.

Can someone help with the toolbar buttons? Even though the option exists to display or hide the entire toolbar, is there a way to display only certain toolbar buttons on the window?

For example, is there a way - through the script :) - to display just the back and forward buttons?

Thanks!


dim Window

set Window = CreateObject("InternetExplorer.Application")

Window.RegisterAsBrowser = True
Window.Navigate("Window.MenuBar = True
Window.ToolBar = True
Window.AddressBar = True
Window.StatusBar = True
Window.FullScreen = False
Window.Resizable = True
Window.Visible = True
Window.Width = 850
Window.Height = 720
 
i do not believe you can define the buttons this way. You can restrict them via a GPO however.

I hope you find this post helpful.

Regards,

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top