أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
My pc is in domain. i dont need to enter password
First you have to change password policy in group policy management by change the following policy value:
*minimum password length policy value change to0
*password must meet complexity requirements change disable
After do that you have to reset the password for that user by keeping blank
You can do it but why on earth someone need this sort of policy. Any how you can do this by editing two policies
Change min password length to0
Disable password complexity requirement.
:
*minimum password length policy value change to0
*password must meet complexity requirements change disable
After do that you have to reset the password for that user .
Change Domain User Policy to 0 Length and none Complexity and clear the Domain User Password from Active Directory Users and Computer
Not at all good to allow AD user to log on automatically. It can be done by policy setting, Fine Grained password policy and editing registry.
It's not safe to use blank password for domain user.
Try to configure your PC to log on to domain account automatically:
http://www.top-password.com/blog/enable-disable-automatic-login-in-windows-10/
Hope this helps!
Its better you set autologon checked in your own PC registry. In this way nobody else can misuse your login from other computers .
Set autologin by providing your login credentials in
HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon
u need the administrator local user for that purpose. it usually gives you option before login
Change min password length to0
Disable password complexity requirement.
ِActully it's not recommended, but to make it work : from policy from policy management in DC change the weather of security to (0) password character and disable the complexity password policies.
the main reason to use domain to increase security , that's why we use DC , but in any case you want to change the login do following :-
- make sure to make user without expire password .
create batch file *.bat as follow
Enable Auto Logon: reg add "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon" /v AutoAdminLogon /t REG_SZ /d1
Set username for logon: reg add "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon" /v DefaultUserName /t REG_SZ /d youruser
Set domain if your pc is in domain: reg add "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon" /v DefaultDomainName /t REG_SZ /d yourdomain
Set users password: reg add "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon" /v DefaultPassword /t REG_SZ /d yourpassword
Set how many times it shoud logon automatically (0 for infinite): reg add "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon" /v AutoLogonCount /t REG_DWORD /d0