Advertisement
Rick0

USER_AUTOLOGON

Mar 30th, 2020
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.83 KB | None | 0 0
  1. @ECHO OFF
  2. SET "USER=USUARIO"
  3. SET "PASS=PASSWORD"
  4. net user %USER% %PASS% /FULLNAME:"Descricao do usuario" /PASSWORDCHG:no /add >NUL
  5. wmic useraccount WHERE Name='%USER%' set PasswordExpires=false >NUL
  6. net localgroup Administrators %USER% /add >NUL
  7. REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoAdminLogon /t REG_SZ /d "1" /f >NUL
  8. REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultUserName /t REG_SZ /d "%USER%" /f >NUL
  9. REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultPassword /t REG_SZ /d "%PASS%" /f >NUL
  10. REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DisableCAD /t REG_DWORD /d "1"/f >NUL
  11. REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultDomainName /t REG_SZ /d %computername% /f >nul
  12. EXIT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement