补充命令.

Signed-off-by: lion.chan <cy187lion@sina.com>
This commit is contained in:
lion.chan 2023-03-11 08:52:11 +08:00
parent 5fee211544
commit 2ced229b7c
1 changed files with 11 additions and 5 deletions

View File

@ -43,22 +43,28 @@ choco list -li
# 安装
choco install 软件包名
choco install <软件包名>
# 安装时指定代理
choco install --proxy=127.0.0.1:7892 <软件包名>
# 强制安装
choco install --force <软件包名>
# 搜索软件
choco search 软件包名
choco search <软件包名>
# 查看软件包详情
choco info 软件包名
choco info <软件包名>
# 卸载
choco uninstall 软件包名
choco uninstall <软件包名>
# 查看需要更新的软件列表
choco outdated
# 更新指定软件包
choco upgrade 软件包名 -y
choco upgrade <软件包名> -y
# 更新所有软件
choco upgrade all -y