Загрузка данных


# Звёздное небо в консоли
1..100 | ForEach-Object { Write-Host (" " * (Get-Random -Max 100)) -NoNewline; Write-Host "*" -ForegroundColor Yellow }

# Бесконечный Rainbow текст
while($true){Write-Host "ПИЗДЕЦ КАКОЙ КРАСИВЫЙ" -ForegroundColor (Get-Random -InputObject Red,Green,Blue,Yellow,Magenta,Cyan) -NoNewline; Start-Sleep -Milliseconds 100}



Clear-Host
Write-Host "`n`n`n`n`n`n`n`n`n`n`n`n" -NoNewline
Write-Host "                   :(" -ForegroundColor Blue
Write-Host "`nСИСТЕМА НЕ МОЖЕТ ЗАГРУЗИТЬСЯ" -ForegroundColor White -BackgroundColor Blue
Write-Host "`nКритическая ошибка 0xDEADBEEF`n" -ForegroundColor White
Write-Host "Ваш компьютер был заражён вирусом 'ПИЗДЕЦ2025'" -ForegroundColor Red
Write-Host "Перезагрузка через 3 секунды..." -ForegroundColor Yellow
Start-Sleep 3


Clear-Host
$cat = @"
 /_/\  
( o.o ) 
 > ^ < 
"@

for ($i=0; $i -lt 30; $i++) {
    Clear-Host
    Write-Host $cat -ForegroundColor Cyan
    Start-Sleep -Milliseconds 300
    Clear-Host
    Write-Host "   /_/\  " -ForegroundColor Cyan
    Write-Host "  ( o.o ) " -ForegroundColor Cyan
    Write-Host "   > ^ <  " -ForegroundColor Cyan
    Start-Sleep -Milliseconds 300
}