# SET THE CONSOLE BLACK AFTER THAT CLEAR THE SCREEN$host.ui.rawui.BackgroundColor = "Black"# CLEAR CONSOLEClear-Host# POWERSHELL TEXT BACKGROUND COLOR WITH FIX WIDTHWrite-Host ""Write-Host "Hello !!!" -BackgroundColor DarkGray -NoNewlineWrite-Host " ." -ForegroundColor Black# PAUSE IN POWERSHELLWrite-Host ""Write-Host "Press 'Enter' to continue . . . " -ForegroundColor Yellow -NoNewLine$Host.UI.ReadLine()Write-Host ""