You installed a fresh copy of Windows 11, but the Calculator app is nowhere to be found. This can happen when using custom installation media, enterprise deployment tools, or a Windows image that excludes certain built-in apps. The Calculator app is part of the Microsoft Store system packages, and if it is missing, you cannot perform basic arithmetic from the Start menu. This article explains why the Calculator app is absent from a fresh Windows 11 image and provides three reliable methods to restore it without reinstalling the entire operating system.
Key Takeaways: Restore Calculator on a Fresh Windows 11 Install
- Microsoft Store > Library > Get updates: Installs missing in-box apps including Calculator without manual search.
- Windows PowerShell (Admin) > Get-AppxPackage windowscalculator: Re-registers the Calculator package from the system image.
- Windows Package Manager (winget) > winget install 9WZDNCRFHVN5: Downloads and installs the Calculator app from the Microsoft Store repository.
Why the Calculator App Is Missing From a Fresh Windows 11 Image
The Calculator app is a Microsoft Store packaged application that ships as part of the Windows 11 system image. When you use a standard retail installation from Microsoft, the app is present by default. However, several scenarios cause it to be missing after a fresh install.
Enterprise IT administrators often create customized Windows images using tools such as the Microsoft Deployment Toolkit or System Center Configuration Manager. These images may exclude non-essential Store apps to reduce image size or meet compliance requirements. If you deployed Windows 11 from such an image, the Calculator app will not appear.
Another common cause is the use of third-party installation media that strips out built-in apps. Some lightweight Windows builds remove Calculator along with other apps like Weather and Sticky Notes. Additionally, if you selected a Windows 11 edition such as Windows 11 Pro for Workstations or a special N edition, certain media features may be limited, but Calculator should still be present unless the image was modified.
The root technical reason is that the Calculator package Microsoft.WindowsCalculator_8wekyb3d8bbwe is not provisioned in the image. The provisioning system in Windows 11 determines which apps are available for new user accounts. When the package is missing from the image, no user account will have access to Calculator after the first boot.
Method 1: Install Calculator From the Microsoft Store
The simplest method is to download Calculator directly from the Microsoft Store. This works on any Windows 11 edition that has internet access and a working Microsoft Store client.
- Open the Microsoft Store
Click the Start button and type Microsoft Store. Select the top result to launch the app. - Go to the Library tab
In the Microsoft Store window, click the Library icon in the left sidebar. It looks like a stack of books. - Check for updates
Click the Get updates button at the top right. The Store will scan for missing or outdated in-box apps. If Calculator is detected as missing, it will begin downloading automatically. - Search for Calculator manually
If the automatic update does not work, click the Search box at the top, type Windows Calculator, and press Enter. On the Calculator app page, click the Install button.
After the installation finishes, you can open Calculator from the Start menu or by typing calc in the Run dialog (Win + R).
Method 2: Re-register Calculator Using PowerShell
If the Microsoft Store method fails or you do not have internet access, you can re-register the Calculator package using PowerShell. This method works if the package files still exist in the system image but are not registered for the current user.
- Open PowerShell as Administrator
Right-click the Start button and select Windows Terminal (Admin) or PowerShell (Admin). Click Yes when prompted by User Account Control. - Check if the Calculator package is present
Type the following command and press Enter:Get-AppxPackage -AllUsers windowscalculator
If no output appears, the package is not installed in the system image. If output appears, the package is present but not registered for your user account. - Re-register the Calculator package
Type the following command and press Enter:Get-AppxPackage -AllUsers windowscalculator | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
This command registers the package from its existing installation location. - Verify the installation
Typecalcin the Run dialog or search for Calculator in the Start menu. If the app appears, the re-registration succeeded.
If the Get-AppxPackage command returned no output, proceed to Method 3, which installs the package from the Microsoft Store repository using winget.
Method 3: Install Calculator Using Windows Package Manager
Windows Package Manager (winget) is a command-line tool included in Windows 11. It can install Calculator from the Microsoft Store repository without opening the Store app.
- Open Windows Terminal or Command Prompt
Right-click the Start button and select Windows Terminal or Command Prompt. You do not need administrator rights for this method. - Run the winget install command
Type the following command and press Enter:winget install 9WZDNCRFHVN5
The ID 9WZDNCRFHVN5 is the unique identifier for the Windows Calculator app in the Microsoft Store repository. - Accept the source agreement if prompted
If winget asks you to agree to the source terms, type Y and press Enter. The tool will then download and install Calculator automatically. - Launch Calculator
After the installation completes, type calc in the Run dialog or search for Calculator in the Start menu.
Winget is the most reliable method when the Microsoft Store app itself is broken or when you are working with a heavily stripped-down Windows image. It does not depend on the Store client being fully functional.
If Calculator Still Does Not Appear After These Methods
Some Windows images are so aggressively stripped that the Calculator package is not available in the system image or the Microsoft Store repository. In such cases, you need to restore the full set of in-box apps using a DISM command.
“Calculator is missing after using a custom Windows image”
If you deployed Windows 11 from a custom image that removed Calculator entirely, you can attempt to restore all missing in-box apps by running the following command in an elevated PowerShell session:
Get-AppxPackage -AllUsers | Where-Object {$_.PackageFullName -like "Microsoft.WindowsCalculator"} | Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"
If this command produces no output, the package is not present in the image at all. You must either reinstall Windows 11 from a standard retail image or manually download the Calculator app package from a trusted source and install it using Add-AppxPackage.
“Calculator opens but closes immediately”
If Calculator appears after installation but crashes on launch, the app package may be corrupted. Reset the app by going to Settings > Apps > Installed apps, find Calculator, click the three-dot menu, and select Advanced options. Click the Reset button and then Repair. This clears the app data and re-registers the package.
“All Store apps are missing, not just Calculator”
If your Windows 11 image is missing multiple Store apps, you can reinstall the entire set of in-box apps using a PowerShell command. Run the following command as Administrator:
Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
This command re-registers every Store app present in the system image. It does not install apps that were removed from the image. For a complete restoration, you need the original Windows 11 installation files.
Restore Calculator vs Reinstall Windows 11: Which Approach Works Best
| Item | Restore Calculator | Reinstall Windows 11 |
|---|---|---|
| Time required | 2 to 10 minutes | 30 to 60 minutes plus app reinstallation |
| Internet required | Only for Store or winget method | Yes, unless using local media |
| Affects other apps or data | No | Yes, all apps and settings are removed |
| Fixes missing system packages | Only Calculator or in-box apps | All system components |
| Best for | Single missing app on a working system | Multiple missing system components or corruption |
You can now restore the Calculator app on a fresh Windows 11 installation using the Microsoft Store, PowerShell re-registration, or the winget command. Start with the Store method because it requires the least technical effort. If that fails, use PowerShell to re-register the existing package. For stripped-down images, winget is the most reliable fallback. As an advanced tip, you can create a script that runs the winget install command during your deployment task sequence to ensure Calculator is always present on new machines.