LoginSignup
0
0

More than 3 years have passed since last update.

ClickOnce 実行ボタンが表示されない問題

Last updated at Posted at 2020-02-18

問題

 ClickOnce配信によるアプリケーションを起動しようとしたときに、以下のイメージのように、
 「実行ボタン」が表示されず、起動できない。
アプリケーションの実行.png

解決策

 レジストリに問題がある。
 以下のようにDisabledになっていると思われるので、Enabledに変更することで改善する。

[HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\.NETFramework\Security\TrustManager\PromptingLevel]
"MyComputer"="Disabled"
"LocalIntranet"="Disabled"
"Internet"="Disabled"
"TrustedSites"="Disabled"
"UntrustedSites"="Disabled"

参考

 詳細は以下のサイトを確認してください。
 https://docs.microsoft.com/ja-jp/visualstudio/deployment/how-to-configure-the-clickonce-trust-prompt-behavior?view=vs-2015&redirectedfrom=MSDN

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0