powershell 获取Windows“代号”[重复]

sczxawaw  于 2023-03-02  发布在  Shell
关注(0)|答案(2)|浏览(138)
    • 此问题在此处已有答案**:

How to get the correct Windows version from command line(1个答案)
22天前关闭。
是否有PowerShell命令可以检索Windows "代号"?
10.0.19042的"代号"为"20H2"。
是否存在包含"20H2"的Get-CimInstance类(或其他命令)?

PS C:\> $PSVersionTable.PSVersion.ToString()
7.3.2
jxct1oxe

jxct1oxe1#

从20H2开始,您可以在注册表项Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion的DisplayVersion值中找到此值。

(Get-Item "HKLM:SOFTWARE\Microsoft\Windows NT\CurrentVersion").GetValue('DisplayVersion')
63lcw9qa

63lcw9qa2#

我在Win11 22H2的Windows PowerShell 5.1中验证了这一点:

gin | select OSDisplayVersion | fl

相关问题