Skip to content

Instantly share code, notes, and snippets.

@amano41
Created March 29, 2017 05:36
Show Gist options
  • Save amano41/a9424026fa76c4a5a9f0aa76aaca4db7 to your computer and use it in GitHub Desktop.
Save amano41/a9424026fa76c4a5a9f0aa76aaca4db7 to your computer and use it in GitHub Desktop.
Windows 10 の標準ストアアプリをアンインストールする
$store_apps = @(
"Microsoft.3DBuilder",
"Microsoft.WindowsAlarms",
"Microsoft.WindowsCalculator",
"microsoft.windowscommunicationsapps",
"Microsoft.WindowsCamera",
"Microsoft.MicrosoftOfficeHub",
"Microsoft.SkypeApp",
"Microsoft.Getstarted",
"Microsoft.WindowsMaps",
"Microsoft.BingFinance",
"Microsoft.ZuneMusic",
"Microsoft.ZuneVideo",
"Microsoft.BingNews"
"Microsoft.Office.OneNote",
"Microsoft.People",
"Microsoft.WindowsPhone",
"Microsoft.Windows.Photos",
"Microsoft.MicrosoftSolitaireCollection",
"Microsoft.BingSports",
# "Microsoft.WindowsStore",
"Microsoft.WindowsSoundRecorder",
"Microsoft.BingWeather",
"Microsoft.XboxApp",
"Microsoft.XboxIdentityProvider",
"Microsoft.Messaging",
"Microsoft.MicrosoftStickyNotes",
"Microsoft.WindowsFeedbackHub"
)
foreach ($app in $store_apps) {
Get-AppxPackage $app | Select-Object -Property Name, InstallLocation
Get-AppxPackage $app | Remove-AppxPackage
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment