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

How do I script this? 1

Status
Not open for further replies.

ITSTOAST

Technical User
Mar 3, 2005
71
GB
Hi all I wish to set up a script VBS or BAT to run the Kiosk mode on a machine.

I can place this in RUN and it works, what I need is a way to get it to run "RUN" from a script
iexplore -k \\Gandalf\apps\Test web page.htm
Thanks

Only the good die young, me I'm here forever :)
 
Something like this ?
Set WshShell = CreateObject("Wscript.Shell")
WshShell.Run "iexplore -k ""\\Gandalf\apps\Test web page.htm"""

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Fantastic, quick reply and perfect answer. Have a star

Only the good die young, me I'm here forever :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top