(imported topic written by SystemAdmin)
If a registry value is a multi string, how can you get all values of it? It seems I can only return the first value using it as-is or casting it as a string.
Let’s say I have a mult-string…
Windows Registry Editor Version 5.00
HKEY_LOCAL_MACHINE\SOFTWARE\test
“data”=hex(7):76,00,61,00,6c,00,75,00,65,00,31,00,00,00,76,00,61,00,6c,00,75,\
00,65,00,32,00,00,00,76,00,61,00,6c,00,75,00,65,00,33,00,00,00,00,00
Using…
value “data” of key “HKEY_LOCAL_MACHINE\SOFTWARE\test” of registry
…I only get the first value.
-Paul