- Удаление приложений по умолчанию в Windows 10 через PowerShell
- Запуск PowerShell с правами админстратора
- Удаление стандартных приложений из PowerShell
- Удаление приложений для всех пользователей
- Get-Appx Package
- Syntax
- Description
- Examples
- Example 1: Get all app packages for every user account
- Example 2: Get an app package for a specific a user
- Parameters
- Inputs
- Outputs
- Get-Appx Package Manifest
- Syntax
- Description
- Examples
- Example 1: Get the manifest for an app package
- Example 2: Get the application ID for an app package
- Example 3
- Parameters
- Inputs
- Outputs
- Как удалить встроенные приложения Windows 10
- Удаление встроенных приложений Windows 10
- Удалить 3D Builder
- Удалить Магазин (Microsoft Store)
- Удалить Paint 3D
- Удалить приложение Skype
- Удалить приложения Xbox
- Удалить Будильники и часы
- Удалить Ваш телефон
- Удалить Записки
- Удалить Запись голоса
- Удалить Калькулятор
- Удалить Камера
- Удалить Карты
- Удалить Кино и ТВ (Майкрософт)
- Удалить Люди
- Удалить Музыка Groove
- Удалить Набросок на фрагменте экрана
- Удалить Погода
- Удалить Портал смешанной реальности
- Удалить приложения Почта и Календарь
- Удалить Тарифные планы
- Удалить Советы
- Удалить Сообщения
- Удалить Средство 3D-просмотра
- Удалить Техническая поддержка
- Удалить Фотографии (Microsoft Photos)
- Удалить Центр отзывов
Удаление приложений по умолчанию в Windows 10 через PowerShell
В Windows 10 по умолчанию предустановленно множество различных приложений по умолчанию. Многие из этих приложений постоянно вмешиваются в работу системы, насильно переназначая файловые ассоциации на себя (особо часто это пытаются сделать приложения Groove Music и Movies & TV). Удалить некоторые из этих приложений стандартными средствами не получится, и сделать это можно только с помощью командной строки PowerShell.
Запуск PowerShell с правами админстратора
Запустить консоль PowerShell можно следующим образом:
- Открываем меню Пуск и набираем там PowerShell
- В результатах поиска видим «Windows PowerShell», нажимаем на нем правой кнопкой, и выбираем пункт «Запустить от имени администратора».
Удаление стандартных приложений из PowerShell
- Удалить приложение Microsoft Solitaire Collection
- Удалить приложение Office
- Удалить приложение Office OneNote
- Удалить приложение Paint 3D
- Удалить приложение Print 3D
- Удалить приложение Skype
- Удалить приложение XBox
- Удалить приложение Будильник и часы
- Удалить приложение Ваш телефон
- Удалить приложение Записки
- Удалить приложение Запись голоса
- Удалить приложение Люди
- Удалить приложение Камера
- Удалить приложение Карты
- Удалить приложение Кино и видео
- Удалить приложение Меню игры
- Удалить приложение Музыка Groove
- Удалить приложение Набросок на фрагменте экрана
- Удалить приложение Погода
- Удалить приложение Портал смешанной реальности
- Удалить приложение Почта
- Удалить приложение Советы
- Удалить приложение Сообщения
- Удалить приложение Тарифные планы
- Удалить приложение Техническая поддержка
- Удалить приложение Центр отзывов
- Удалить приложение Яндекс Музыка
Так же можно удалить приложение Магазин (Store), НО в таком случае вы не сможете устанавливать другие приложения из Магазина Windows, так что стоит хорошенько подумать, прежде чем это делать.
Удаление приложений для всех пользователей
Воспользовавшись командами выше, вы успешно удалите приложения — но только для того пользователя, под которым выполняете данные команды. Если же, на данном компьютере будет работать другой пользователь, то эти действия никак не повлияют на его набор приложений. Если же нужно удалить приложения для всех пользователей персонального компьютера, то нужно в первую часть команды дописать параметр -allusers , а во вторую -AllUsers . В итоге команда приобретет вот такой вид:
Используя данные два параметра, можно запросто удалить большинство приложений из Windows 10 для всех пользователей.
Get-Appx Package
Gets a list of the app packages that are installed in a user profile.
Syntax
Description
The Get-AppxPackage cmdlet gets a list of the app packages that are installed in a user profile. An app package has an .msix or .appx file name extension. To get the list of packages for a user profile other than the profile for the current user, you must run this command by using administrator permissions.
Examples
Example 1: Get all app packages for every user account
This command lists the app packages that are installed for every user account on the computer.
Example 2: Get an app package for a specific a user
This command displays information about Package17 if it is installed in the specified user profile.
Parameters
Indicates that this cmdlet lists app packages for all user accounts on the computer. To use this parameter, you must run the command by using administrator permissions.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the name of a particular package. If you specify this parameter, the cmdlet returns results for this package only. Wildcards are permitted.
Type: | String |
Position: | 1 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies one or more comma-separated types of packages that the cmdlet gets from the package repository. Valid values are:
By default, this cmdlet returns only packages of types Main and Framework.
Type: | PackageTypes |
Accepted values: | None, Main, Framework, Resource, Bundle, Xap |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the publisher of a particular package. If you specify this parameter, the cmdlet returns results only for this publisher. Wildcards are permitted.
Type: | String |
Position: | 2 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies a user. If you specify this parameter, the cmdlet returns a list of app packages that are installed for only the user that this cmdlet specifies. To get the list of packages for a user profile other than the profile for the current user, you must run this command by using administrator permissions. The user name can be in one of these formats:
- domain\user_name
- user_name@fqn.domain.tld
- user_name
- SID-string
Type: | String |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies an AppxVolume object. If you specify this parameter, this cmdlet returns only packages that are relative to volume that this parameter specifies.
Type: | AppxVolume |
Position: | Named |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
Outputs
Microsoft.Windows.Appx.PackageManager.Commands.AppxPackage
This cmdlet returns an AppxPackage object that contains information, including the full name of the app package.
Get-Appx Package Manifest
Gets the manifest of an app package.
Syntax
Description
The Get-AppxPackageManifest cmdlet gets the manifest of an app package. An app package has an .msix or .appx file name extension. The manifest is an .xml document that contains information about the package, like the package ID.
Examples
Example 1: Get the manifest for an app package
This command gets the manifest for an app package named package1_1.0.0.0_neutral__8wekyb3d8bbwe.
Example 2: Get the application ID for an app package
This command gets the application ID for an app package that has the string WinJS in the name.
Example 3
This command gets the capabilities for an app package that has the string ZuneMusic in the name.
Parameters
Specifies an AppxPackage object or the full name of a package. To get the manifest of a package on the computer that is not installed for the current user, you must run this command by using administrator permissions. Wildcards are permitted.
Type: | String |
Position: | 1 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies a user. This cmdlet gets the manifest of packages that are installed for the user that this parameter specifies. To get the list of packages for a user profile other than the profile for the current user, you must run this command by using administrator permissions. The user name can be in one of these formats:
- domain\user_name
- user_name@fqn.domain.tld
- user_name
- SID-string
Type: | String |
Position: | 2 |
Default value: | None |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
Microsoft.Windows.Appx.PackageManager.Commands.AppxPackage [ ]
This cmdlet accepts an array of AppxPackage objects that contain information, including the full name of the app package.
Outputs
System.XML.XMLDocument
This cmdlet returns a read-only .xml document that contains information about the app package, like the package ID.
Как удалить встроенные приложения Windows 10
В этой инструкции описаны способ удалить встроенные приложения Windows 10 и приложения из магазина Windows (Microsoft Store) с помощью Windows PowerShell.
Приложения Windows 10 бывают трех типов:
- предустановленные;
- системные;
- установленные.
Предустановленные и системные приложения обычно не имеют опции Удалить в стандартном способе удаления и удаляются с помощью PowerShell.
Удаление установленных приложений выполняется стандартным способом, через список приложений Windows.
PowerShell — расширяемое средство автоматизации от Microsoft с открытым исходным кодом, состоящее из оболочки с интерфейсом командной строки и сопутствующего языка сценариев.
Википедия
💡 Команды не позволяют удаление некоторых важных встроенных приложений, в том числе Cortana и Microsoft Edge и для работы требуют права администратора.
Для запуска Windows PowerShell щелкните по кнопке Пуск правой клавишей мыши и выберите пункт Windows PowerShell (администратор) .
Копируйте и вставляйте в PowerShell команды из этой статьи, нажимая кнопку Enter после каждой команды.
🔔 Удаление предустановленных и системных приложений Windows в Windows 10 является потенциально опасной операцией, действуйте на свой страх и риск!
Для просмотра предустановленных приложений Windows, выполните:
Get-AppxProvisionedPackage -Online | Format-Table DisplayName, PackageName
Для просмотра системных приложений Windows, выполните команду:
Get-AppxPackage -PackageTypeFilter Main | ? < $_.SignatureKind -eq "System" >| Sort Name | Format-Table Name, InstallLocation
Удаление встроенных приложений Windows 10
Удалить 3D Builder
Get-AppxPackage *Print3D* | Remove-AppxPackage
Удалить Магазин (Microsoft Store)
Get-AppxPackage *WindowsStore* | Remove-AppxPackage
Удалить Paint 3D
Get-AppxPackage *MSPaint* | Remove-AppxPackage
Удалить приложение Skype
Get-AppxPackage *SkypeApp* | Remove-AppxPackage
Удалить приложения Xbox
Удаление нескольких приложений связанных с Xbox: Xbox Game Bar, коспаньон консоли Xbox и др.
Get-AppxPackage *Xbox* | Remove-AppxPackage
Удалить Будильники и часы
Get-AppxPackage *WindowsAlarms* | Remove-AppxPackage
Удалить Ваш телефон
Get-AppxPackage *YourPhone* | Remove-AppxPackage
Удалить Записки
Get-AppxPackage *StickyNotes* | Remove-AppxPackage
Удалить Запись голоса
Get-AppxPackage *WindowsSoundRecorder* | Remove-AppxPackage
Удалить Калькулятор
Get-AppxPackage *windowscalculator* | Remove-AppxPackage
Удалить Камера
Get-AppxPackage *WindowsCamera* | Remove-AppxPackage
Удалить Карты
Get-AppxPackage *WindowsMaps* | Remove-AppxPackage
Удалить Кино и ТВ (Майкрософт)
Get-AppxPackage *ZuneVideo* | Remove-AppxPackage
Удалить Люди
Get-AppxPackage *People* | Remove-AppxPackage
Удалить Музыка Groove
Get-AppxPackage *ZuneMusic* | Remove-AppxPackage
Удалить Набросок на фрагменте экрана
Get-AppxPackage *ScreenSketch* | Remove-AppxPackage
Удалить Погода
Get-AppxPackage *BingWeather* | Remove-AppxPackage
Удалить Портал смешанной реальности
Get-AppxPackage *MixedReality* | Remove-AppxPackage
Удалить приложения Почта и Календарь
Команда удаляет два приложения: почта, календарь.
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
Удалить Тарифные планы
Get-AppxPackage *OneConnect* | Remove-AppxPackage
Удалить Советы
Get-AppxPackage *Getstarted* | Remove-AppxPackage
Удалить Сообщения
Get-AppxPackage *Messaging* | Remove-AppxPackage
Удалить Средство 3D-просмотра
Get-AppxPackage *3DViewer* | Remove-AppxPackage
Удалить Техническая поддержка
Get-AppxPackage *GetHelp* | Remove-AppxPackage
Удалить Фотографии (Microsoft Photos)
Get-AppxPackage *Windows.Photos* | Remove-AppxPackage
Удалить Центр отзывов
Get-AppxPackage *FeedbackHub* | Remove-AppxPackage
В зависимости от редакции Windows список предустановленных приложений может изменяться.