未分類

PowerShell - powershell.exe のウィンドウ属性を変更するには

powershell.exe の背景色などを変更してみます。

背景色を変更

$Host.UI.RawUI.BackgroundColor = "Red" 
cls 

Windows のタイトルを変更

$Host.UI.RawUI.WindowTitle = "テスト中..."

-未分類