當我在VS 2012中選擇PreEmptive Dotfuscator和分析工具時,我遇到了下面的問題,這是一個例外情況,它彈出。「j8」的類型initilizer拋出異常Visual Studio 2012
我該如何解決它?
當我在VS 2012中選擇PreEmptive Dotfuscator和分析工具時,我遇到了下面的問題,這是一個例外情況,它彈出。「j8」的類型initilizer拋出異常Visual Studio 2012
我該如何解決它?
來源:http://www.preemptive.com/forum/topic?f=18&t=23523
如果您遇到了此錯誤信息,你可以請嘗試添加「HKEY_LOCAL_MACHINE \ SOFTWARE \ Wow6432Node \微軟\的Windows套件\安裝根\ KitsRoot」註冊表關鍵,並給它相同的值 「HKEY_LOCAL_MACHINE \ SOFTWARE \微軟\的Windows套件\安裝根\ 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
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!!
現在它適用於我!
謝謝,解決了這個問題。 – 2013-04-17 19:55:01
謝謝,它的工作。 – 2013-05-04 10:18:26