Forum Discussion
joemclain
Oct 05, 2022Brass Contributor
Manipulating the registry via Intune push
Our goal is simple: Manipulate the registry as part of application deployment or PowerShell script. Use case: When we install our VPN client, there are a raft of registry updates that need to be ...
joemclain
Oct 05, 2022Brass Contributor
Importing registry files from PS scripts on 64-bit Windows solved. It's as simple as running the import with a switch to specify 64-bit mode so they're merged where you would expect them to be.
Use this in your PowerShell script and you're good:
reg.exe import TestFile.reg /reg:64
Use this in your PowerShell script and you're good:
reg.exe import TestFile.reg /reg:64
- Moe_KinaniOct 05, 2022Bronze ContributorThis is awesome Joe, thanks for sharing the answer with others!
Moe