精品软件&插件
Last updated on
整理常用客户端下载入口、远程工具和可直接复制的 Windows 安装命令。
客户端
一键安装 PowerShell 7.6 和 Windows Terminal
winget install --id Microsoft.PowerShell -e --source winget --accept-package-agreements --accept-source-agreementswinget install --id Microsoft.WindowsTerminal -e --source winget --accept-package-agreements --accept-source-agreements一键安装 Git 和 Node.js
winget install --id Git.Git -e --source winget --silent --accept-package-agreements --accept-source-agreementswinget install --id OpenJS.NodeJS.LTS -e --source winget --silent --accept-package-agreements --accept-source-agreements远程工具
- ToDesk
- 向日葵
包管理工具
没有 winget 时的安装脚本
# 1. 下载 Winget 官方安装包
$url = "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle"
$outPath = "$env:TEMP\winget.msixbundle"
Write-Host "正在下载 Winget..." -ForegroundColor Cyan
Invoke-WebRequest -Uri $url -OutFile $outPath
# 2. 强制安装
Write-Host "正在安装..." -ForegroundColor Cyan
Add-AppxPackage -Path $outPath
# 3. 验证
Write-Host "完成!请尝试运行 winget -v" -ForegroundColor Green