Exchange Mailbox Rules
At one of my previous Jobs, I had to write a script to help me understand rules. Well, I pulled that script out of the vault to do the same thing recently. The following script will allow you to select one user or multiple users to grab their rules. Or you can just forget the flag and get all of the users at once. The idea of the script is to get...
Webroot Deployment
In this article, I will guide you through the process of deploying webroot via Group Policy. This is a fairly straightforward process with only a little editing of the MSI. I am assuming you know how to download the MSI from the webroot portal. The portal changes...
Resource – SHD Get ACL
Ever need to combine Get-childitem and Get-ACL while only pulling the access information and users? Well, here we are. I hope you all can use it well. function Get-SHDACL { [cmdletbinding()] param ( [parameter(Mandatory = $true)][string]$Path, [string]$Filter,...
Exchange Online – Mailbox Size Audit
Here is a little powerhouse script I wrote to audit the mailbox sizes. The focus recently is to see who's mailbox sizes are about to be over and if it's the deleted folder. I can't show you all of the scripts, but I can show you part of it. This part will pull the...