6 lines
No EOL
158 B
PowerShell
6 lines
No EOL
158 B
PowerShell
function Get-AltTab {
|
|
(New-Object -ComObject wscript.shell).SendKeys("%{Tab}")
|
|
Start-Sleep $(Get-Random -Minimum 30 -Maximum 180)
|
|
Get-AltTab
|
|
}
|
|
Get-AltTab |