Share via


Re install App

Question

Thursday, August 8, 2019 3:55 PM

I accidentally removed provisioned app snip & sketch using below command in powershell. "Remove-AppXProvisionedPackage -Online -PackageName <PackageName>"

How can i get it back ?

All replies (3)

Thursday, August 8, 2019 6:30 PM

You could get it from Windows Store.

You may try visit Settings app > Apps > **Apps & features ** and find this App in there and click on Advanced option and then reset to reinstall it.

You could use the following command to reinstall using PowerShell, if you know package name:

Add-AppxPackage -register “C:\Program Files\WindowsApps\PackageFullName>” –DisableDevelopmentMode

To get package name try this command in PowerShell:

Get-Appxpackage –Allusers

And find package name in the list.


Thursday, August 8, 2019 9:24 PM

The instructions you provided installs back app for current user or the one who have profiles on the computer. but not for ppl who will signin in the future. i think that's what need help with since i removed provisioned package itself.


Friday, August 9, 2019 9:40 AM

Hi,

Check the information in the link below.

How to reinstall default apps in Windows 10

https://www.cnet.com/news/galaxy-note-10-plus-a-6-8-inch-phone-that-kills-the-headphone-jack/

Also for all users, we could use the command below restore default Windows 10 Apps

Get-AppxPackage -allusers | foreach {Add-AppxPackage -register “$($_.InstallLocation)\appxmanifest.xml” -DisableDevelopmentMode}

Regards,

Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact [email protected].