Objective
While the Endpoint module provides a dedicated feature for modifying registry settings, the Software Deployment module can also be used as a quick and efficient method to deploy .reg
files. This method is particularly useful for pushing simple registry changes across multiple systems without having to create separate registry tasks.
Use Case
In this example, we demonstrate how to deploy a registry key that enables the UseWUServer
setting for Windows Update:
Registry Path:[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
Key and Value:"UseWUServer"=dword:00000001
Steps to Create and Deploy the Registry File
Create the
.reg
File:Open Notepad and paste the following content:
Save the file with a
.reg
extension, e.g.,Set_UseWUServer_1.reg
.
Prepare for Deployment:
Compress (ZIP) the
.reg
file using any ZIP utility. Example:Set_UseWUServer_1.zip
Upload via Software Deployment:
Navigate to EM > Actions > Software Deployment
Upload the zipped
.reg
fileFollow the prompts to assign targets and deploy
Post-Deployment:
After deployment, the registry change will be applied.
Registry State Before and After Deployment
Before Deployment:
The
UseWUServer
key not set to0
.
After Deployment:
The key is created/updated to:
"UseWUServer"=dword:00000001
Conclusion:
Using the Software Deployment module to push .reg
files offers a convenient and scalable approach to modifying registry settings across endpoints. It is especially effective for quick changes, allowing administrators to bypass scripting or policy configurations for one-time or small-scale updates.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article