SCCM 2007 pushing out a regedit key for Windows 7 machines
I have a regedit key that i need to push out in SCCM 2007, is there a way this can be done and if so how can i do this?
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
sparky86
11 years ago
you can create a batch file and advertise the file to be deployed via SCCM
Batch file contents
REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead
or if you're deploying via a task sequence you can run a command line with the dame as the batch file
Comments:
-
If you have a HKLM registry key you can do it like sparky86 told you. Or you can export the regkey and use this command line:
regedit /s "ExportedRegistryEntry.reg"
If you have an HKCU Registry entry, you have to deploy it over an "Active Setup".
http://www.itninja.com/blog/view/appdeploy-articles-activesetup - tecrumors 11 years ago
Posted by:
ekgcorp
11 years ago