How To Automatically Logon To Windows 7 using a Password

16,029

Solution 1

The solution to my problem was

Autologon for Windows http://technet.microsoft.com/en-us/sysinternals/bb963905.aspx

Which enable to automatically login a user using his password

I would also suggest, in order to set Windows configuration for a Kiosk KIOSK Classic http://sourceforge.net/projects/kioskclassic/

Solution 2

It seems you already have your answers, but I'll add something for future readers. This powershell snip allows for auto-logon via the registry.

Set-ItemProperty -Path 'registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name DefaultUserName -Value "Administrator"
Set-ItemProperty -Path 'registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name DefaultPassword -Value "Password"
Set-ItemProperty -Path 'registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name AutoAdminLogon -Value 1
Set-ItemProperty -Path 'registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon' -Name ForceAutoLogon -Value 1

or can be done the old fashioned way.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"DefaultUserName"="Administrator"
"DefaultPassword"="Password"
"AutoAdminLogon"="1"
"ForceAutoLogon"="1"
Share:
16,029
GibboK
Author by

GibboK

A professional and enthusiastic Senior Front End Developer. Listed as top 2 users by reputation in Czech Republic on Stack Overflow. Latest open source projects Animatelo - Porting to JavaScript Web Animations API of Animate.css (430+ stars on GitHub) Industrial UI - Simple, modular UI Components for Shop Floor Applications Frontend Boilerplate - An opinionated boilerplate which helps you build fast, robust, and adaptable single-page application in React Keyframes Tool - Command line tool which convert CSS Animations to JavaScript objects gibbok.coding📧gmail.com

Updated on June 04, 2022

Comments

  • GibboK
    GibboK almost 2 years

    I am working on a Kiosk Application based on Windows 7 Ultimate.

    I need:

    • connect to the kiosk using Remote Desktop Connection (so UserName and Passwprd seems required).

    • enable auto login for the kiosk.

    Any idea how to achieve these features?

    Thanks