上一個主題: 使用說明下一個主題: 使用 Arcserve RHA PowerShell 指令


格式指令輸出

在 Windows PowerShell 中,有數個指令可讓您變更輸出檢視:

若要變更任何指令的輸出格式,請使用輸送運算子 (|) 將指令輸出傳送至 Format 指令。

例如,下列指令會將 Get-Scenario 指令輸出傳送至 Format-Table 指令。 結果是資料會格式化為表格:

PS>get-scenario |Format-table
ID         群組     名稱            類型       主要        狀態   同步  AR
--         -----     ----            ----       ------        -----   ----  --
1123633468 案例 File Server 1   FileServer 192.168.1.152 正在執行檔案  False
1123633497 案例 Exchange Server Exchange   192.168.1.152 正在執行區塊  True
1123633852 案例 File Server 3   FileServer               未知的檔案  False
3848963840 案例 File Server     FileServer 192.168.1.152 已停止的檔案  False
3848982942 案例 File System 1   FileServer QA99-W2K3-EX8 正在執行檔案  False

如需詳細資訊,請使用下列指令來讀取格式指令的說明:

get-help format-list
get-help format-table
get-help format-wide
get-help format-custom