此脚本有效,但发布 id 字段中 .csv 的输出是与注册表项关联的所有内容。我想要的只是发布 ID 号(1909、1809、1709)。我如何编辑这个脚本只是为了只将该信息写入输出文件?下面是我现在得到的输出示例。下面是我正在使用的脚本。
我现在得到的输出。
@{ReleaseId=1909; PSPath=Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion; PSParentPath=Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT; PSChildName=CurrentVersion; PS
我正在使用的脚本如下。
$Computers = get-content "C:\Temp\computers.txt"
$( foreach ($Computer in $Computers)
{
$result = Invoke-Command -ComputerName $Computer -scriptBlock { Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion' -Name ReleaseId }
[PSCustomObject]@{
ComputerName = $Computer
ReleaseID = $Result
}
} ) | Export-Csv "C:\Temp\GetReleaseID.csv" -NoType
Invoke-Item "C:\Temp\GetReleaseID.csv"
用于
Select-Object
选择对象属性。有关此 cmdlet 的详细信息,请运行
Get-Help Select-Object -Full