Jump to content

Featured Replies

Posted

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

  • 5 months later...

Hi Chris,

Are you able to share any more details on what the System Provisioning module will be capable of?

Kind regards
Ant

  • 3 months later...

Any updates on when we'll be able to write registry values to all clients in a group?

Kind regards,

Kev

  • 2 years later...
  • 1 month later...
  • 2 weeks later...
  • 1 month later...

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

  • 3 months later...
  • 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.

  • 4 months later...

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

 

  • 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