Переустановка встроенных приложений windows 10

Windows 10 comes with a number of built-in universal apps such as Start menu, Cortana, Microsoft Edge browser, Xbox, Microsoft store, photos, paint 3D, one-note, skype etc. These are default build-in apps that come pre-installed while installing upgrade to windows 10. Sometimes after a recent windows 10 upgrade, you may notice certain apps missing. Or after installing the latest updates, Apps does not perform properly, Crashes, or Not respond. Or for some others number of apps get broken and not work properly.

In Such Causes, we recommend resetting the app following the steps below.

  • Press Windows + I keyboard shortcut to open the Settings app,
  • Click on apps then Apps and features,
  • Now select the problematic app and click on Advanced options
  • Scroll down and click on the reset option,
  • Click reset again to reset the app to its default setup.

But if the reset option didn’t fix the problem, Or apps missing after Windows 10 1903 Upgrade, Here is how to restore removed apps on windows 10

Contents

  • 1 How To Re-register default Windows apps
    • 1.1 Reinstall All Built-in Apps in Windows 10
    • 1.2 Reinstall a Specific Built-in App in Windows 10
  • 2 Reset your PC to its default settings

How To Re-register default Windows apps

You Can Re-install or Re-register Build-in Windows apps by performing some command line on Windows PowerShell. Here step by step guide to re-install a particular default app or all the default built-in apps on your Windows 10 computer using PowerShell commands.

Reinstall All Built-in Apps in Windows 10

To Re-install All Built-in Windows apps

  1. Open the Windows PowerShell with administrative privileges.
  2. You can do this by press win + X and select PowerShell ( admin ).
  3. Now copy/paste the command below on PowerShell and hit the enter key to execute the same.

Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}

It then tries to install all of the default apps on Windows 10 for the account you are currently logged in to.  Or you can use the below command to Re-register Windows Apps for All Users :

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

If one of the default apps is already installed on the computer, then you get shown the name of it in red. Simply Ignore the Red lines after complete the command Restart windows to get a fresh start. Now check apps related problems get resolved.

Reinstall a Specific Built-in App in Windows 10

If you Getting problems with any specific windows app and others working properly then no need to Re-register / Reinstall All apps by performing above command. Check the below commands to Re-register only a Specific windows app.

  • Again open PowerShell (admin) by press Win + X and select.
  • On the Administrator PowerShell prompt copy/paste command below and hit enter to execute the same.
  • 3D Builder:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *3DBuilder*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Alarms & Clock:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsAlarms*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • App Connector:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *AppConnector*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Calculator:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsCalculator*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Calendar and Mail:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *windowscommunicationsapps*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Camera:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsCamera*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Candy Crush Soda Saga:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *CandyCrushSodaSaga*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Connect:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *PPIProjection*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Contact Support:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *ContactSupport*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Cortana:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Windows.Cortana*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Feedback Hub:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsFeedbackHub*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Get Office:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftOfficeHub*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Get Started:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *GetStarted*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Mail and Calendar:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *windowscommunicationsapps*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Maps:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsMaps*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Messaging:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Messaging*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Microsoft Edge:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftEdge*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Microsoft Solitaire Collection:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftSolitaireCollection*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Money:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingFinance*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Movies & TV:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *ZuneVideo*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • News:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingNews*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • OneNote:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Office.OneNote*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Paint 3D:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MSPaint*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • People:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *People*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Phone:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *CommsPhone*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Phone Companion:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsPhone*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Photos:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Photos*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Settings:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *immersivecontrolpanel*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Skype:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *SkypeApp*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Sports:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingSports*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Sticky Notes:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *MicrosoftStickyNotes*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Microsoft Store:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *microsoftStore*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Sway:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Office.Sway*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Twitter:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *Twitter*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Voice Recorder:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *WindowsSoundRecorder*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Weather:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *BingWeather*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Xbox:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *XboxApp*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

  • Xbox One SmartGlass:

PowerShell -ExecutionPolicy Unrestricted -Command “& {$manifest = (Get-AppxPackage *XboxOneSmartGlass*).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”

Note: windows add new apps regularly. So may the app you are getting problem not listed above then you can follow the below steps to re-register the specific app.

On Admin PowerShell type Get-AppxPackage -AllUsers | Select Name, PackageFullName and hit the enter key. This will display available packages (for installation) on your computer. look for the App that you want to re-register (re-install) for the current user. ( for ex we want to re-install Skype app )

Here first copy the package name by select and press Ctrl + C and paste on notepad. ( for ex: Microsoft.SkypeApp_11.8.204.0_x64__kzf8qxf38zg5c ) and the perform command below.

Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “C:\Program Files\WindowsApps\PackageFullName\appxmanifest.xml” -DisableDevelopmentMode

Note: Replace the package name which you copied from PowerShell. This means the command would be like bellow

Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “C:\ProgramFiles\WindowsApps\Microsoft.SkypeApp_11.8.204.0_x64__kzf8qxf38zg5c\appxmanifest.xml” -DisableDevelopmentMode

Press enter and wait until executing the command, After that Restart windows and check the specific which you recently re-install working properly.

Reset your PC to its default settings

If the above solutions didn’t fix the problem then Reset this PC is probably a good fix that reinstalls Windows 10 without affecting your files and folder.

  • Open Settings.
  • Click on Update & Security.
  • Click on Recovery.
  • Under “Reset this PC,” click the Get Started button.

Select the Keep may files options. and follow on-screen instructions to reset Windows 10 Without effecting files.

Did this help to reinstall preinstalled apps for windows 10? Let us know on the comments below, also read:

  • How to Remove Activate Windows 10 watermark permanently
  • Windows 10 laptop won’t wake up from sleep mode? Here how to fix it
  • Fix error status 0xc000012f Bad Image Error on Windows 10 
  • Fix This App Has Been Blocked For Your Protection in Windows 10
  • How To Update, Re-install, Roll Back Device Drivers in Windows 10

Привет друзья! Если у вас не запускается или некорректно работает какое-либо из встроенных в Windows 10 приложений: Магазин (Windows Store), Календарь, Музыка, Карты, Почта, Погода, Новости и другие, то самое распространённое на сегодняшний день решение, это просто переустановить проблемное приложение с помощью командной оболочки Windows PowerShell, что довольно трудно для начинающего пользователя. Но спешу обрадовать вас, в новейшей сборке Windows 10 build 1607 переустановка проблемного приложения происходит очень просто в окне системных параметров операционной системы.

Как переустановить стандартные приложения в Windows 10

Предлагаю для примера переустановить на моём ноутбуке магазин приложений для Windows 10 (Windows Store). С данным приложением многие пользователи часто испытывают проблемы, оно то не хочет открываться, а иногда наоборот аварийно закрывается во время работы и спасает только перезагрузка.

Откройте меню «Пуск» и щёлкните левой мышью на кнопке «Параметры»

«Система»

«Приложения и возможности»

Выберите проблемное приложение и щёлкните на нём левой мышью.

«Дополнительные параметры»

Жмите на кнопку «Сбросить»

Ещё раз жмём «Сбросить»

Происходит сброс всех параметров выбранного приложения. 

Видим галочку рядом с кнопкой сброса, это значит, что операция успешно завершена.

Теперь приложение заработает должным образом!

In previous tutorials, we told you how to uninstall and remove all or some of built-in modern apps in Windows 10:

[Tip] How to Uninstall Modern Apps in Windows 10

[Guide] How to Remove All Built-in Apps in Windows 10

If you removed some or all built-in apps in Windows 10 and now you want to restore them in your computer, this tutorial will help you.

Today in this tutorial, we’ll tell you how to reinstall built-in apps in Windows 10 using PowerShell program:

We have divided this tutorial in 2 parts:

  • PART 1: Reinstall a specific built-in app in Windows 10
  • PART 2: Reinstall all built-in apps in Windows 10

Now lets start the tutorial:

STEP 1:

As usual we’ll need to open PowerShell as Administrator to execute the required commands.

Open Start Menu and type powershell. It’ll automatically start searching for the program and will show PowerShell in search results. Now press Ctrl+Shift+Enter keys together to launch PowerShell as Administrator. Alternatively, you can right-click on PowerShell and select “Run as Administrator” option.

PS: If you have replaced Command Prompt with PowerShell in WIN+X menu, you can directly launch it from there. [See this]

STEP 2:

Now you’ll need to execute commands in PowerShell as mentioned in following steps:

PART 1: Reinstall a Specific Built-in App in Windows 10

If you want to reinstall any specific app, you can use following command to restore that particular app:

Add-AppxPackage -register appxmanifest.xml_file_path -DisableDevelopmentMode

As you can see, the above mentioned command requires an essential parameter which is the full path of appxmanifest.xml file. Actually all modern apps contain this XML file in their program files folder and this XML file is required to restore the app.

All modern apps are stored in following folder:

C:\Program Files\WindowsApps

This folder is hidden as well as restricted. Check this guide to learn more about this folder. This folder contains several sub-folders (with the same name as the app’s PackageFullName info) which contain required files of all modern apps. You’ll find one appxmanifest.XML file in all those folders.

1. So to restore an app, you’ll need to know the PackageFullName information of that app which can be found using following command:

Get-AppxPackage -allusers | Select Name, PackageFullName

Get_Installed_Apps_List_All_Users_Windows_10.png

Now select the PackageFullName information of your desired app and press Enter key to copy it to clipboard.

2. Now execute following command to restore that app:

Add-AppxPackage -register “C:\Program Files\WindowsApps\PackageFullName\appxmanifest.xml” -DisableDevelopmentMode

Replace PackageFullName term in above command with the copied PackageFullName information from step 1. Just press CTRL+V keys together to paste copied PackageFullName information.

Reinstall_Specific_App_Windows_10.png

That’s it. It’ll reinstall the app. If you receive any error message, ignore it. You may need to restart the computer.

If you want, you can reinstall all built-in modern apps in a single step using following command:

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

Reinstall_All_Apps_Windows_10.png

This command will take a few moments and will reinstall all built-in apps. If you receive any error message, ignore it. You may need to restart the computer to take effect.

If you face any problem in restoring apps in Windows 10, you can also try the Reset this PC feature of Windows 10 to restore Windows 10 to factory settings which will perform a clean installation of Windows 10 and will restore all bundled modern apps.

Check out following tutorial to learn how to use Reset this PC feature in Windows 10:

How to Perform Clean Installation of Windows 10 with Activation?

You are here: Home » Troubleshooting Guides » [Guide] How to Reinstall All Default Built-in Apps in Windows 10

Некоторым людям не нравятся универсальные приложения, которые устанавливаются по умолчанию в Windows 10, и хотят от них избавиться. Они могут вручную удалить большинство из них с помощью приложения «Настройки» или PowerShell, чтобы удалить все или только некоторые из них. Такие приложения, как календарь, почта, камера, фотографии или Candy Crush Soda Saga, могут быть удалены с компьютера с Windows 10 в кратчайшие сроки. Вопрос в том, как вернуть все стандартные Windows 10, когда вы узнаете, что они вам нужны, или когда они сломаны и больше не работают правильно? В этом руководстве мы покажем вам, как переустановить и заново зарегистрировать все приложения по умолчанию, которые поставляются с Windows 10. Вы не должны беспокоиться, поскольку это простой и простой процесс. Давайте начнем.

Важные вещи, которые нужно знать, прежде чем идти дальше

Шаги, которые мы покажем вам в этом руководстве, помогут вам переустановить все стандартные приложения из Windows 10, включая Microsoft Store. Однако обратите внимание, что все, что мы показываем, протестировано и подтверждено, что оно работает только в последней версии Windows 10 с обновлением от апреля 2018 года .

Если у вас более старая версия Windows 10, вы можете выполнить шаги, которые мы показываем, чтобы вернуть встроенные приложения, но вы не сможете переустановить Microsoft Store . Единственный проверенный способ вернуть Microsoft Store в более старые версии Windows 10, а затем иметь возможность устанавливать другие приложения, — это выполнить чистую установку Windows 10.

Шаг 1. Откройте PowerShell от имени администратора

Прежде всего, вы должны открыть PowerShell с правами администратора. Самый быстрый способ сделать это — использовать панель поиска Cortana на панели задач. Введите «PowerShell», щелкните правой кнопкой мыши (или нажмите и удерживайте) результат Windows PowerShell, а затем нажмите или нажмите «Запуск от имени администратора».

После запуска PowerShell вы должны увидеть окно, похожее на это:

Шаг 2. Запустите команду переустановки и перерегистрации для встроенных приложений Windows 10

Чтобы переустановить все встроенные приложения Windows 10, которые вы удалили с течением времени, все, что вам нужно сделать, это запустить определенную команду. Введите или скопируйте и вставьте следующую команду в окно PowerShell:

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

После того, как вы ввели вышеуказанную команду в Powershell, нажмите Enter.

Windows 10 сразу же начинает переустановку и перерегистрацию всех встроенных приложений по умолчанию. Обратите внимание, что этот шаг может занять некоторое время, в зависимости от скорости вашего ПК с Windows 10.

Шаг 3. Перезагрузите устройство Windows 10

После завершения выполнения команды PowerShell отображает текущий путь к папке. Там не отображаются сообщения или дополнительные подтверждения. Закройте PowerShell и перезагрузите компьютер или устройство с Windows 10. При входе в систему вы должны найти все отсутствующие приложения по умолчанию для Windows 10.

Что если некоторые из ваших восстановленных приложений все еще не работают?

Если ваши встроенные приложения Windows 10 переустанавливаются, но все еще не работают должным образом, есть еще одна вещь, которую вы должны попробовать, прежде чем терять надежду: запустить средство устранения неполадок приложений Магазина Windows.

Вы можете найти его в приложении Настройки, раздел Обновления и безопасность → Устранение неполадок.

Нажмите или нажмите на Приложения Магазина Windows и следуйте инструкциям мастера устранения неполадок.

Если он обнаружит что-либо, что может повлиять на работу универсальных приложений на вашем ПК с Windows, он произведет необходимый ремонт. Когда этот процесс будет завершен, он должен попросить вас перезагрузить компьютер или устройство с Windows 10.

Перезагрузитесь и проверьте, правильно ли работают ваши приложения. Если это не так, извините, но лучшее, что вы можете сделать, — это сбросить или переустановить Windows 10.

Заключение

Как видите, вернуть все приложения по умолчанию для Windows 10 может быть легко, и это не должно занять слишком много времени. В конце концов, это все о запуске одной команды PowerShell . Знаете ли вы другие способы вернуть встроенные приложения в Windows 10? Не стесняйтесь, дайте нам знать в разделе комментариев ниже.

Просмотров: 1 596

,

In a previous tutorial, we mentioned the available way(s) to uninstall an app in Windows 10. In this tutorial I ‘ll show you how to re-install a particular default app or all the default built-in apps on your Windows 10 computer again, by using PowerShell commands. 

Attention: Keep in mind, that from my experience, the easiest and safest way to reinstall all the default apps to your  system, is to perform a Windows 10 Repair with an in-place upgrade.

This tutorial contains two parts:

Part 1. How to Re-install (re-register) a Particular App in Windows 10.
Part 2. How to re-install All Default Built-in Apps in Windows 10.

How to re-install Default Apps in Windows 10.

Step 1. Open PowerShell with Administrative privileges.

First you had to open Windows PowerShell as Administrator. To do that:

1. At Cortana’s search box, type powershell *

* Note: On Windows 8, 8.1: Press the «Windows» + «S» keys to open the search box and type powershell.

 re-install Default Built-in apps

2. Right click on Windows PowerShell on the results and select Run as administrator.

Step 2. Re-install Apps in Windows 10.

Part 1. How to Re-install (re-register) a Particular App in Windows 10.

1. Before you proceed to re-install a specific App in Windows 10, first you should know the Package’s Full Name (PackageFullName) of the App you want to re-install (re-register) for the current user. To get a list of all available packages give this command in PowerShell (Admin) window:

  • Get-AppxPackage -AllUsers | Select Name, PackageFullName

re-install particular App

2. The output of the above command is a list that displays of available packages (for installation) on your computer. Look at the list and locate the full name of the package (at the  PackageFullName column) of the App that you want to re-register (re-install) for the current user. (e.g. let’s say that we want to uninstall the «Windows Calculator» App).

Tip: If you want to copy & paste the Name or the PackageFullName to another location (e.g. to your Clipboard), just double-click on it until highlighted, and use Ctrl+C and Ctrl+V keyboard commands to do your job.

re-install Default Built-in Apps

3. To re-install (re-register) a particular app in Windows 10 (for the current user only), you have to give this command* in PowerShell (Admin) window:

  • Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register «C:\Program Files\WindowsApps\PackageFullName\appxmanifest.xml» -DisableDevelopmentMode

* Note: In the above command, replace the «PackageFullName» value with the PackageFullName of the corresponding App you see on the output list.

(In our example, the PackageFullName is: «Microsoft.WindowsCalculator_10.1601.49020.0_x86__8wekyb3d8bbwe«). So, the command should be:

Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register «C:\Program Files\WindowsApps\Microsoft.WindowsCalculator_10.1601.49020.0_x86__8wekyb3d8bbwe\AppxManifest.xml»}

4. Finally hit Enter.

Part 2. How to re-install All the Default Built-in Apps in Windows 10.

– To re-install (re-register) all the built-in apps in Windows 10, type the following command in PowerShell (Admin):

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

install default built in apps all users

That’s it!

If this article was useful for you, please consider supporting us by making a donation. Even $1 can a make a huge difference for us in our effort to continue to help others while keeping this site free:

  • Author
  • Recent Posts

Konstantinos is the founder and administrator of Wintips.org. Since 1995 he works and provides IT support as a computer and network expert to individuals and large companies. He is specialized in solving problems related to Windows or other Microsoft products (Windows Server, Office, Microsoft 365, etc.).

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Microsoft windows 8 build 9200 enterprise rtm x64
  • Как открыть файлы windows на mac os x
  • Windows 10 enterprise ltsc evaluation key
  • Вы стали жертвой подделки программного обеспечения windows 7 7601
  • Windows media center тема