無駄なトラフィックを無くしたかったのでストアアプリの削除を試みた。 これ参考に。
powershell で、
Get-AppXPackage | Remove-AppxPackage 
 とやったら、削除成功したが、左下コーナーのスタートボタンをクリックしても展開しなくなった。その右の検索ボタンも開かなくなった。
これで原因がわかったが、
 Microsoft.Windows.ShellExperienceHost を復活させる方法がわからない。
 http://www.rbrussell.com/2015/01/30/windows-10-build-9926-start-menu-cortana-search-action-center-metro-apps-wont-work/ 
 で復活。次のコマンドをコピペ実行すれば復活した。
Get-appxpackage -all *shellexperience* -packagetype bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + “appxmetadataappxbundlemanifest.xml”)}
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"}
その後、あらためて、
Get-AppxPackage | Where-Object {$_.Name -ne "Microsoft.Windows.ShellExperienceHost"} | Where-Object {$_.Name -ne "Microsoft.Cortana"} | Remove-AppxPackage 
Get-AppxPackage | Select-Object -Property Nameとやると、これだけになった。 一件落着。
Name ---- Microsoft.VCLibs.120.00
 Microsoft.VCLibs.120.00
 Microsoft.Cortana
 Microsoft.Windows.ShellExperienceHost
 CheckPoint.VPN
 f5.vpn.client
 FileManager
 JuniperNetworks.JunosPulseVpn
 Microsoft.MoCamera
 SonicWALL.MobileConnect
 windows.devicesflow
 windows.immersivecontrolpanel
 Windows.MtcUvc
 Windows.PrintDialog
 winstore 
---------------
 以上の記事はWindows10 Technical Preview 時代の話である。
 今回、ノートパソコンのWindows8.1からWindows10の本版にアップグレードする機会があったのでまたやってみた。(2015年12月14日)
- 次のコマンドで一括削除。
Get-AppxPackage | Where-Object {$_.Name -ne "Microsoft.Windows.ShellExperienceHost"} | Where-Object {$_.Name -ne "Microsoft.Cortana"} | Remove-AppxPackage Get-AppxPackage | Select-Object -Property Nameこれだけになった。
Name
 ----
 Microsoft.AAD.BrokerPlugin
 Microsoft.BioEnrollment
 Microsoft.Windows.CloudExperienceHost
 Microsoft.Windows.ShellExperienceHost
 windows.immersivecontrolpanel
 Microsoft.Windows.Cortana
 Microsoft.AccountsControl
 Microsoft.LockApp
 Microsoft.MicrosoftEdge
 Microsoft.Windows.ContentDeliveryManager
 Microsoft.Windows.ParentalControls
 Microsoft.Windows.SecondaryTileExperience
 Microsoft.WindowsFeedback
 Microsoft.XboxGameCallableUI
 Microsoft.XboxIdentityProvider
 Windows.ContactSupport
 Windows.MiracastView
 Windows.PrintDialog
 Windows.PurchaseDialog
 windows.devicesflow
 
 


