4 lines
80 B
PowerShell
4 lines
80 B
PowerShell
|
|
while ($Host.UI.RawUI.KeyAvailable) {
|
||
|
|
$Host.UI.RawUI.ReadKey() | Out-Null
|
||
|
|
}
|