Print Green Tick To Consol Powershell

[Solved] Print Green Tick To Consol Powershell | Basic - Code Explorer | yomemimo.com
Question : print green tick to consol powershell

Answered by : narin-nhar

$greenCheck = @{ Object = [Char]8730 ForegroundColor = 'Green' NoNewLine = $true }
Write-Host "Status check... " -NoNewline
Start-Sleep -Seconds 1
Write-Host @greenCheck
Write-Host " (Done)"

Source : https://community.idera.com/database-tools/powershell/powertips/b/tips/posts/using-green-checkmarks-in-console-output | Last Update : Tue, 04 Oct 22

Answers related to print green tick to consol powershell

Code Explorer Popular Question For Basic