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

AutoLogin

GPO- Administrative Templates

AutoLogin

by  markdmac  Posted    (Edited  )
markdmac's Enterprise Ready
Group Policy Administrative Templates

By Mark D. MacLachlan, The Spiders Parlor
http://www.thespidersparlor.com


[red]
Warning, Warning, Danger Will Robinson!!![/red]

The below ADM file is useful for servers that require an automatic login for applications that run in a user session rather than as a service. I highly recommend that you combine the use of this ADM with a login script that will immediately lock the screen.

AutoLogin is considered a major security risk, regretfully there are times when it just cannot be avoided to to application constraints. Use at your own discretion.

Code:
CLASS MACHINE

    CATEGORY "Auto-Login"
            
        POLICY "Enable Auto-Login" 
            KEYNAME "SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon"
            VALUENAME "AutoAdminLogon" 
            
            PART "Auto-Login Username"    EDITTEXT
                VALUENAME "DefaultUserName"
            END PART
            PART "Auto-Login Domain"    EDITTEXT
                   VALUENAME "DefaultDomainName"
            END PART
            PART "Auto-Login Password"    EDITTEXT
                   VALUENAME "DefaultPassword"
            END PART
        END POLICY
    
    END CATEGORY
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top