GTXPlayer
Well-Known Member
- Joined
- Apr 11, 2014
- Messages
- 47
- Thread Author
- #1
Hi,
I decided that I wanted to remove certain built-in apps from my Windows 10 device by using commands in powershells. Now it appears, I entered the wrong command and ended up messing up all of my apps. Now I can barely use any of them. However, I only need 1 of them that is broken. I can't fix it using the normal commands in Powershell. It simply doesn't work.
The app I want to reinstall is the Xbox app. To make sure I hadn't screwed up it's installation, I used the following code to attempt to uninstall it. However, it said that I had to be admin to uninstall (which I am), or that the program may not be able to be uninstalled even if I am admin.
Code I used to attempt an uninstall:
get-appxpackage *xbox* | remove-appxpackage
I then proceeded to try and install it again, in an attempt to overwrite the current files. that didn't work either.:
Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.XboxApp_11.13.6008.0_x64__8wekyb3d8bbwe\appxmanifest.xml" -DisableDevelopmentMode
It gave me this error in the Powershell window:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF6, Package could not be registered. An internal error occurred with error 0x80073D05. See Troubleshooting packaging, deployment, and query of Windows Store apps - Windows app development for help.
I did that and found this which matches the error name:
0x80073D05
An error occurred while deleting the package's previously existing application data.
You get this error if the simulator is running. Close the simulator.
End result after reading the clickable link:
The Visual Studio 2015 simulator does not include the geolocation button. This is because the Windows 10 simulator does not include geolocation simulation. If you need to do this kind of simulation, you can use the Visual Studio 2013 simulator on Windows 8.1 or earlier operating systems."
Now I'm stuck. I'm on Windows 10, so I can't have the Simulator running. Even if I did, I don't know what it's name is.
Thanks. Any help is certainly appreciated
- Lewis
I decided that I wanted to remove certain built-in apps from my Windows 10 device by using commands in powershells. Now it appears, I entered the wrong command and ended up messing up all of my apps. Now I can barely use any of them. However, I only need 1 of them that is broken. I can't fix it using the normal commands in Powershell. It simply doesn't work.
The app I want to reinstall is the Xbox app. To make sure I hadn't screwed up it's installation, I used the following code to attempt to uninstall it. However, it said that I had to be admin to uninstall (which I am), or that the program may not be able to be uninstalled even if I am admin.
Code I used to attempt an uninstall:
get-appxpackage *xbox* | remove-appxpackage
I then proceeded to try and install it again, in an attempt to overwrite the current files. that didn't work either.:
Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.XboxApp_11.13.6008.0_x64__8wekyb3d8bbwe\appxmanifest.xml" -DisableDevelopmentMode
It gave me this error in the Powershell window:
Add-AppxPackage : Deployment failed with HRESULT: 0x80073CF6, Package could not be registered. An internal error occurred with error 0x80073D05. See Troubleshooting packaging, deployment, and query of Windows Store apps - Windows app development for help.
I did that and found this which matches the error name:
0x80073D05
An error occurred while deleting the package's previously existing application data.
You get this error if the simulator is running. Close the simulator.
End result after reading the clickable link:
The Visual Studio 2015 simulator does not include the geolocation button. This is because the Windows 10 simulator does not include geolocation simulation. If you need to do this kind of simulation, you can use the Visual Studio 2013 simulator on Windows 8.1 or earlier operating systems."
Now I'm stuck. I'm on Windows 10, so I can't have the Simulator running. Even if I did, I don't know what it's name is.
Thanks. Any help is certainly appreciated
- Lewis