Import registry from here string

71 Views Asked by At

Is there any solution to add(import) values to the registry from here string.

$regString = @"
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\SystemFileAssociations\.ps1]
... blha blha blha ....
"@
Some-FunctionOrCommandThatAcceptHereSTRtoReg $regString
1

There are 1 best solutions below

0
On

+++ solution A (Mathias R. Jessen)

Just write HereString to file then use it in reg

function HereString-ToRegistry{
    param ([Parameter()] [string] $Regstr)
    $tmp = New-TemporaryFile
    $Regstr | Out-File $tmp
    reg import $tmp.FullName
}
$regstr1 = @"
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\PropertyBag]
"ThisPCPolicy"="Hide"
"@
HereString-ToRegistry -Regstr $regstr1