Posts Tagged ‘full’

Recently it was necessary to change  the “From” display name of the sending notifications. This notifications appear e.g. when your mailbox size hits the quota or you get an internal NDR. It’s not possible to edit the sender email address in EMC or EMS but you can change the Display Name of this notification sender […]


With this PowerShell command you get an overview of database sizes, last full backups and active servers. (get-mailboxdatabase -status) | foreach-object {write-host $_Server $_.Name $_.lastfullbackup $_.databasesize} Cheers, Chris


If you want to discover where a specific user has Full Access you can use this PowerShell command: Get-Mailbox | Get-MailboxPermission -User user@domain.com | where { ($_.AccessRights -eq “FullAccess”) } Cheers, Chris


For some reasons it is necessarry to enable circular logging on your Exchange databases. This reasons could be moving many or large mailboxes or perhaps a broken backup which causes the logfile partition to be stuffed with logfiles. However, you can enable circular logging via Exchange Management Console (EMC) or via PowerShell. With PowerShell you […]



Follow

Get every new post delivered to your Inbox.

Join 301 other followers