Вернуть удаленные приложения по умолчанию в Windows 10

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

Windows PowerShell:

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

 

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

Remove all apps except Windows Store app from All Accounts at once:
Get-AppxPackage -AllUsers | where-object {$_.name –notlike “*store*”} | Remove-AppxPackage

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

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

You can take help of Get-AppxPackage and Remove-AppxPackage commands to uninstall/remove built-in apps in Windows 10.

Get-AppxPackage command can be used to get a list of all installed modern apps in your computer. Remove-AppxPackage command is used to remove an app from Windows 10 computer.

If you want to remove an app, these commands will require an essential information about that app i.e. PackageFullName (the full package name of the modern app).

So first we’ll need to get the PackageFullName of our desired modern app which we want to remove from our computer.

1. Just run following command in PowerShell to get a list of all installed apps:

Get-AppxPackage

This command will output a long list of all installed apps containing lots of information about each app. But we only need the PackageFullName information of our desired app, so run following filtered command:

Get-AppxPackage | Select Name, PackageFullName

This command will show only the name of the app and its PackageFullName information. Now the output will be easy to read and understand.

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

3. Now to remove the app from your computer, you’ll need to run following command:

Get-AppxPackage PackageFullName | Remove-AppxPackage

In above mentioned command, replace PackageFullName with the copied information from step 2. You can also take help of wildcards (such as *) to make the PackageFullName parameter easy to type.

For example, if you want to remove 3DBuilder app, the command to remove it will be as following:

Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Remove All Built-in Apps in Windows 10

PART 2: Remove All Built-in Apps in Windows 10

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

Get-AppxPackage | Remove-AppxPackage

The above mentioned command will uninstall the apps from your current user account only.

Command to uninstall all built-in apps for all user accounts:

Get-AppxPackage -allusers | Remove-AppxPackage

Command to uninstall all built-in apps for a particular user account:

Get-AppxPackage -user username | Remove-AppxPackage

NOTE: We’ll not advise you to uninstall all built-in apps using these commands as it may break some functionality of Windows 10 OS. Also you may not be able to restore all modern apps in future.

Windows 10: Удаление программ по умолчанию

Запускаем PowerShell от админа:

 

 

Для получения списка приложений:
Get-AppxPackage -User username

Удаляем приложение 3D из Windows 10
Get-AppxPackage *3d* | Remove-AppxPackage

Удаляем приложение Camera из Windows 10
Get-AppxPackage *camera* | Remove-AppxPackage

Удаляем приложение Mail and Calendar из Windows 10
Get-AppxPackage *communi* | Remove-AppxPackage

Удаляем приложение Money, Sports, News and Weather из Windows 10
Get-AppxPackage *bing* | Remove-AppxPackage

Удаляем приложение Groove Music and Film & TV из Windows 10
Get-AppxPackage *zune* | Remove-AppxPackage

Удаляем приложение People из Windows 10
Get-AppxPackage *people* | Remove-AppxPackage

Удаляем приложение Phone Companion из Windows 10
Get-AppxPackage *phone* | Remove-AppxPackage

Удаляем приложение Photos из Windows 10
Get-AppxPackage *photo* | Remove-AppxPackage

Удаляем приложение Solitaire Collection из Windows 10
Get-AppxPackage *solit* | Remove-AppxPackage

Удаляем приложение Voice Recorder из Windows 10
Get-AppxPackage *soundrec* | Remove-AppxPackage

Удаляем приложение Xbox из Windows 10
Get-AppxPackage *xbox* | Remove-AppxPackage

Удаляем приложение maps из Windows 10
Get-AppxPackage *maps* | Remove-AppxPackage

Удаляем приложение store из Windows 10
Get-AppxPackage *store* | Remove-AppxPackage

Удаляем приложение onenote из Windows 10
Get-AppxPackage *onenote* | Remove-AppxPackage

Удаляем приложение office из Windows 10
Get-AppxPackage *office* | Remove-AppxPackage

Microsoft.AAD.BrokerPlugin
Microsoft.Windows.CloudExperienceHost
Microsoft.Windows.Cortana
Windows.PrintDialog
HoloShell
Windows.ContactSupport
Microsoft.XboxGameCallableUI
CortanaListenUIApp
Microsoft.Windows.ParentalControls
Microsoft.Windows.HolographicFirstRun
Microsoft.BioEnrollment
Microsoft.Messaging
Microsoft.MicrosoftStickyNotes

Scroll to top