所以我想在下面的PowerShell腳本中構建一個try方法。如果我拒絕訪問服務器,我希望它跳過該服務器。請幫助..在PowerShell中嘗試方法
[code]$Computers = "server1", "server2"
Get-WmiObject Win32_LogicalMemoryConfiguration -Computer $Computers | Select-Object `
@{n='Server';e={ $_.__SERVER }}, `
@{n='Physical Memory';e={ "$('{0:N2}' -f ($_.TotalPhysicalMemory/1024))mb" }}, `
@{n='Virtual Memory';e={ "$('{0:N2}' -f ($_.TotalPageFileSpace/1024))mb" }} | `
Export-CSV "output.csv"[/code]
在V2中,最終支持try/catch /。帖子已過時。 – stej 2010-05-12 21:34:16