7

このエラーに言及している投稿をいくつか見つけましたが、役に立たなかったものはありません。新しい C# Windows ストア プロジェクトを作成し、シミュレーターでビルドして実行しようとすると、Visual Studio で次のエラーが発生します。

Error   1   Error : DEP0700 : Registration of the app failed. error 0x80072EE4: The Visual Elements extension failed while processing the Notification element. (0x80073cf6)    TestDeploy

別の投稿で言及されている Power Shell コマンドの実行の詳細を次に示します。

12/18/2012 3:03:59 PM   404 Error   error 0x80073CF6: AppX Deployment operation failed. The specific error text for this failure is: error 0x80072EE4: The Visual Elements extension failed while processing the Notification element.  
12/18/2012 3:03:59 PM   401 Error   Deployment Register operation on Package cc8bb3bb-d444-4dbe-ae12-64684b12b727_1.0.0.0_neutral__2awvr17ztw74c from:  (C:\Users\myself\documents\visual studio 2012\Projects\TestDeploy\TestDeploy\bin\Debug\AppX\AppxManifest.xml)  failed with error 0x80073CF6. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues.   
12/18/2012 3:03:59 PM   605 Information The last successful state reached was PackagesInUseClosed.  
12/18/2012 3:03:59 PM   300 Error   error 0x80073CF6: Cannot register the cc8bb3bb-d444-4dbe-ae12-64684b12b727_1.0.0.0_neutral__2awvr17ztw74c package due to the following error: Package could not be registered.
.   
12/18/2012 3:03:59 PM   316 Error   error 0x80072EE4: Cannot register the cc8bb3bb-d444-4dbe-ae12-64684b12b727_1.0.0.0_neutral__2awvr17ztw74c package because the following error was encountered during the registration of the windows.visualElements extension: <Error message string not found>.    
12/18/2012 3:03:59 PM   306 Error   error 0x80072EE4: While installing the cc8bb3bb-d444-4dbe-ae12-64684b12b727_1.0.0.0_neutral__2awvr17ztw74c package, the system failed to register the windows.visualElements extension due to the following error: <Error message string not found>.    
12/18/2012 3:03:59 PM   5092    Error   error 0x80072EE4: The Visual Elements extension failed while processing the Notification element.   
12/18/2012 3:03:57 PM   10002   Information Creating Resiliency File C:\ProgramData\Microsoft\Windows\AppRepository\4850558d-7f7f-4109-9376-3b78bf5acc86_S-1-5-21-1715567821-179605362-839522115-27106_1.rslc for Register Operation on Package cc8bb3bb-d444-4dbe-ae12-64684b12b727_1.0.0.0_neutral__2awvr17ztw74c.    
12/18/2012 3:03:57 PM   603 Information Started deployment Register operation on a package with main parameter: file:///C:/Users/myself/documents/visual%20studio%202012/Projects/TestDeploy/TestDeploy/bin/Debug/AppX/AppxManifest.xml. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues.   
12/18/2012 3:03:57 PM   301 Information The calling process is C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe   

何か案は?プロジェクトの全員に完全な制御を与え、何度も再起動し、Visual Studio の再インストールを試み、Visual Studio を管理者として実行しています。どんな助けでも大歓迎です!

4

5 に答える 5

6

私が見つけた別のGoogle検索からの提案に基づいて、explorer.exeを強制終了して再起動することで、これを「機能」させました。私には本当に意味が分からないか、確実に機能しているように見えますが、少なくとも時々機能します... oO

編集

機能するより恒久的な解決策は、Visual Studio 2012 の再インストールと Visual Studio Update 1 のインストールを組み合わせることでした。

于 2012-12-19T16:48:48.940 に答える
1

同じエラーが発生し、私の場合は、explorer.exe のサイクリングも、Update 3 での Studio 2012 Ultimate のアンインストール/再インストールも機能しませんでした。

「管理者として実行」でVisual Studio 2012を起動するとうまくいきました

于 2013-09-26T22:22:28.827 に答える
0

この問題は、ローカル マシンとシミュレータの両方にアプリをインストールするために何かを行う必要があるようです

于 2013-01-17T12:26:44.653 に答える
0

私の場合、WP 8.1 プロジェクトを複製し、複製したプロジェクトにいくつかのコードをマージします。マージを行った後、エミュレーターにデプロイすると「パッケージを登録できません」というメッセージが表示されました。

しかし、元の WP 8.1 プロジェクトはエミュレーターで正常に実行されています。

根本的な原因は、アプリのロゴの png 画像を削除したことです。VS2013 は、画像が見つからないことを通知しませんが、「パッケージを登録できません」と表示します。

お役に立てれば。

于 2014-02-18T08:57:31.587 に答える