Martin Stevnhoved Posted June 2, 2015 Posted June 2, 2015 Hi Pulseway. Now we have your client on all our servers it would be nice if we could use it to write registry values on all devices. I was thinking of loading a *.reg file. Or it it should have some wau!!-factor you could parse *.adm and *.admx files. Best Regards, Martin Stevnhoved CODE9IT 1
Staff Chris Posted June 2, 2015 Staff Posted June 2, 2015 Hi Martin, Â This is part of a System Provisioning module we plan on having, I've noted your idea on that project. Â Regards, Chris Pulseway Support A N T 1
A N T Posted November 23, 2015 Posted November 23, 2015 Hi Chris, Are you able to share any more details on what the System Provisioning module will be capable of? Kind regards Ant
180D Posted March 4, 2016 Posted March 4, 2016 Any updates on when we'll be able to write registry values to all clients in a group? Kind regards, Kev
Staff Chris Posted May 9, 2018 Staff Posted May 9, 2018 Hi @brenrich101, Unfortunately, this feature was not prioritized, therefore it is not implemented yet.
MichaelS Posted June 25, 2018 Posted June 25, 2018 Hello Felipe, no updates on the push registry feature I'm afraid Â
Quenten Grasso Posted August 10, 2018 Posted August 10, 2018 Hey @Martin Stevnhoved I might be missing something however regarding the registry push, you can kind of do this now with Powershell, by creating script then a task and assigning it to a scope of machines. Granted its not going to apply to HKCU but it could be a start. Happy to try and help work out the issue if you want to create a new topic. Cheers, Quenten
Martin Stevnhoved Posted November 29, 2018 Author Posted November 29, 2018 Hi @Quenten Grasso On ‎8‎/‎10‎/‎2018 at 7:19 AM, Quenten Grasso said: I might be missing something however regarding the registry push, you can kind of do this now with Powershell, by creating script then a task and assigning it to a scope of machines.  I think that you are missing, that the post was posted in 2015 Today it is indeed possible with scripts and tasks.
BartB Posted April 11, 2019 Posted April 11, 2019 Here is a script I use to implement a registry change to the HKCU hive: @ECHO OFF IF NOT EXIST C:\Support\WriteToHkcuFromSystem.ps1 ( C:\ProgramData\chocolatey\bin\wget.exe -c -nc -nH -nv --no-check-certificate https://gallery.technet.microsoft.com/scriptcenter/Write-to-HKCU-from-the-3eac1692/file/199836/1/WriteToHkcuFromSystem.ps1 -O C:\Support\WriteToHkcuFromSystem.ps1 ) IF NOT EXIST C:\Support\FoxitPDF.reg ( C:\ProgramData\chocolatey\bin\wget.exe -c -nc -nH -nv --no-check-certificate https://www.dropbox.com/s/XXXXXXXXXXXXXXXXXXxxxxxxxxxxxx/FoxitPDF.reg?dl=1 -O C:\Support\FoxitPDF.reg ) Powershell.exe -ExecutionPolicy ByPass -File C:\Support\WriteToHkcuFromSystem.ps1 -RegFile C:\Support\FoxitPDF.reg -CurrentUser Â
Martin Stevnhoved Posted April 12, 2019 Author Posted April 12, 2019 13 hours ago, BartB said: Here is a script I use to implement a registry change to the HKCU hive:  I think that you are missing, that the post was posted in 2015 Today it is indeed possible with scripts and tasks.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now