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…

How to Track Message in Office 365

Hi All, I am writing this post to share –>tracking of emails in office 365, Tracking thru GUI /Powershell as well gives very limited options, GUI doesn’t gives you option to track by message subject even. See below in message trace section below : I must say options here are less as compare to tracking we are…

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…

Send As from Distribution List

Hi All, Sharing an interesting topic which has been raised by many coworkers & some times by users that we work with. They always use send as from mailbox but if its possible to Send As from Distribution List? Answer to this question is yes but there is no option in Exchange console to set…

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