powershell 添加和删​​除Windows存储来自Powershell / CMD的应用程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 添加和删​​除Windows存储来自Powershell / CMD的应用程序相关的知识,希望对你有一定的参考价值。

# To hide the console, see:
# https://gist.github.com/NitaiPerez/6d665465e0a6e7b63b21ce7e57fbf0cc

# Sideload windows store app using .appxbundle file:
# Enable sideload apps in settings ().
Add-AppxPackage <app name>.appxbundle

#Remove package:
Remove-AppxPackage -package <package name>

#List installed packages:
Get-AppxPackage <package name>
Get-AppxPackage *<part of name>*

# Remove by partial name (with piping):
Get-AppxPackage <package name> | Remove-AppxPackage
Get-AppxPackage *<part of name>* | Remove-AppxPackage

以上是关于powershell 添加和删​​除Windows存储来自Powershell / CMD的应用程序的主要内容,如果未能解决你的问题,请参考以下文章

添加和删​​除视图时出现问题

添加和删​​除 UIStackViews 弄乱了我的 UIScrollView

添加和删​​除文件以不完全重写文件的最有效方法是啥?

sql 添加和删​​除Postgres jsonb子键特有的元素:简短Set实现

windows powershell怎么关闭

Powershell - 删除除最高数字之外的所有内容