@echo off
powershell -NoProfile -ExecutionPolicy Bypass -WindowStyle Hidden -Command ^
Add-Type -AssemblyName System.Windows.Forms; ^
Add-Type -AssemblyName System.Drawing; ^
$form = New-Object System.Windows.Forms.Form; ^
$form.FormBorderStyle = 'None'; ^
$form.WindowState = 'Maximized'; ^
$form.TopMost = $true; ^
$form.BackColor = 'Black'; ^
$form.KeyPreview = $true; ^
$tb = New-Object System.Windows.Forms.TextBox; ^
$tb.Multiline = $true; ^
$tb.ReadOnly = $true; ^
$tb.BorderStyle = 'None'; ^
$tb.Dock = 'Fill'; ^
$tb.BackColor = 'Black'; ^
$tb.ForeColor = 'Magenta'; ^
$tb.Font = New-Object System.Drawing.Font('Consolas',14,[System.Drawing.FontStyle]::Bold); ^
$tb.ScrollBars = 'None'; ^
$tb.Text = @'
**********************####################*+****************@@@@@@@@@@@@@@@@@@@@
*********************#=*#****************#-+****************@@@@@@@@@@@@@@@@@@@@
*********************#=*##################-+****************@@@@@@@@@@@@@@@@@@@@
*******#=###########*##=*##################-+****************@@@@@@@@@@@@@@@@@@@@
****#+=+#********#==#=#=+#######**########+=#****************@@@@@@@@@@@@@@@@@@@@
***+=#*************+=#=++====---=#######*+=#*****************@@@@@@@@@@@@@@@@@@@@
**+=***************+=#::::::::::=#######+-:******************@@@@@@@@@@@@@@@@@@@@
*++*******###====###:=:::::::::=#######+=.:******************@@@@@@@@@@@@@@@@@@@@
+=******#++++++++++==#+===###+=#######+=:-*******************@@@@@@@@@@@@@@@@@@@@
++*******#********#==+*****+=#######+=:-*********************@@@@@@@@@@@@@@@@@@@@
=+******************#++***+=#######+-.#**********************@@@@@@@@@@@@@@@@@@@@
=+********#==#******#=+**+=#######+=:+***********************@@@@@@@@@@@@@@@@@@@@
+=******##=:-=******#=##+#######+=:-************************@@@@@@@@@@@@@@@@@@@@
+=+********###******+===###******+=:-************************@@@@@@@@@@@@@@@@@@@@
#:-+***************+=::::::--------:*************************@@@@@@@@@@@@@@@@@@@@
*=-:=#***********#+-:.::::::::::::.:*************************@@@@@@@@@@@@@@@@@@@@
*#:.:-+========+=-::.=+++++===-----**************************@@@@@@@@@@@@@@@@@@@@
**#-.:::-------::::.:+****************************************@@@@@@@@@@@@@@@@@@@
****+-::::::::::::-=#*****************************************@@@@@@@@@@@@@@@@@@@@
******##+======+##*******************************************@@@@@@@@@@@@@@@@@@@@
'@; ^
$form.Controls.Add($tb); ^
$script:step = 0; ^
$form.Add_KeyDown({ ^
param($sender,$e) ^
if($script:step -eq 0 -and ($e.KeyCode -eq 'D6' -or $e.KeyCode -eq 'NumPad6')) { $script:step = 1 } ^
elseif($script:step -eq 1 -and ($e.KeyCode -eq 'D7' -or $e.KeyCode -eq 'NumPad7')) { $form.Close() } ^
else { $script:step = 0 } ^
}); ^
[System.Windows.Forms.Application]::Run($form)