O365: Delete specific email from sender to mailboxes
Here’s a PowerShell script that uses the Exchange Online PowerShell module to delete a specific email from multiple mailboxes. This script searches for an email with the specified subject line…
A Drink of Technology for the Thirsty Mind
Here’s a PowerShell script that uses the Exchange Online PowerShell module to delete a specific email from multiple mailboxes. This script searches for an email with the specified subject line…
In order to Connect to O365 (EXO v2) using modern authentication you will need to install and import the EXO v2 module. ***PowerShell needs to have TLS 1.2 enabled in…
Install the Teams PowerShell Module The first step in managing Teams via PowerShell is to install the Teams Cmdlets module. Running PowerShell as an Administrator, you will need to run…
If you want to get a list of members from an O365 shared mailbox using powershell, you can run either command to do so: Get-Mailbox “Shared Mailbox Name” | Get-MailboxPermission…
To disabled the clutter feature in a user’s O365 mailbox run the following command: Turn off Clutter for single user Get-Mailbox –identity someone@somewhere.com | Set-Clutter -enable $false OR Single mailbox:…
Connect to O365 using powershell first Open PowerShell or EMS If this is an O365 mailbox, you will need to connect to the O365 environment Connect to Exchange On-line From…
You will come across the issue with leavers mailboxes needing to be transferred to another users mailbox. If you are looking after on-site exchange, then the process is slightly shorter…
If you need to add email aliases to O365 accts in bulk use the following (EMS) powershell command with the CSV file formatted this way: Name ProxyAddresses user1@domainold.com user1@domainnew.com Run…
There’s no built-in feature at this time to enable litigation hold for all mailboxes in Exchange Online, but some organisations have this as a requirement. Here’s a script that can…
You can use EMC for this or use powershell to view the status of a user acct’s O365 migration progress get-user -identity username | get-moverequeststatistics