Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: Registration of the app failed

While trying to deploy an app from Visual Studio, I'm getting an error. I have already set developer mode and also deleted the app package from the packages folder, but it still won't work.

Here's the error message:

Error : DEP0700 : Registration of the app failed. Deployment Register operation with target volume C: on Package App_1.0.0.2_x64__m0fsgersa29a0 from: (AppxManifest.xml) failed with error 0x80070002. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues. (0x80073cf9)

Do I need to set anything else?

like image 706
Tarak Avatar asked Aug 08 '15 04:08

Tarak


6 Answers

I know there is already an accepted answer, but I had a totally different problem with the same excact error message. When th app was running I took a look in the SQLite database with a program that I didn't close when I uninstalled the app and re-run it from Visual Studio. I think that Visual Studio couldn't overwrite the database as I was 'using' it.

Closed the program and voila the app run smoothly.

Hope this helpes anybody else as I was stuck for precious hours!

like image 142
Michael Avatar answered Nov 19 '22 06:11

Michael


I got this when attempting to debug a project from a shared folder.

Opening the project from a local folder first resolved the issue.

like image 17
Michael Ribbons Avatar answered Nov 19 '22 06:11

Michael Ribbons


In Windows 10 there are two possible cause of this problem are as follows,

  1. Previously installed app is locked and preventing VS to delete while deploying the application. Goto C:\Users\{you user}\AppData\Local\Packages and delete the folder of your application. Now rebuild and deploy your application.(this was the solution in Windows 8 devices as well)

  2. If it is still not working, double check if you have removed the below entry from appxmanifest file. If you are targeting Desktop Name="Windows.Desktop" entry should be there in the file. If it is Phone, Name="Windows.Mobile" should be there in the TargetDeviceFamily. You can have both in the configuration but sometimes Microsoft will suggest to keep separate configuration when you submit the application for STARTS testing.

< Dependencies> < TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" /> < /Dependencies>

Hope this help in figuring out the reason and solution for "Error : DEP0700 : Registration of the app failed" error.

like image 9
Nidheesh Puthalath Avatar answered Nov 19 '22 05:11

Nidheesh Puthalath


Don’t worry, the solution is actually very simple.

Error: DEP0700: Registration of the app failed. An internal error occurred.

So you’ve started your Windows 8 app development journey. All things are going smooth until one day you hit this error when trying to run/debug your app. The error says “Error: DEP0700: Registration of the app failed. An internal error occurred with error 0x80073D05. See http://go.microsoft.com/fwlink/?LinkId=235160 for help diagnosing app deployment issues. (0x80073cf6)”

This is a very cryptic error and does not give you any info about what the problem actually is. The problem is that Visual Studio is not able to delete the application data in your local packages folder.

Don’t worry, the solution is actually very simple. On your Windows 8 machine, go to C:\Users\\AppData\Local\Packages\ folder. There you will find a folder that has your application’s Package Family Name in it – you just need to delete that folder. The issue is that while your app is in development, it might have a random GUID as its Package Family Name, so the folder will also have that random GUID as its name which makes it hard to know which folder belongs to your app. Again, that is easy to find as well. Right click your project in Visual Studio and click properties. The value you see in the “Package Family Name” field is the name you should look for in the folder. Simply delete it and build your solution again and it will run like a charm.

Read more details at http://paraswadehra.blogspot.com/2012/12/error-dep0700-registration-of-app.html

like image 4
Zia Ur Rahman Avatar answered Nov 19 '22 04:11

Zia Ur Rahman


For me this was caused by being signed in with my Microsoft account in windows instead of the local user account. Logging in as a local user fixed this.

like image 3
Deca Avatar answered Nov 19 '22 04:11

Deca


I got this when I tried to run the project from a ReFS filesystem. Running from NTFS worked. My error code was 0x80073cfd.

like image 1
Austin Avatar answered Nov 19 '22 04:11

Austin