得之我幸 失之我命

when someone abandons you,it is him that gets loss because he lost someone who truly loves him but you just lost one who doesn’t love you.

删除 Win10 自带不可卸载的 uwp

win10个性化:
每次重新安装完win10都会预装一大堆uwp应用,其中还有不少是不能直接卸载的,那如果想要卸载怎么办呢?尤其xbox,过往的版本里都是不能卸载的,当然现在的版本是可以的
答案就是用powershell

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Get-AppxPackage *Alarms* | Remove-AppxPackage
Get-AppxPackage *Appconnector* | Remove-AppxPackage
Get-AppxPackage *Messaging* | Remove-AppxPackage
Get-AppxPackage *onenote* | Remove-AppxPackage
Get-AppxPackage *communi* | Remove-AppxPackage
Get-AppxPackage *xbox* | Remove-AppxPackage
Get-AppxPackage *bing* | Remove-AppxPackage
Get-AppxPackage *photos* | Remove-AppxPackage
Get-AppxPackage *communi* | Remove-AppxPackage
Get-AppxPackage *bing* | Remove-AppxPackage
Get-AppxPackage *zune* | Remove-AppxPackage
Get-AppxPackage *camera* | Remove-AppxPackage
Get-AppxPackage *soundrec* | Remove-AppxPackage
Get-AppxPackage *map* | Remove-AppxPackage
Get-AppxPackage *calcu* | Remove-AppxPackage
Get-AppxPackage *people* | Remove-AppxPackage

be yourself, everyone else is already taken.