注:将会删除Windows10自带的所有应用,包括应用商店(使用Windows PowerShell执行)。
系统账户:
get-appxprovisionedpackage -online | remove-appxprovisionedpackage –online
所有账户:
get-appxpackage -alluser | remove-appxpackage
当前帐户:
get-appxpackage | remove-appxpackage
其它账户:
get-appxpackage - user <username> | remove-appxpackage
网友评论