PowerShell 技能连载 - 查找操作系统架构信息
这是获取您操作系统信息的一行代码:
1 | Get-WmiObject -Class Win32_OperatingSystem | Select-Object -Property *OS* |
结果看起来类似如下:
1 | ForegroundApplicationBoost : 2 |
如果您想知道这些数字代表什么意思,可以在网上搜索 Win32_OperatingSystem
第一个链接就会引导您到对应的 MSDN 文档。
如果您想从一个远程系统中获取信息,请使用 -ComputerName
和 –Credential
参数。
PowerShell 技能连载 - 查找操作系统架构信息
http://blog.vichamp.com/2016/10/11/finding-operating-system-architecture-information/