- 此问题在此处已有答案**:
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
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
2条答案
按热度按时间jxct1oxe1#
从20H2开始,您可以在注册表项Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion的DisplayVersion值中找到此值。
63lcw9qa2#
我在Win11 22H2的Windows PowerShell 5.1中验证了这一点: