Count Number of Blog Posts thru RSS Feed

There was a requirement to get the count of Blogposts that have been posted by Bloggers, First question is : If it is at all possible to get that automatically thru Powershell magic ?? Yes it can be done as each blog has RSS feed which is XML formatted. By using Powershell, parsing XML & thru…

Ironport Health Check

Hi Readers, You have seen other Health check scripts from me for Exchange , AD /Microsoft products. This time I have used PowerShell to perform health check on Cisco Product i.e. IronPort 🙂 Thanks to the Internet community from which I got the idea on how can I use PowerShell & get Health check reports out…

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