2013-02-15 48 views

回答

4

來源:http://www.preemptive.com/forum/topic?f=18&t=23523

如果您遇到了此錯誤信息,你可以請嘗試添加「HKEY_LOCAL_MACHINE \ SOFTWARE \ Wow6432Node \微軟\的Windows套件\安裝根\ KitsRoot」註冊表關鍵,並給它相同的值 「HKEY_LOCAL_MACHINE \ SOFTWARE \微軟\的Windows套件\安裝根\ KitsRoot」

+0

謝謝,解決了這個問題。 – 2013-04-17 19:55:01

+0

謝謝,它的工作。 – 2013-05-04 10:18:26

0

問題是關鍵是missing in both registry location ..

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows Kits\Installed Roots 

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Kits\Installed Roots 

我發現這些密鑰在另一臺機器..在我的電腦創建了兩個.reg文件import這些價值registry

first.reg

Windows Registry Editor Version 5.00 

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows Kits\Installed Roots] 
"KitsRoot"="C:\\Program Files\\Windows Kits\\8.0\\" 
"WindowsDebuggersRoot"="C:\\Program Files\\Windows Kits\\8.0\\Debuggers\\" 
"AppVerifier64BitAutomationRoot"="C:\\Program Files\\Application Verifier\\" 
"AppVerifier32BitAutomationRoot"="C:\\Program Files\\Application Verifier\\" 

second.reg

Windows Registry Editor Version 5.00 

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Kits\Installed Roots] 
"KitsRoot"="C:\\Program Files\\Windows Kits\\8.0\\" 
"WindowsDebuggersRoot"="C:\\Program Files\\Windows Kits\\8.0\\Debuggers\\" 
"AppVerifier64BitAutomationRoot"="C:\\Program Files\\Application Verifier\\" 
"AppVerifier32BitAutomationRoot"="C:\\Program Files\\Application Verifier\\" 

一旦兩個文件都創建了double click on those .reg文件即可在這些位置添加密鑰.. Great!!現在它適用於我!

相關問題