PowerShell 7:安装、运行与使用指南
1. PowerShell 7 安装方法
PowerShell 7 有多种安装方式,下面为你详细介绍:
- 从 .zip 文件安装
- 操作步骤 :
1. 创建新文件夹:
New-Item -Path c:\scratch\myPowershell\7.2 -ItemType Directory
2. 下载 .zip 包:
Invoke-WebRequest https://github.com/PowerShell/PowerShell/releases/download/v7.2.1/PowerShell-7.2.1-win-x64.zip -OutFile C:\scratch\myPowershell\7.2\PowerShell-7.2.1-win-x64.zip
3. 解压文件:
Expand-Archive C:\scratch\myPowershell\7.2\PowerShell-7.2.1-win-x64.zip -DestinationPath C:\scratch\myPowershell\7.2\
超级会员免费看
订阅专栏 解锁全文
167

被折叠的 条评论
为什么被折叠?



