Powershell 控制台常用方法
Posted Xiao-C
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell 控制台常用方法相关的知识,希望对你有一定的参考价值。
1 function Pause(){ 2 [System.Console]::Write(‘按任意键继续...‘) 3 [void][System.Console]::ReadKey(1) 4 } 5 [System.Console]::Title=‘控制台常用方法‘ 6 0..15|ForEach-Object{ 7 [System.Console]::SetCursorPosition($_,$_) 8 [System.Console]::BackgroundColor=15-$_ 9 [System.Console]::ForegroundColor=$_ 10 $_ 11 [System.Console]::SetCursorPosition(15+$_,15-$_) 12 [System.Console]::BackgroundColor=$_ 13 [System.Console]::ForegroundColor=15-$_ 14 15-$_ 15 } 16 [System.Console]::ResetColor() 17 [System.Console]::SetWindowSize(80,30) 18 [System.Console]::SetCursorPosition(0,16) 19 pause
以上是关于Powershell 控制台常用方法的主要内容,如果未能解决你的问题,请参考以下文章