diff --git a/assets/winvistax64.xml b/assets/winvistax64.xml index bba3184..43351b0 100644 --- a/assets/winvistax64.xml +++ b/assets/winvistax64.xml @@ -139,6 +139,68 @@ Dockur Windows for Docker + + + 1 + reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoLogonCount /t REG_DWORD /d 0 /f + Set AutoLogonCount to 0 + + + 2 + reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v LimitBlankPasswordUse /t REG_DWORD /d 0 /f + Allow RDP login with blank password + + + 3 + cmd /C wmic useraccount where name="Docker" set PasswordExpires=false + Password Never Expires + + + 4 + cmd /C POWERCFG -H OFF + Disable Hibernation + + + 5 + cmd /C POWERCFG -X -monitor-timeout-ac 0 + Disable monitor blanking + + + 6 + reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff" /f + Disable Network Discovery popup + + + 7 + reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NetworkLocationWizard" /v "HideWizard" /t REG_DWORD /d 1 /f + Disable Network Discovery popup + + + 8 + reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HideFirstRunExperience" /t REG_DWORD /d 1 /f + Disable first-run experience in Edge + + + 9 + reg.exe add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "HideFileExt" /t REG_DWORD /d 0 /f + Show file extensions in Explorer + + + 10 + reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateFileSizePercent" /t REG_DWORD /d 0 /f + Zero Hibernation File + + + 11 + reg.exe add "HKLM\SYSTEM\CurrentControlSet\Control\Power" /v "HibernateEnabled" /t REG_DWORD /d 0 /f + Disable Hibernation Mode + + + 12 + reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\NewNetworks" /v NetworkList /t REG_MULTI_SZ /d "" /f + Disable Network Discovery popup + +