How to import users into exchange with a Powershell script
Download the files to a folder of you choice and edit in the ps1 script...
How to force mount exchange database
Open exchange Powershell : Mount-Database -identity "Your_Database_Name" -Force
How to find exchange database with Circular Logging
show database with Circular Logging : Get-MailboxDatabase | where {$_.CircularLoggingEnabled -eq $true} | out-gridview Without...
How to create disk space alert by email
Download the file and extract to folder of your choice DiskSpaceAlert configure the variables in...
How to delete emails from exchange profiles
As Admin you can delete specific wrongly send emails from your users mailbox : Open...
How to change exchange Preferred Server For DB
Open exchange Powershell Set-MailboxDatabaseCopy -identity {Database_Name\New_Server_Name} -ActivationPreference 1 Confirm: Get-MailboxDatabase 'Database_Name'|fl server, databaseCopies, activationPreference
How to delete exchange log file
If you need to delete exchange log file in case of space problem or some...
How to fix index failed state on exchange with dag
Open Exchange Powershell to get all the bad index: To get all the bad index:...
How to Get exchange health status
To get exchange health status first open exchange Powershell , run the command : Get-MailboxDatabaseCopyStatus...
Update exchange offline Address book
Some time offline address book doesn't show recent changes we made to the exchange server....

