• Exploring Hashmaps in Powershell $keep = @{} //declare an empty hashmap /* Next add all the shared mailboxes to the hashmap */ $keep = get-mailbox | ? { $_.recipienttypedetails -eq ‘sharedmailbox’ } | % { $keep.add($_.name,$_.primarysmtpaddress) } /* Big assumption for this next portion: I’ll assume you’ve put the list of…




  •   Get-Mailbox -ResultSize Unlimited | Get-MailboxStatistics | Select DisplayName, ItemCount, TotalItemSize | Export-CSV C:\temp\results.csv  



  • A Blue Screen of Death (BSOD), also called a STOP Error (Typically shows a STOP Code) , fatal system error, or system crash. BSOD will cause the System or Windows OS to stop abruptly ensuring no further damage occurs because it can no longer able to operate safely. Causes: BSODs are…



  • OPUtil.vbs   Issue: “Error code is 2771,1635,1603″ popping up when installing SP3 Rollup 17 on Exchange 2010.  Cause: Generally this issue is caused by the Rollup installation searching and failing to find the previous rollups or missing components. Troubleshooting: Clear the data in the “%SystemDrive%\Windows\TEMP”folder. Try to re-install the update rollup…



  • DNS stands for domain name system – It is one of the most frequently asked interview questions when applying for a job in Information Technology (IT). DNS controls your domain’s website and e-mail configurations and settings. When someone visits your website/domain like tecism.com, the DNS record controls which name server (NS…