Paramétrer windows update depuis la base de registre
Bonjour,
Je souhaiterais paramétrer windows update depuis la base de registre sur un windows 7 pro 64 bits, je pense que les paramètres ci-dessous sont bon, mais ça reste à confirmer, à tester.
Sur les OS 64 bits certaine clé de registre doivent être doublé dans les répertoires "WOW6432Node" pour que cela fonctionne, mais j'ai pas trouvé trop d'info.
Merci à tous ceux qui pourront m'aider à améliorer mon WindowsUpdate.reg
Voilà ce que j'ai fais à partir des documents trouvé sur le net:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
| Windows Registry Editor Version 5.00
; 32 bits
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
;0 = installe automatiquement les pilotes dans Windows Update
"ExcludeWUDriversInQualityUpdate"=dword:00000000
;0 = Autorise l'access à Windows Update
"DisableWindowsUpdateAccess"=dword:00000000
; 64 bits
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Policies\Microsoft\Windows\WindowsUpdate]
;0 = installe automatiquement les pilotes dans Windows Update
"ExcludeWUDriversInQualityUpdate"=dword:00000000
;0 = Autorise l'access à Windows Update
"DisableWindowsUpdateAccess"=dword:00000000
; 32 bits
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
; 1 = L'utilisateur peut se connecté au site web de windows update
"NoWindowsUpdate"=dword:00000001
; 64 bits
[HKEY_CURRENT_USER\SOFTWARE\WOW6432Node\Windows\CurrentVersion\Policies\Explorer]
; 1 = L'utilisateur peut se connecté au site web de windows update
"NoWindowsUpdate"=dword:00000001
; 32 bits
[HKEY_LOCAL_MACHINE\SYSTEM\Internet Communication Management\Internet Communication]
; 0 = L'utilisateur peut se connecté au site web de windows update, activer les mise à jour automatique
; et à recevoir les notification de mise à jour
"DisableWindowsUpdateAccess"=dword:00000000
; 32 bits
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate]
; 0 = L'utilisateur peut se connecté au site web de windows update, activer les mise à jour automatique
; et à recevoir les notification de mise à jour
"DisableWindowsUpdateAccess"=dword:00000000
; 64 bits
[HKEY_CURRENT_USER\SOFTWARE\WOW6432Node\Windows\CurrentVersion\Policies\WindowsUpdate]
; 0 = L'utilisateur peut se connecté au site web de windows update, activer les mise à jour automatique
; et à recevoir les notification de mise à jour
"DisableWindowsUpdateAccess"=dword:00000000
; 32 bits
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
; 4 = Automatically download and schedule installation. Only valid if values exist for ScheduledInstallDay and ScheduledInstallTime.
"AUOptions"=dword:00000004
; 0 = Treat minor updates like other updates. - 1 = Silently install minor updates.
"AutoInstallMinorUpdates"=dword:00000001
; Time between detection cycles. Range = n, where n = time in hours (1–22).
"DetectionFrequency"=dword:00000001
; 1 = Enable detection frequency. 0 = Disable custom detection frequency (use default value of 22 hours).
"DetectionFrequencyEnabled"=dword:00000001
; 1 = Logged-on user can decide whether to restart the client computer.
"NoAutoRebootWithLoggedOnUsers"=dword:00000001
; 0 = Enable Automatic Updates.
"NoAutoUpdate"=dword:00000000
; Time between prompts for a scheduled restart. Range = n, where n = time in minutes (1–1,440).
"RebootRelaunchTimeout"=dword:00000001
; 0 = Disable custom RebootRelaunchTimeout(use default value of 10 minutes).
"RebootRelaunchTimeoutEnabled"=dword:00000000
; Length, in minutes, of the restart warning countdown after updates have been installed that have a deadline or scheduled updates.
; Range = n, where n = time in minutes (1–30).
"RebootWarningTimeout"=dword:00000030
; 0 = Disable custom RebootWarningTimeout (use default value of 5 minutes).
"RebootWarningTimeoutEnabled"=dword:
; Time in minutes that Automatic Updates waits at startup before it applies updates from a missed scheduled installation time.
; Range = n, where n = time in minutes (1–60).
"RescheduleWaitTime"=dword:00000010
; 1 = Enable RescheduleWaitTime
"RescheduleWaitTimeEnabled"=dword:00000001
; 0 = Every day Range = 0|1|2|3|4|5|6|7
"ScheduledInstallDay"=dword:00000000
; Range = n, where n = the time of day in 24-hour format (0–23).
"ScheduledInstallTime"=dword:00000023
; 0 = The computer gets its updates from Microsoft Update.
"UseWUServer"=dword:00000000 |