This script will run the user Auto Logon window. (VBScript)
| 'Run Auto Logon Set WSHShell = WScript.CreateObject("WScript.Shell") Message = "This script will run the user Auto Logon window." & vbCr Message = Message & "Check or Uncheck User must enter a Password to Logon to Windows." &vbCr &vbCr Message = Message & "Continue?" X = MsgBox(Message, vbYesNo + vbQuestion, "www.paulsxp.com") If X = 6 Then WshShell.Run("netplwiz") End If |