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. 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}”…