Windows 10 apps include one that can be called standard Windows apps, such asMail, Messaging, applications such as these can be uninstalled via PowerShell commands (method http://ycrsjxy.blog.51cto.com/618627/1727776). The installation location of this type of application isC:\Program Files\windowsapps folder, this file is hidden by default and has access restrictions and must be accessed when accessing this folder.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/78/70/wKioL1Z8uaeDnGNmAALzcPRElM8135.jpg "style=" float: none; "title=" snapshot 1_ see king. jpg "alt=" wkiol1z8uaedngnmaalzcprelm8135.jpg "/>
Select "Properties" "Security"
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/78/71/wKiom1Z8uZLSBReCAADc9DptejY980.jpg "style=" float: none; "title=" snapshot 2_ see king. jpg "alt=" wkiom1z8uzlsbrecaadc9dptejy980.jpg "/>
Modifies the current user as the owner.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M02/78/70/wKioL1Z8uanz4VcCAAG7riOkiKE893.jpg "style=" float: none; "title=" snapshot 3_ see king. jpg "alt=" wkiol1z8uanz4vccaag7riokike893.jpg "/>
This allows you to access the folder
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/78/71/wKioL1Z809bg8ES7AAapUr4etMk107.jpg "title=" Snapshot 4.jpg "alt=" Wkiol1z809bg8es7aaapur4etmk107.jpg "/>
Each folder corresponds to an app, and the folder name contains:
Application name such as Microsoft.xboxapp,
Architecture architecture such as X64,
Version number: such as 5.6.17000.0,
Apply full name Packagefullname:microsoft.xboxapp_5.6.17000.0_x64__8wekyb3d8bbwe,
Package family name PackageFamilyName:Microsoft.XboxApp_8wekyb3d8bbwe
Publisher ID (publisherid): 8wekyb3d8bbwe
Each file contains a parameter file appxmanifest.xml.
How do we reinstall this type of app when we uninstall it?
Install an App
Operation Process:
1. Run Powershell with Administrator privileges
2. Run get-appxpackage-allusers | Select Name, Packagefullname
Gets the package full name of the app that needs to be reinstalled Packagefullname
3. Run add-appxpackage-register "C:\Program files\windowsapps\packagefullname\ Appxmanifest.xml "-disabledevelopmentmode
Packagefullname Replace the full name of the package obtained by the above command. Complete the installation.
Security for all applications
Get-appxpackage-allusers | foreach {add-appxpackage-register "$ ($_. installlocation) \appxmanifest.xml "-disabledevelopmentmode}
This article is from the "Start from the Heart" blog, please be sure to keep this source http://ycrsjxy.blog.51cto.com/618627/1728232
Reinstall Apps for Windows 10