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

Open display properties

Status
Not open for further replies.

pcs800

IS-IT--Management
Apr 9, 2002
339
US
how would i use a vbs to open windows display properties?
Preferably open to the screensaver tab.

Eric VanLandingham
The Bargain Monkey
 
pcs800,

Code:
Dim WSH
Set WSH = WScript.CreateObject("WScript.Shell")
WSH.Run "rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1"
Set WSH = Nothing

Hope this helps...

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top