Hello everyone.

I am deploying Windows 10 to my clients and have successfully managed to get Kixtart script to apply all settings bar the CLSID area of the registry:

 Code:

;===========================================================================================
;  Shows Libraries in Windows 10 Explorer View - Not working in script
;===========================================================================================

CheckAndSetRegValue("HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}", "System.IsPinnedToNameSpaceTree", "0", "REG_DWORD")
CheckAndSetRegValue("HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}", "System.IsPinnedToNameSpaceTree", "1", "REG_DWORD")


The second line works - anything I write to the Wow6432 location works beautifully.
The first line fails with key I am trying to edit. If I edit the registry manually, it works, if I use a .reg file it works, but not with the kixtart script.

Using Regshot, I have determined that the first line of coding is not writing to hkey_classes_root\CLSID as expected but is actually writing to HKEY_CLASSES_ROOT\Wow6432Node\CLSID\

I am running 64 bit windows. How do I get Kixtart to write to the non Wow6432 location? I only want to apply the non wow for these registry entries as everything else in the script works as expected.

Thank you