Function Test{
while($true){
write-host "I want this to refresh every time"
Start-Sleep -Seconds 4
cls
}
}
Write-Host "I want this to be at the screen always"
Test
有沒有辦法讓我做到這一點,而不是把它也放在循環或功能?在實際的代碼中,我想保留一些輸出在屏幕頂部作爲參考(它不能放在函數中),而函數會提取一些數據並每4秒刷新一次。 在這裏,因爲我使用cls
它清除了我不想發生的屏幕上的所有內容。我只需要清除該函數的輸出。如何清除屏幕上的某些內容?
你也許能夠把[這](http://powershell-tips.blogspot.com/2011/05/moving-cursor-to-specific-location.html)類型的方法和舉措光標四周。 –