此腳本正常工作以獲取操作系統版本。我需要知道誰得到僅限Microsoft Windows 10臨的結果獲取計算機操作系統版本
$Computers = Get-Content C:\computerlist
Foreach($Computer in $Computers)
{
Get-WmiObject Win32_OperatingSystem -ComputerName $Computer -ErrorAction SilentlyContinue | Select-Object CSName, Caption | sort CSName
}
是的,這是我需要完成的感謝Ocaso。我很抱歉我的英語不好。 –