VS 2012 で実行されているツールで PreEmptive Dotfuscator と Analytics を選択すると、以下の問題に直面しています。ポップアップするのは例外です。
どうすれば解決できますか?
VS 2012 で実行されているツールで PreEmptive Dotfuscator と 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"
問題は鍵だったmissing in both registry location
..
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows Kits\Installed Roots
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Kits\Installed Roots
私は別のマシンでそれらのキーを見つけました..そして、私のコンピューターでこれらの値に2つの.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\\"
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!!
今は私のために働いています!!