
NOTE:- You must require a possword on Start up for this (no matter admin or user)
Well The method is pretty simple
Open Notepad copy and paste the script below and save it .VBS extention
This wil create a shortcut (on desktop).. run(click) it
set WshShell = WScript.CreateObject(“WScript.Shell”)
set oShellLink = WshShell.CreateShortcut(wshShell.SpecialFolders(“Desktop”) & “LockWorkstation.lnk”)
oShellLink.TargetPath = “%windir%system32rundll32.exe”
oShellLink.Arguments = “user32.dll,LockWorkStation”
oShellLink.Save
And you are done.:)
Hope you liked it..