Windows 10 – How to Reinstall the Calculator App

calculatorpowershellwindows 10

I uninstalled the Calculator app like this in PowerShell:

Get-AppxPackage *windowscalculator* | Remove-AppxPackage

How do I reinstall it?

Best Answer

This one worked for me, just combined the commands from the other answers found here. Note: you have to use the -Allusers option with the Get-AppxPackage command since it is not installed anymore under your current user account:

Get-AppxPackage -allusers *windowscalculator* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
Related Question