Outils pour utilisateurs

Outils du site


sysadmin:windows:authentification-automatique

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
sysadmin:windows:authentification-automatique [2018/05/27 09:21] – créée yoannsysadmin:windows:authentification-automatique [2021/02/01 21:51] (Version actuelle) – modification externe 127.0.0.1
Ligne 17: Ligne 17:
 <code> <code>
 c:\> autologon administrateur monPC mdpadmin c:\> autologon administrateur monPC mdpadmin
 +</code>
 +
 +===== En ligne de commande =====
 +
 +<code>
 +REM activer autologon
 +reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoAdminLogon /t REG_SZ /d 1
 +
 +REM Définir le nom d'utilisateur
 +reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultUserName /t REG_SZ /d youruser
 +
 +REM Définir le nom de domaine si le PC est dans un domaine
 +reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultDomainName /t REG_SZ /d yourdomain
 +
 +REM Définir le mot de passe associé a l'utilisateur
 +reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultPassword /t REG_SZ /d yourpassword
 +
 +REM Définir le nombre de connexion auto (0 pour infini)
 +reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0
 </code> </code>
  
sysadmin/windows/authentification-automatique.1527412862.txt.gz · Dernière modification : 2021/02/01 21:51 (modification externe)