mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-05-18 19:56:25 +00:00
Add back support for REG_MULTI_SZ in Convert-RegValueData
This commit is contained in:
@@ -113,14 +113,11 @@ function Convert-RegValueData {
|
||||
}
|
||||
|
||||
if ($valueData -match '^hex(?:\((?<kind>[0-9a-fA-F]+)\))?:(?<bytes>[0-9a-fA-F,\s]+)$') {
|
||||
if ($matches.kind -eq '7') {
|
||||
throw "Unsupported registry value type hex(7) (REG_MULTI_SZ) encountered."
|
||||
}
|
||||
|
||||
$bytes = Convert-HexStringToByteArray -hexValue $matches.bytes
|
||||
$valueType = if ($matches.kind) { "Hex$($matches.kind)" } else { 'Binary' }
|
||||
$value = switch ($matches.kind) {
|
||||
'2' { Convert-RegistryByteArrayToString -byteData $bytes }
|
||||
'7' { Convert-RegistryByteArrayToMultiString -byteData $bytes }
|
||||
default { $bytes }
|
||||
}
|
||||
|
||||
@@ -166,3 +163,12 @@ function Convert-RegistryByteArrayToString {
|
||||
|
||||
return ([System.Text.Encoding]::Unicode.GetString($byteData)).TrimEnd([char]0)
|
||||
}
|
||||
|
||||
function Convert-RegistryByteArrayToMultiString {
|
||||
param(
|
||||
[Parameter(Mandatory)]
|
||||
[byte[]]$byteData
|
||||
)
|
||||
|
||||
return @(([System.Text.Encoding]::Unicode.GetString($byteData)).TrimEnd([char]0) -split "`0" | Where-Object { $_ -ne '' })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user