Вернуть удаленные приложения по умолчанию в 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

Как убрать Яндекс директ рекламу / Yandex Direct remove

Заходим в раздел фильтров вашего блокировщика,
нажимаем Добавить фильтр
и вводим an.yandex.ru
Для отключения Google:
вводим googlesyndication.com

Также можно зайти в настройки “прочие” в почте и убрать галочку с “показывать рекламу”

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.

Posts navigation

1 2
Scroll to top