This post demonstrates how you can use Exchange Powershell to list and export user mailbox size, including deleted items size.…
Powershell script to delete a folder or directory if it exists: $strFolderName=”c:\temp\” If (Test-Path $strFolderName){ Remove-Item $strFolderName } See Also:…
Powershell script to check if a file exists $strFileName=”c:\filename.txt” If (Test-Path $strFileName){ # // File exists }Else{ # // File…
Powershell script to delete a file if it already exists: If (Test-Path $strFileName){ Remove-Item $strFileName } See Also: Powershell: Check…
In Exchange 2010, when you create a room or resource mailbox, the Resource Policy tab gives you the option to…
After you delete a user from Acrive directory or Exchagne their mailbox is kept in the Exchange database for a…
If you have defined custom functions in a .ps1 file, to register them in Exchange Command Shell all you need…
This article outlines how to force empty the deleted items / recoverable items dumpster in a users mailbox. To view…
Problem: When using Powershell to run the Search-Mailbox command the following error is generated: Search-Mailbox” Command in Powershell: The Term…
To view how much database white space you have on your databases run the following cmdlet: Get-MailboxDatabase -Status | Sort-Object…