INTELLIGENT WORK FORUMS FOR COMPUTER PROFESSIONALS
Come Join Us!
Are you a Computer / IT professional? Join Tek-Tips now!
- Talk With Other Members
- Be Notified Of Responses
To Your Posts
- Keyword Search
- One-Click Access To Your
Favorite Forums
- Automated Signatures
On Your Posts
- Best Of All, It's Free!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.
Partner With Us!
"Best Of Breed" Forums Add Stickiness To Your Site

(Download This Button Today!)
Feedback
"...An excellent site which has quite possibly prevented me from having a mental/nervous breakdown..."
Geography
Where in the world do Tek-Tips members come from?
|
Computer Settings
|
Enable Auto Logon (VBScript)
Posted: 21 Jan 07 (Edited 25 Mar 07)
|
This VBScript will enable auto logon to a Windows 2000 or Windows 2003 server, or a Windows 2000/XP workstation. Run this script directly on the server or workstation that you wish to have auto logon configured.
Save this code with a .vbs extension. Then, specify values for the following, (removing the brackets in the code):
valDefaultDomainName valDefaultUserName valDefaultPassword
CODE'========================================== 'VBScript: enableAutoLogon.vbs = 'This VBScript updates the registry to = 'enable auto-logon. Modify the three = 'strings in brackets, under "Define = 'keys and values". = 'Courtesy of Jonathan Almquist = 'monsterjta @ tek-tips = '==========================================
Option Explicit '' 'Declarations' '' Dim objShell Dim RegLocAutoLogon Dim keyDefaultDomainName Dim valDefaultDomainName Dim keyDefaultUserName Dim valDefaultUserName Dim keyDisableCAD Dim valDisableCAD Dim keyAutoAdminLogon Dim valAutoAdminLogon Dim keyForceAutoLogon Dim valForceAutoLogon Dim keyDefaultPassword Dim valDefaultPassword
''' 'Define keys and values' ''' RegLocAutoLogon = "HKLM\Software\Microsoft\" & _ "Windows NT\CurrentVersion\Winlogon\" keyDefaultDomainName = "DefaultDomainName" valDefaultDomainName = "[your domain name here]" keyDefaultUserName = "DefaultUserName" valDefaultUserName = "[your default user name here]" keyDisableCAD = "DisableCAD" valDisableCAD = 1 keyAutoAdminLogon = "AutoAdminLogon" valAutoAdminLogon = "1" keyForceAutoLogon = "ForceAutoLogon" valForceAutoLogon = "1" keyDefaultPassword = "DefaultPassword" valDefaultPassword = "[your password here]"
Set objShell = CreateObject("WScript.Shell")
objShell.RegWrite RegLocAutoLogon & _ keyDefaultDomainName, 1, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyDefaultDomainName, valDefaultDomainName, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyDefaultUserName, 1, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyDefaultUserName, valDefaultUserName, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyDisableCAD, 1, "REG_DWORD" objShell.RegWrite RegLocAutoLogon & _ keyDisableCAD, valDisableCAD, "REG_DWORD" objShell.RegWrite RegLocAutoLogon & _ keyAutoAdminLogon, 1, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyAutoAdminLogon, valAutoAdminLogon, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyForceAutoLogon, 1, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyForceAutoLogon, valForceAutoLogon, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyDefaultPassword, 1, "REG_SZ" objShell.RegWrite RegLocAutoLogon & _ keyDefaultPassword, valDefaultPassword, "REG_SZ" I hope you find this post helpful,
Jonathan Almquist Minneapolis, MN
enable auto-logon enable auto logon enable auto login
|
Back to VBScript FAQ Index
Back to VBScript Forum |
|
 |
|
Join Tek-Tips® Today!
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Talk To Other Members
- Notification Of Responses To Questions
- Favorite Forums One Click Access
- Keyword Search Of All Posts, And More...
Register now while it's still free!
Already a member? Close this window and log in.
Join Us Close