0
爲什麼下面的代碼返回NULL爲shellValue
?註冊表項獲取值返回NULL
string shellValue;
RegistryKey shellKey = Registry.LocalMachine;
shellKey = shellKey.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon", true);
shellValue = shellKey.GetValue("Shell") as string;
我確實擁有管理員權限。
正常工作對我來說,檢查鍵/值是否存在使用'regedit.exe' –
它確實存在,在Windows中默認值是Explorer.exe的 – PnP