# MonitoringBrowserSwitcher
This file can be compiled in autoit downloaded from: https://www.autoitscript.com/site/autoit/downloads/
This tiny script it’s an easy win solution for system monitoring where there’s only 1 screen and many monitoring applicances.
Currently script will create indefinite loop and switch between IE and Chrome every 30seconds.
I used it by running Zenoss on IE and Zabbix on Chrome, switching each 30sec allowing me to see notification for both systems at the corner of my eye.
1 2 3 4 5 6 7 8 9 10 11 |
While 1 ;loop indefinitely Sleep(5000) WinActivate("[CLASS:MozillaWindowClass]", "") ;WinSetOnTop("[CLASS:MozillaWindowClass]", "","") Sleep(5000) ;sleep 30 seconds WinActivate("[CLASS:IEFrame]", "") ;WinSetOnTop("[CLASS:IEFrame]", "","") Sleep(5000) ;sleep 30 seconds WEnd |
This can be altered to switch between tabs in Chrome or different browser, CLASS: attribute can be located using autoit tools included in the download.