合 Windows之powershell系列
Tags: OSWindowspowershell
支持的 Windows 版本
获取PowerShell的版本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | C:\Users\lhrxxt>powershell Windows PowerShell 版权所有 (C) Microsoft Corporation。保留所有权利。 PS C:\Users\lhrxxt> $PSVersionTable Name Value ---- ----- PSVersion 5.1.17134.765 PSEdition Desktop PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} BuildVersion 10.0.17134.765 CLRVersion 4.0.30319.42000 WSManStackVersion 3.0 PSRemotingProtocolVersion 2.3 SerializationVersion 1.1.0.1 |
在 Windows 上安装 PowerShell
https://github.com/PowerShell/PowerShell/releases/download/v7.2.6/PowerShell-7.2.6-win-x64.msi
下载后,直接安装即可。
也可以使用winget安装如下:
1 2 3 4 5 6 7 8 9 10 11 12 | winget install --id Microsoft.Powershell --source winget -- 安装过程 PS C:\Users\lhr> winget install --id Microsoft.Powershell --source winget 已找到 PowerShell [Microsoft.PowerShell] 版本 7.2.6.0 此应用程序由其所有者授权给你。 Microsoft 对第三方程序包概不负责,也不向第三方程序包授予任何许可证。 Downloading https://github.com/PowerShell/PowerShell/releases/download/v7.2.6/PowerShell-7.2.6-win-x64.msi ██████████████████████████████ 102 MB / 102 MB 已成功验证安装程序哈希 正在启动程序包安装... 已成功安装 |