我試圖做到以下幾點:讀主機執行順序
顯示從多維數組列表:
$Victim = Read-Host -Prompt 'Enter the number of the host you want rid of...'
:
$AssetList | Where-Object {$_.agenttype -eq "N"} | Select-Object number, hostname, agentstatus | Write-Output
在來自用戶的號碼,然後讀
實際情況是在讀寫輸出之前顯示讀主機。我怎樣才能翻轉它並扭轉它?
的可能的複製[無法暫停或睡眠後選擇-對象](http://stackoverflow.com/questions/34835327/unable-to-pause-or-sleep-after-select -object) – PetSerAl
我的解決方案是使用'Out-String'而不是'Write-Output'。這個解決方案似乎沒有提及... –