英文:
How to see the scope of an already winget installed package?
问题
如何查看已使用 winget
安装的已安装包的安装范围?
winget install --scope machine -i -e xxxx
英文:
How can I see the install scope of an already installed package, that has been previously with installed using winget
?
winget install --scope machine -i -e xxxx
答案1
得分: 1
Use winget list
使用 --scope machine
,但请注意您需要从一个 提升的 会话中运行(对于 --scope user
不需要)。
# 需要提升权限
winget list --scope machine
英文:
<!-- language-all: sh -->
Use winget list
with --scope machine
, but note that you need to run from an elevated session (not necessary for --scope user
)
# REQUIRES ELEVATION
winget list --scope machine
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论