7 lines
No EOL
134 B
PowerShell
7 lines
No EOL
134 B
PowerShell
function Get-AltTab {
|
|
$wshell = New-Object -ComObject wscript.shell
|
|
$wshell.SendKeys("%{Tab}")
|
|
sleep 120
|
|
Get-AltTab
|
|
}
|
|
Get-AltTab |