Exchange 2019 PowerShell
Exchange 2019:- Export Calendar to PST
Quick tip when exporting certain folders to a PST file in Exchange. Ensure that RBAC is setup for the Mailbox Import/export to work.Ensure your share is setup. Here is the command to export, just like a normal PST export but you including folders"...
Exchange 2010 and higher:- Fix a DAG’s ContentIndexState that failed
Quick tip: If you have a DAG with a ContentIndexState showing failed, you can fix it with a simple command in the Exchange Management Shell (EMS): Update-MailboxDatabaseCopy -Identity "DAGNAME\store" -CatalogOnly This will then start a re-seed and it should return to...
Exchange 2019:- Find all mailboxes access rights
Ever wanted to quickly find all mailboxes and view the mailbox rights for each of those? Now you can with a PowerShell command that will show it to you. Here is the command below: ForEach($mailbox in (Get-Mailbox)) { Get-MailboxFolderPermission -Identity...
Exchange 2010 and higher:- Test-ReplicationHealth
Here is a quick tip on how you can check the health of your server that is part of a database availability group (DAG). The command to run is as follows using the Exchange Management Shell (EMS): Test-ReplicationHealth -Identity <ServerName> Below is the 2010...
Exchange 2010 and higher:- Remove a database copy and database using PowerShell
Removing an Exchange Database copy or a database should not be hardwork, especially when it can be done with the Exchange Management Shell. **Take note, if you have circular logging enabled, you need to firstly disable it before you can remove an Exchange database...
Exchange 2019:- Connect to your server remotely with PowerShell
With the attack on RDP getting more and more each day, many Admins are forced to use remote tools to get onto servers. Managing your exchange 2019 server or legacy servers does not require you to login to the desktop, you can use remote PowerShell and because the...
Exchange 2019:- Set Out of Office for a user using PowerShell (EMS)
Quick tip: In your organization, you get a call from a departmental managers secretary to advise he/she forget to set there Out of Office and have requested you to do so. To set it, quickly launch the Exchange Management Shell (EMS) and run the following command:...
Exchange 2019:- Change Deleted Item Retention with PowerShell
Quick tip: If you want to change your Deleted Item Retention on your mailbox database, you can do so running a simple command in PowerShell using the Exchange Management Shell: Set-MailboxDatabase -Identity "Mailbox Database Name" -DeletedItemRetention 30 If you...
Exchange 2016:- Get DB size with a simple command
In Exchange, mailbox moves and cleanup happen all the time, especially when you upgrading to newer versions etc. Now when you move mailboxes and you not using a 3rd party app like Odin that sits as an extra layer, you cannot see the store size from the web console. In...
Exchange 2010:- Check when user mailboxes were created using PowerShell
As an IT Admin or Exchange Admin, you might have come across the question "When were the mailboxes created". In this quick example, we will look at the script you can run to check all users in the Organization or just an individual mailbox. To check all users in...