Posted June 2, 20159 yr 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
June 2, 20159 yr Staff 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
November 23, 20159 yr Hi Chris, Are you able to share any more details on what the System Provisioning module will be capable of? Kind regards Ant
March 4, 20169 yr Any updates on when we'll be able to write registry values to all clients in a group? Kind regards, Kev
May 9, 20186 yr Staff Hi @brenrich101, Unfortunately, this feature was not prioritized, therefore it is not implemented yet.
August 10, 20186 yr 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
November 29, 20186 yr Author 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.
April 11, 20196 yr 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 Â
April 12, 20196 yr Author 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.
Create an account or sign in to comment