rpettit Posted January 23, 2012 Posted January 23, 2012 Is there a way to loop (like a slideshow) open explorer windows on a timer? I am looking to have open several monitoring tools on a dedicated machine connected to a monitor. Many thanks
kmount Posted January 23, 2012 Posted January 23, 2012 You could probably use AutoIT to automate some/all of this but without knowing exactly which tools and how the windows / apps are presented it's hard to be specific.
Guest Guest Posted January 23, 2012 Posted January 23, 2012 Not exactly high tech or fool proof but an app which send key commands ie Alt-Tab...
cscott Posted January 23, 2012 Posted January 23, 2012 Hi - we use the below script to do this, got 3 or 4 wall mounted monitors in IT that we have set to loop round a selection of websites that display systems monitor data (which are different from the URL's I've pasted below). dim arURLs(3) arURLs(0) = "first URL goes here" arURLs(1) = "second URL goes here" arURLs(2) = "third URL goes here" dim objIE nInterval = 20 Do For Each url in arURLs set objIE = CreateObject("InternetExplorer.Application") objIE.visible = true objIE.FullScreen = True objIE.Navigate url WScript.sleep nInterval * 1000 set objShell = CreateObject("WScript.Shell") objShell.Run "taskkill /F /IM iexplore.exe" WScript.sleep 1 * 1000 Next Loop
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now