Switch Internet Explorer Tabs after regular intervals

Hi Readers,

We had two of our Monitoring dashboards that we want to display on the wide screen & want to switch between them after a minute.

Capture

You can use either below VB  or PowerShell snippet & schedule it every 1 minute via task scheduler.

VB Script

—————————————–

Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.AppActivate “Internet Explorer”
WshShell.SendKeys “^{TAB}”

 

—————————————-

Powershell

—————————————-

$wshell = New-Object -Com WScript.Shell
$wshell.AppActivate(“Internet Explorer”)
$Wshell.SendKeys(“^{TAB}”)

—————————————–

VB one here was the most successful for me during testing via task scheduler so implemented the VB one.

Here is the result 🙂

ezgif.com-gif-maker

Regards

Sukhija Vikas

http://techwizard.cloud

 

Advertisement

3 thoughts on “Switch Internet Explorer Tabs after regular intervals

Leave a Reply to Janardhan Cancel reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s