Catapult, a Quisitive company, is a Microsoft-focused solutions and services firm that specializes in imagining, building and sustaining digital transformation and cloud-based solutions that people love to use. Catapult has consistently been recognized as a leading Microsoft Partner with 10 Advanced Specializations and 17 Microsoft competencies. Recent accolades include 2020 MSUS Partner Award Winner Azure – DevOps, Top Microsoft 365 Security Partner for FY20, and being named a finalist of the Data Analytics 2020 Microsoft Partner of the Year Award. Catapult has offices nationwide.

Tips and Tricks: Service Manager 2012 – Useful commands to view XML and Projection Type

Thanks to Chris Ross of SCSM.US for sharing this great information! Here are a few little queries you can use to get some good information for use within ServiceMgr: From SQL if you want to view a MP’s xml…   function Format-XML ([xml]$xml, $indent=2) {     $StringWriter = New-Object System.IO.StringWriter     $XmlWriter = New-Object System.XMl.XmlTextWriter $StringWriter     $xmlWriter.Formatting =…

OpsMgr 2012: Live Maps 2012 – Initial installation and creation of a Domain Controller Live Map View

1. Download from here: · http://www.savision.com/download 2. Run the executable LiveMaps2012_V1011.exe 3. Click Run, at the Security Warning 4. The installer will extract the files for use during the Install 5. At the LiveMaps 2012 installation splash screen, click ‘Install Live Maps Authoring Console’ 6. At the Welcome page, click Next 7. At the License…

Weekly Exchange PowerShell Tip: Tracking Logs

​  Retrieve Message Tracking logs, sort by TotalBytes and save to txt file:     Get-MessageTrackingLog -EventId SEND -Start "9/1/2011 06:00:00" -End "9/1/2011 20:00:00" -resultsize unlimited | Sort-Object TotalBytes -Descending | FT Sender, MessageSubject, TotalBytes > C:\test.txt     Dump Message Tracking Results to CSV:   get-messagetrackinglog -MessageSubject "Test Message to Verify Tracking Details" -Start…