Superbrka 0 Posted January 12, 2012 Hi all, I'm not sure is it a bug or not, but since I've updated to 3.3.8.0, RegRead function does not read any Registry values from "HKEY_CLASSES_ROOT\Wow6432Node" For example this works with 3.3.7.2: $RegPath = "\\" & $ComputerName & "\HKEY_CLASSES_ROOT\Wow6432Node\.1\" $version = RegRead($RegPath, "") MsgBox(0, "", $RegPath & " " & $version) But if I use 3.3.8.0, I do not get any values ($version is empty). RegRead & 3.3.8.0 works properly if I use any other RegKey For example: $RegPath = "\\" & $ComputerName & "\HKEY_CLASSES_ROOT\WPLFile\" $version = RegRead($RegPath, "") MsgBox(0, "", $RegPath & " " & $version) Any ideas why ? Thanks ! Share this post Link to post Share on other sites