このエラーが発生します
''System.Security.SecurityException: Requested registry access is not allowed.
at System.ThrowHelper.ThrowSecurityException(ExceptionResource resource)''
レジストリにキーを追加しようとすると。アプリケーションの requestedExecutionLevel は「requireAdministrator」であることに言及します。ClickOnce のセキュリティ設定を有効にして、requestedExecutionLevel を "asinvoker" のままにしておく方がよいでしょうか?
これは、VB.NET コードの構造です。
Try
[my code]
Catch sec As Security.SecurityException
[another block of code]
Catch ex As Exception
[another block of code]
End Try
「on error resume next」ステートメントを使用することをお勧めしますか? このエラーが発生する理由を教えてください。
VB.NET、Visual Studio 2008 (Vista Ultimate x86 と Windows 7 Ultimate x64 でエラーが発生し、管理者アカウントでログインしました)