9 lines
353 B
PowerShell
9 lines
353 B
PowerShell
Add-Type -AssemblyName System.Windows.Forms
|
|
$o=New-Object -ComObject WScript.Shell
|
|
$url = -join($channel,"?sub_confirmation=1")
|
|
Start-Process "$url"
|
|
Start-Sleep -Seconds 5
|
|
[System.Windows.Forms.SendKeys]::SendWait('{TAB}'*2)
|
|
[System.Windows.Forms.SendKeys]::SendWait('{ENTER}')
|
|
Start-Sleep -Seconds 1
|
|
[System.Windows.Forms.SendKeys]::SendWait('%{F4}')
|