Главная > Uncategorized > [Решено] PowerShell Удаление встроенных приложений Microsoft Store

[Решено] PowerShell Удаление встроенных приложений Microsoft Store

Get-AppxPackage * | ogv
Get-AppxPackage *xbox* | remove-appxpackage
Get-AppxPackage *skype* | remove-appxpackage
Get-AppxPackage *Bing* | remove-appxpackage
Get-AppxPackage *Messaging* | remove-appxpackage
Get-AppxPackage *3D* | remove-appxpackage
Get-AppxPackage *People* | remove-appxpackage
Get-AppxPackage *Maps* | remove-appxpackage
Get-AppxPackage *Zune* | remove-appxpackage
Get-AppxPackage *Advertising* | remove-appxpackage
Get-AppxPackage *Solitaire* | remove-appxpackage
Get-AppxPackage *OneNote* | remove-appxpackage
Get-AppxPackage *officehub* | Remove-AppxPackage
Get-AppxPackage *getstarted* | Remove-AppxPackage
Get-AppxPackage *phone* | Remove-AppxPackage

#Вот это у меня не сработало
#Чтобы переустановить Магазин Windows, введите следующее:

$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + ‘\AppxManifest.xml’ ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register «$($_.InstallLocation)\AppXManifest.xml»}

за основу взял тут

#И еще вариант
Get-ChildItem ‘C:\Program Files\WindowsApps’ -Directory | %{Remove-AppxPackage $_.name}

Categories: Uncategorized Tags:
  1. Пока что нет комментариев.
  1. Пока что нет уведомлений.