Thanks,
That should do it. Now I just need to find out how to get this to refresh the page each time it switches to a page. ,Josh From: Christopher Bodnar [mailto:[email protected]] Sent: Wednesday, July 01, 2009 8:12 AM To: NT System Admin Issues Subject: RE: NOC style screen At my previous job we did this using a VB script. All it did was toggle between open windows (Alt+Tab) every 30 seconds, we had multiple browser windows open when the machine was logged on. Worked well for us. Here it is if you are interested: '======================================================================= === ' ' Do Set WshShell = CreateObject("WScript.Shell") For strTabValue = 1 To 20 strSendKeyValue = "%{TAB " & strTabValue & "}" WshShell.Sendkeys strSendKeyValue 'Sleeps for 30 seconds WScript.Sleep 30000 Next intClicked = WshShell.Popup("Continue Toggling Windows?", 5, "Window Topggler",vbQuestion+vbYesNo) Select Case intClicked Case vbYes Count = 0 case vbNo WScript.Quit case -1 Count = 0 End Select Loop '======================================================================= === Chris Bodnar, MCSE Sr. Systems Engineer Distributed Systems Service Delivery - Intel Services Guardian Life Insurance Company of America Email: [email protected] Phone: 610-807-6459 Fax: 610-807-6003 ________________________________ From: [email protected] [mailto:[email protected]] Sent: Tuesday, June 30, 2009 5:22 PM To: NT System Admin Issues Subject: NOC style screen I'd like to setup a screen in the office that will cycle through about 6 or 8 web pages, kinda like a PowerPoint, to display the content on those pages (which are always changing). Can anyone recommend a program? (preferably, freeware). Also, if there is something that will also display the contents of an exchange public folder in this cycle that would be a plus. Thanks for your time. Josh ________________________________ This message, and any attachments to it, may contain information that is privileged, confidential, and exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, you are notified that any use, dissemination, distribution, copying, or communication of this message is strictly prohibited. If you have received this message in error, please notify the sender immediately by return e-mail and delete the message and any attachments. Thank you. ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/> ~
