forked from plus3it/windows-update-agent-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpillar.example
51 lines (48 loc) · 1.96 KB
/
pillar.example
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
# Pillar settings for the windows-update-agent formula correspond to registry
# keys found in this technet article:
# - https://technet.microsoft.com/en-us/library/Dd939844(v=WS.10).aspx
# The formula supports all keys listed in that article under these subkeys:
# - HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate
# - HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
# - HKEY_LOCAL_MACHINE\SYSTEM\Internet Communication Management\Internet Communication
# - HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\WindowsUpdate
# - HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\WindowsUpdate\AU
windows-update-agent:
# Set `remove-undefined-keys` to `True` to remove any Windows Update
# registry keys that are not present in pillar, or that have no value ('').
# Absent keys resume the default Windows behaviour for that setting.
remove-undefined-keys: False
# Dictionary of Windows Update registry keys and values
registry:
hklm-windows-update:
AcceptTrustedPublisherCerts: ''
DisableWindowsUpdateAccess: ''
ElevateNonAdmins: ''
TargetGroup: ''
TargetGroupEnabled: ''
WUServer: ''
WUStatusServer: ''
hkcu-explorer:
DisableWindowsUpdateAccess: ''
hklm-internet-communication:
NoWindowsUpdate: ''
hkcu-windows-update:
DisableWindowsUpdateAccess: ''
hklm-windows-update-au:
AlwaysAutoRebootAtScheduledTime: ''
AlwaysAutoRebootAtScheduledTimeMinutes: ''
AUOptions: ''
AutoInstallMinorUpdates: ''
DetectionFrequency: ''
DetectionFrequencyEnabled: ''
NoAutoRebootWithLoggedOnUsers: ''
NoAutoUpdate: ''
RebootRelaunchTimeout: ''
RebootRelaunchTimeoutEnabled: ''
RebootWarningTimeout: ''
RebootWarningTimeoutEnabled: ''
RescheduleWaitTime: ''
RescheduleWaitTimeEnabled: ''
ScheduledInstallDay: ''
ScheduledInstallTime: ''
UseWUServer: ''