我想知道是否有办法在 WMI 对象的表达式中添加 If 语句 | 选择 ...
这是我所拥有的:
Get-WmiObject -Class Win32_LogicalDisk -Filter DriveType=3 -ComputerName $ServersinFarm | Select @{Name='Server Name';Expression={$_.SystemName}} , DeviceID , @{Name="size(GB)";Expression={"{0:N1}" -f($_.size/1gb)}}, @{Name="freespace(GB)";Expression={"{0:N1}" -f($_.freespace/1gb)}}
我想在输出中添加一列如果写入错误的可用空间 < 10gb
有任何想法吗?