当我在 VS 2012 中运行的工具中选择 PreEmptive Dotfuscator and Analytics 时,我遇到了以下问题,这是一个弹出的异常。
我该如何解决?
当我在 VS 2012 中运行的工具中选择 PreEmptive Dotfuscator and Analytics 时,我遇到了以下问题,这是一个弹出的异常。
我该如何解决?
来自:http ://www.preemptive.com/forum/topic?f=18&t=23523
如果您遇到此错误消息,请尝试添加“HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows Kits\Installed Roots\KitsRoot”注册表项,并将其值与“HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Kits\已安装的 Roots\KitsRoot"
感谢史蒂夫http://exe-steve.blogspot.in/2013/06/visual-studion-dotfuscator-community.html
如果您遇到此错误消息,请尝试添加
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows Kits\Installed Roots\KitsRoot
注册表项并为其赋予相同的值
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Kits\Installed Roots\KitsRoot
问题是钥匙是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
第一个.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\\"
第二个.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!!
现在它对我有用!