I sometimes need to temporarily change some registry settings related to Group Policy on a computer part of Active Directory, so I can perform some work.
After having read some articles on how to do this, I've come across the following registry settings:
# Disable Group Policy updates (computers, users, and domain controllers) until the user logs off the system
New-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Name "DisableBkGndGroupPolicy" -PropertyType DWord -Value 1 -Force
# Disable Registry Policy processing
New-ItemProperty -Path "HKLM:\Software\Policies\Microsoft\Windows\Group Policy\{35378EAC-683F-11D2-A89A-00C04FBBCFA2}" -Name "NoBackgroundPolicy" -PropertyType DWord -Value 1 -Force
New-ItemProperty -Path "HKLM:\Software\Policies\Microsoft\Windows\Group Policy\{35378EAC-683F-11D2-A89A-00C04FBBCFA2}" -Name "NoGPOListChanges" -PropertyType DWord -Value 0 -Force
What exactly is "registry policies"? If I disable Group Policy updates until the user logs off, i.e. the computer won't try to refresh and re-apply policies, why would it be necessary to disable registry policy processing?
Source: https://www.thewindowsclub.com/disable-background-processing-registry-policy