Tùy chỉnh
PowerShell trên Windows
Có thể bạn đã chán với những tùy chỉnh mặc định trên powershell, bài viết này sẽ giúp bạn có những tùy chỉnh cá nhân, lên powershell để nó đẹp hơn.
OS: Windows
8.1 x64
Bước 1: Tìm file cấu hình mặc định của
PowerShell: $profile
Bước 2: Check xem file đã tồn tại hay
chưa: Test-Path
$profile
Bước 3: Tạo file nếu chưa tồn tại: New-Item -path
$profile -type file -force
Bước 4: Tùy chình file:
$console = $host.ui.RawUI
$console.ForegroundColor =
"Green"
$console.BackgroundColor =
"Black"
$buffer = $console.BufferSize
$buffer.Width = 130
$buffer.Height = 2000
$console.BufferSize = $buffer
$size = $console.WindowSize
$size.Width = 130
$size.Height = 50
$console.WindowSize = $size
$colors = $host.PrivateData
$colors.VerboseForegroundColor =
"white"
$colors.VerboseBackgroundColor =
"blue"
$colors.WarningForegroundColor =
"yellow"
$colors.WarningBackgroundColor =
"darkgreen"
$colors.ErrorForegroundColor =
"white"
$colors.ErrorBackgroundColor =
"red"
Set-Location C:\
Clear-Host
|
Các thuộc
tính:
ForegroundColor : Màu font
chữ
BackgroundColor : Màu nền
Width – Height : Tương ứng
chiều rộng và cao của cửa sổ
Colors.x : Thông số màu sác tương ứng với từng sự kiện
Có thể sử dụng lệnh sau để check các màu sắc: [enum]::GetNames([consolecolor])
Bước 5: Để chạy được phải cấp quyền chạy
script trên. Bật PowerShell dưới quyền Administrator: Set-ExecutionPolicy RemoteSigned
0 nhận xét:
Post a Comment