Make a Desktop Shortcut to "switch user" in Vista?

jcarson

Senior member
Nov 30, 1999
943
0
0
Can anyone figure this out? I have seen a few, but they all lock the workstation, I just need it to be the equivilant of hitting the start menu, then "switch user".

Anyone? I cant find this info anywhere, and this is the home of the geek in the know..

:)

Thanks!
 

jcarson

Senior member
Nov 30, 1999
943
0
0
I figured that out, but I am looking for a way to make a shortcut that I (and my wife) can double click on.
 

BD2003

Lifer
Oct 9, 1999
16,815
1
81
Type this into notepad and name it switch.vbs

Option Explicit
Dim WshShell
Set WshShell = CreateObject("WScript.Shell" )
WshShell.SendKeys("^{ESC}")
WScript.Sleep(100)
WshShell.SendKeys("{RIGHT}{RIGHT}{RIGHT}W" )
WScript.Quit(0)