Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Vester
1.1.0
Private/Read-HostColor.ps1
# Used in New-VesterConfig to better highlight user prompts
function
Read-HostColor
(
$Text
)
{
Write-Host
$Text
-ForegroundColor
Yellow
-NoNewline
Write-Output
(
Read-Host
' '
)
}