Как вернуть калькулятор в windows 10 powershell

To reinstall an individual app use PowerShell and run it in admin mode.
Screenshots:

http://imgur.com/a/mAKZe

Next get the full name of all apps, e.g. Windows Calculator paste this snippet in PowerShell and hit enter:

get-appxpackage -allusers | Select Name, PackageFullName

For single full name of the desired app name, e.g. Windows Calculator paste this snippet in PowerShell and hit enter:

Get-AppxPackage *windowscalculator*

Now copy the full name that looks like this:
Microsoft.WindowsCalculator_10.1601.49020.0_x64__8wekyb3d8bbwe

Finally the we are going to install that app again with this snippet:

Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.WindowsAlarms_10.1603.12020.0_
x64__8wekyb3d8bbwe\appxmanifest.xml" -DisableDevelopmentMode

Re-installed app is available without restart of the PC!

N.b: To remove individual apps use this code:
Get-AppxPackage *alarms* | Remove-AppxPackage

A list of all apps when removing is (Here)

To reinstall an individual app use PowerShell and run it in admin mode.
Screenshots:

http://imgur.com/a/mAKZe

Next get the full name of all apps, e.g. Windows Calculator paste this snippet in PowerShell and hit enter:

get-appxpackage -allusers | Select Name, PackageFullName

For single full name of the desired app name, e.g. Windows Calculator paste this snippet in PowerShell and hit enter:

Get-AppxPackage *windowscalculator*

Now copy the full name that looks like this:
Microsoft.WindowsCalculator_10.1601.49020.0_x64__8wekyb3d8bbwe

Finally the we are going to install that app again with this snippet:

Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.WindowsAlarms_10.1603.12020.0_
x64__8wekyb3d8bbwe\appxmanifest.xml" -DisableDevelopmentMode

Re-installed app is available without restart of the PC!

N.b: To remove individual apps use this code:
Get-AppxPackage *alarms* | Remove-AppxPackage

A list of all apps when removing is (Here)

Microsoft has replaced most of its legacy apps with modern apps in Windows 10 and Windows 11. This includes the Calculator app. Sometimes the Calculator app goes missing or is mistakenly uninstalled from the operating system.

It may also be possible that the files required to run the app are present on your PC, but the app itself doesn’t show up.

In this article, we will discuss how to fix Windows 10 calculator missing or how to install it again using different methods.

Table of contents

  • Install Calculator App on Windows
    • From Microsoft Store
    • Using Windows PowerShell
  • Fix Calculator App Not Working
    • Uninstall and Reinstall Calculator App
    • Run Windows Store Troubleshooter
    • Check for Updates
    • Run the System File Checker (SFC)
    • Reset the Windows Calculator App
    • Update Windows OS
  • Create Shortcut and Assign Shortcut Keys to Calculator App
  • What Windows Calculator Offers
  • Closing words

Install Calculator App on Windows

If your computer does not have the Calculator or has accidentally been deleted, there are multiple ways you can fix it. It can be reinstalled, or the current installation can be restored.

From Microsoft Store

You can download and install the application from the Microsoft Store. Note that you must be signed in to your profile using a Microsoft account to install the app.

Follow these steps to install the Calculator app from Microsoft Store:

  1. Open the Windows Calculator app page in Microsoft Store and click Get in Store app.

    Get in Microsoft Store

    Get in Microsoft Store
  2. You will now be prompted to open the Microsoft Store app. Click Open Microsoft Store.

    Open in Store

    Open in Store
  3. The Store app will now open showing the Windows Calculator page. Click Get to install the app.

    Get the Windows Calculator app

    Get the Windows Calculator app

    The app will now begin downloading and installing.

  4. When the installation is finalized, click Open.

    Open Windows Calculator

    Open Windows Calculator

The Calculator app should now be installed on your PC.

Using Windows PowerShell

Alternatively, you can also install the Windows Calculator app through Windows PowerShell using a single cmdlet.

Simply run the following cmdlet in an elevated PowerShell instance to install Windows Calculator:

Get-AppXPackage *WindowsCalculator* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Install Windows Calculator from PowerShell

Install Windows Calculator from PowerShell

After the app is installed, it can be accessed by searching for it from the Start menu or the search box in the taskbar. Alternatively, you can also type in calc in the Run Command box to launch the Windows Calculator app.

Open the Calculator app

Open the Calculator app

However, if this method did not work for you and it shows that the app is already installed but not showing up in your search results, then there are other methods to fix the problem.

Fix Calculator App Not Working

Uninstall and Reinstall Calculator App

Some users have reported that the Windows Calculator has somehow gone missing on their computers. However, upon trying to reinstall it using the method shared above, they are prompted with “The app is already installed.”

This is the perfect example of the installation packages remaining on the system, but the application is either removed or corrupted.

If you are in a similar situation, follow these steps to mitigate the issue and reinstall Windows Calculator:

  1. Open Windows PowerShell with elevated privileges and run the following cmdlet:

    get-appxpackage *Microsoft.WindowsCalculator* | remove-appxpackage

    Uninstall Windows Calculator from PowerShell

    Uninstall Windows Calculator from PowerShell

    This will remove all traces of the Calculator app from your PC.

  2. Now, run the following cmdlet to reinstall the Windows Calculator app:

    Get-AppXPackage *WindowsCalculator* -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Once the Calculator app is reinstalled, check to see if you can run it. This method usually solves the issues.

However, if you find that the method has failed, you can try the given solutions discussed below.

Run Windows Store Troubleshooter

The Windows operating system comes with built-in troubleshooters for different components. It also has a combined troubleshooter for all Microsoft Store applications. If you find that the Calculator app is installed but not running, you can run the Windows Store troubleshooter. Here is how:

  1. Navigate to the following:

    Settings app >> Update & security >> Troubleshoot >> Additional Troubleshooters
  2. Here, scroll down and click “Windows Store Apps” to expand it, and then click Run the Troubleshooter.

    Run Windows Store applications troubleshooter

    Run Windows Store applications troubleshooter

    The troubleshooting wizard will now run. As it does, it will automatically scan and detect any problems with any of the apps.

  3. Once this scan is complete (takes only a few seconds), it will recommend some actions to take or perform the less complex actions automatically to mitigate any detected issues. Follow the on-screen instructions and perform the necessary actions to fix the problem.

    Once done, close the wizard.

Now check to see if the problem has been solved and if you are able to run the Windows Calculator app.

Check for Updates

The first approach should be to check for any pending updates, both in Windows Updates as well as the Microsoft Store. Any pending updates can cause an application to malfunction.

  1. Open Microsoft Store and click on the Pending updates button in the top-right corner of the app.

    If you do not see this button, it means your applications are already up to date.

  2. Now click on Update all to begin updates for all Microsoft applications on your computer.

    get updates

    Install Store updates

Once all the applications have been updated, including Windows Calculator, relaunch the application and check if the error is resolved.

Run the System File Checker (SFC)

The System File Checker (SFC) is a preinstalled Command Prompt tool in Windows that attempts to repair corrupted system files by replacing them with redundant files. However, this also requires that the system image is healthy, so it can perform a successful repair.

SFC is a mechanism of the Windows File Protection feature.

Simply run the following cmdlet in an elevated Command Prompt and the tool will do the rest:

sfc /scannow

sfc

Run the SFC scan

The command will take a while to execute completely. When done, recheck if the Windows Calculator is functional now.

Reset the Windows Calculator App

If the method above did not work for you, try resetting the Calculator app. This will bring the app back to its default state.

  1. Navigate to the following:

    Settings app >> Apps
  2. Here, search for “calculator” in the text field.

    Search for Calculator 1

    Search for Calculator
  3. Now click on the Calculator app below and then click Advanced Options.

    Open advanced Calculator options

    Open advanced Calculator options
  4. On the next screen, scroll down and click Reset.

    Reset the Calculator app

    Reset the Calculator app
  5. When asked for confirmation, click Reset again.

    Confirm reset

    Confirm reset

    The app will now reset to its default settings, removing all data and cache.

After the Windows Calculator app has reset, check to see if you are able to run it.

Update Windows OS

If none of these solutions have worked so far, then try updating your Windows 10 operating system through Windows Updates, since Microsoft often publishes app updates through the Windows Update as well.

Install any pending updates using these steps:

  1. Navigate to the following

    Settings app >> Update & Security >> Windows Update
  2. Now click Check for updates.

    Check for updates windows 10

    Check for pending updates
  3. If any updates show up, we suggest that you install them.

  4. Once installed, restart the computer and check to see if it resolved the Windows Calculator app problem.

The given solutions ought to fix any issues with the Calculator app. Let us now move on to other useful tips for the app.

Create Shortcut and Assign Shortcut Keys to Calculator App

Using shortcut keys to perform simple tasks has always been our favorite in Windows 10. However, by default, there are no shortcut keys assigned to the Windows Calculator app. We can assign a combination of keys using which we can open the Calculator app from anywhere.

The method shared below will create a Calculator shortcut on your desktop and assign shortcut keys to it.

  1. Right-click on a blank space on the desktop, expand New from the context menu, and then click Shortcut.

    Create new shortcut Windows 10

    Create new shortcut
  2. Now enter the following path in the location text field inside the Create Shortcut wizard, and then click Next.

    C:\Windows\System32\calc.exe

    Enter path to Calculator app

    Enter path to Calculator app
  3. On the next screen, enter a name for the shortcut and click Finish.

    Assign a name to the shortcut

    Assign a name to the shortcut
  4. You will now see a Calculator icon on your desktop. Right-click it and then click Properties from the context menu.

    Open shortcut properties

    Open shortcut properties
  5. In the Properties window, click on the text field in front of the Shortcut Key under the Shortcut tab, and then press the shortcut keys which you wish to set.

    In this example, we have set it to set Ctrl + Shift + C.

    Assign shortcut keys

    Assign shortcut keys

    When done, click Apply and Ok.

Now you can access the Windows Calculator simply by pressing the shortcut keys from anywhere within Windows, or through the shortcut icon on your desktop.

What Windows Calculator Offers

Unlike our physical calculators, the Windows Calculator consists of various other features that can be used for the user’s convenience. Let us see what some of these handy features are.

Upon launching the application, you will see a window such as the one shown below.

calc1

Windows Calculator

Apart from the basic calculations which can be performed from the keypad, the top bar consists of various features.

You can check the old calculations performed by clicking the clock-like icon on the top-right, or clicking on the middle button to keep the calculator always on top of other applications.

The Standard indicates that the calculator is currently in Standard mode, which can be changed by clicking on the three bars left of it.

calc2

Check calculator history, switch modes

Upon clicking the three bars, you are presented with a list of options to choose from. The calculator can be converted into the Scientific mode for more complex calculations, or into Graphical mode to plot graphs from equations. The Programmer mode can be used to convert values between decimals, hexadecimal, octanes, or binary.

calc3

Calculator modes

Going further down the menu, the calculator also offers a range of different conversions for instant results.

calc4

Conversion options in Windows Calculator

These features indicate that this application can be extremely useful even when performing daily regular tasks.

If you do not like the Windows Calculator app, you can try these alternatives instead.

Closing words

The Windows Calculator is a handy application when it comes to solving complex mathematical equations and conversions. Rather than switching between devices for calculations, Microsoft offers a list of features within its application.

Windows Calculator can also be added to hotkeys for quick access from anywhere within Windows. If the application is missing or malfunctioning on your device, this article offers various fixes on different levels for you to troubleshoot.

How often do you use the calculator on your computer?

This is a common issue that can be easily fixed

by Matthew Adams

Matthew is a freelancer who has produced a variety of articles on various topics related to technology. His main focus is the Windows OS and all the things… read more


Updated on

  • One way to solve this is to reinstall the Windows 10 Calculator app by running a PowerShell command.
  • Also, resetting the Calculator app’s data through the «Apps & features» settings.
  • To restore the Calculator app and potentially fix any underlying issues you can factory reset Windows 10.

fix missing windows 10 calculator

Windows 10’s Calculator app is an invaluable tool that includes scientific and programming modes along with more basic math options.

Yet, some users have said on the Microsoft forum that their Windows 10 Calculator app has disappeared.

The Calculator app can go missing after users upgrade from Windows 7 to 10 or after Windows Updates. These are some of the resolutions that might restore a missing Windows 10 Calculator app.

In this article

  • How do I get my calculator back on Windows 10?
  • 1. Run the Windows 10 app troubleshooter
  • 2. Reinstall the Windows 10 App
  • 3. Turn on Windows Defender Firewall
  • 4. Reset Calculator’s data
  • 5. Reset Windows 10

How do I get my calculator back on Windows 10?

1. Run the Windows 10 app troubleshooter

  1. Press the Windows key + keyboard shortcut
  2. Input troubleshoot in the search box
  3. Click Troubleshoot Settings to open the window shown directly belowThe Troubleshoot tab windows 10 calculator missing
  4. Then click Windows Store Apps and its Run the troubleshooter buttonWindows Store Apps windows 10 calculator missing
  5. Go through the Windows Store Apps troubleshooter that opens

2. Reinstall the Windows 10 App

  1. Press the Windows + R
  2. Enter PowerShell in Run’s Open box, and click the OK button
  3. Enter this command in PowerShell:
    • get-appxpackage *Microsoft.WindowsCalculator* | remove-appxpackage
      • Press the Enter key after entering that command.remove-appxpackage command windows 10 calculator missing
  4. Then open the Windows Calculator page
  5. Click the Get button on that page to download and install the Calculator app

If PowerShell stops working, follow the steps from this guide to get it working again.

How we test, review and rate?

We have worked for the past 6 months on building a new review system on how we produce content. Using it, we have subsequently redone most of our articles to provide actual hands-on expertise on the guides we made.

For more details you can read how we test, review, and rate at WindowsReport.

3. Turn on Windows Defender Firewall

  1. Open Windows 10’s search utility.
  2. Input Windows Defender as the search keyword
  3. Click Windows Defender Firewall to open the window shown directly belowWindows Defender Firewall windows 10 calculator missing
  4. Click Turn Windows Defender Firewall on or off on the left of the Control Panel appletTurn on Windows Defender Firewall option windows 10 calculator missing
  5. Select both the Turn on Windows Defender Firewall checkboxes if WDF isn’t enabled
  6. Click the OK button

4. Reset Calculator’s data

  1. Open the search box in Windows 10
  2. Enter the keyword apps in the search box
  3. Click Apps & features to open the window shown directly belowApps & features tab windows 10 calculator missing
  4. Select the Calculator
  5. Click Advanced options to open the options shown directly belowReset button windows 10 calculator missing
  6. Press the Reset button, and click Reset again to confirm
  7. Restart Windows

5. Reset Windows 10

  1. Enter reset in Windows 10’s search utility
  2. Click Reset this PC to open the Settings window as in the snapshot directly belowThe Get started button windows 10 calculator missing
  3. Select the Get started option.Reset this PC window windows 10 calculator missing
  4. Select the Keep my files option
  5. Click the Next and Reset buttons to confirm

Need more info on how to factory reset your PC? Read this article and find out everything you need to know.

Note that you’ll need to reinstall third-party software after resetting the OS. You can also reinstall Windows 10 with the Windows Media Creation Tool.

Select the Upgrade this PC Now option in the Media Creation Tool to reinstall Windows 10 with both your own files and apps retained.

So, that’s how users can restore a missing Calculator app in Windows 10. Remember, however, that there are numerous Windows Calculator app alternatives on the MS Store, such as Calculator X8.

So, you don’t necessarily really need to restore the default Calculator app.

Do you use Windows 10’s Calculator app, or do you have any third-party software? Tell us about your preferences in the comment section below.

RELATED ARTICLES TO CHECK OUT: 

  • FIX: Calculator Doesn’t Work in Windows 10
  • How to Install Windows 7 Calculator on Windows 10
  • Calculator X8 for Windows 8, RT, Windows 10

newsletter icon

The classic Calculator has been replaced with a modern version of Calculator in Windows 10. The new Calculator app in Windows 10 sports a clean user interface and works great on touch devices as well.

In addition to the standard mode that you see by default upon launching the Calculator app with default settings, programmer and scientific modes are also available in the Calculator app. Besides that, the Calculator app includes a converter as well. The converter feature supports volume, length, energy, temperature, weight and mass, angle, pressure, data, time, power, area, and speed.

reset or reinstall Calculator in Windows 10

The Calculator in Windows 10 app usually works well without any issues. Over the last year, the app has been updated several times, and the app is quite stable now.

That said, if you’re having any issues while opening the Calculator app or using it, you can reset the app to fix the issue. If resetting the app didn’t help, you may reinstall Calculator to address the issue.

Refer to the given below directions to reset and reinstall the Calculator app in Windows 10.

Step 1: Open the Settings app and then navigate to System > Apps & features.

Step 2: Look for Calculator app entry. Click on Calculator app entry to see the Advanced options link. Click the Advanced options link.

reset or reinstall Calculator in Windows 10 step01

Step 3: This will open Storage usage and app reset page. Click the Reset button.

reset or reinstall Calculator in Windows 10 step02

Step 4: When you see the warning dialog with “This will permanently delete app’s date on this device, including your preferences and sign-in details” message, click the Reset button again to reset the Calculator app.

reset or reinstall Calculator in Windows 10 step03

A check sign should now appear next to the Reset button, indicating that the reset job is done successfully.

Reinstall the Calculator app via Settings

Step 1: Go to Settings > Apps > Apps & features page.

Step 2: Scroll down the page to see the Calculator entry. Click on the entry to reveal the hidden Uninstall button. Click the Uninstall button.

reset or reinstall the calculator app in Windows 10 pic3

Step 3: Once the Calculator is installed, launch the Store app, search for Windows Calculator, and then install the same. Simple as that!

reinstall the Calculator app in Windows 10

Reinstall Calculator app in Windows 10 via PowerShell

The built-in Calculator app can’t be uninstalled like other apps installed from Store. You need to either use the PowerShell or third-party program like CCleaner to uninstall the app. In this guide, we are using both PowerShell and CCleaner to uninstall the Calculator app.

Step 1: Open PowerShell with admin rights. To do so, type PowerShell in Start menu or taskbar search box, right-click on PowerShell entry, and then click Run as administrator.

reset or reinstall Calculator in Windows 10 step1

Step 2: Copy and paste the following command in the PowerShell window and then press the Enter key to execute the same.

Get-AppxPackage –AllUsers

reset or reinstall Calculator in Windows 10 step2

Step 3: Now, look for Microsoft.WindowsCalculator name.

reset or reinstall Calculator in Windows 10 step4

To quickly find its entry, right-click on the title bar of PowerShell, click Edit and then click Find. Enter Calculator in the box and then click Find the next button.

reset or reinstall Calculator in Windows 10 step3

Step 4: Copy the PackageFullName of WindowsCalculator by selecting it as shown in the picture below and then simultaneously pressing Ctrl + C hotkey.

reset or reinstall Calculator in Windows 10 step5

Step 5: Finally, execute the following command to uninstall Calculator from your Windows 10 install.

Remove-AppxPackage PackageFullName

In the above command, replace PackageFullName with the PackageFullName of Calculator that you copied in the previous step. That’s it!

reset or reinstall Calculator in Windows 10 step7

Step 6: Visit this page of Windows Store, click Install button to download install the official Calculator app again. As simple as that!

reinstall the Calculator app in Windows 10

Using CCleaner to uninstall Calculator

Alternatively, if you’re not familiar with the PowerShell, download, install and run CCleaner, click Tools, click Uninstall, select Calculator from the list and then click the Uninstall button. Click Yes button when you see the confirmation dialog to uninstall Calculator.

reset or reinstall calculator in Windows 10 pic1

Once uninstalled, visit this page of Store and install a fresh copy of Calculator.

Check out the full list of Windows 10 Calculator keyboard shortcuts.

  • Как вернуть к стандартным настройкам windows 10
  • Как вернуть интерфейс windows 10 в windows 11
  • Как вернуть интернет эксплорер windows 10
  • Как вернуть имя компьютера в windows 10 по умолчанию
  • Как вернуть значок этот компьютер на рабочий стол в windows 10