Daily Archives: May 13, 2019

Remove MAIL from disconnected Mailbox

this command that remove all disconnected email from “Mailbox Database” Get-MailboxStatistics -database “oberon\Mailbox Database” | where {$_.disconnectdate -ne $null} | foreach {Remove-mailbox -database $_.database -storemailboxidentity $_.mailboxguid} ————————————————– Example The first example shows how to disconnect the user John Peoples’ (john) … Continue reading

Posted in Exchange | Comments Off on Remove MAIL from disconnected Mailbox

move logs file to other location

Move-StorageGroupPath -identity “First Storage Group” -LogFolderPath  “E:\LOGS\First Storage Group” -SystemFolderPath “E:\LOGS\First Storage Group” Move-StorageGroupPath -Identity “Second Storage Group” -LogFolderPath:”D:\Mailbox\Second Storage Group” -SystemFolderPath:”D:\Mailbox\Second Storage Group”

Posted in Exchange | Comments Off on move logs file to other location

How to Enable or Disable Circular Logging for a Storage Group

View to see if “First Storage Group” enable or disable get-StorageGroup -Identity “First Storage Group get-StorageGroup -Identity “Second Storage Group” ——————————————————————- To use the Exchange Management Console to enable or disable circular logging Start the Exchange Management Console. In the console … Continue reading

Posted in Exchange | Comments Off on How to Enable or Disable Circular Logging for a Storage Group

Move Database Path

Need dismount the database frist then from Console Move-DatabasePath -Identity ‘OBERON\Frist Storage Group\Mailbox Database’ -EDBFilePath ‘D:\Third Storage Group\Mailbox Database.edb’

Posted in Exchange | Comments Off on Move Database Path

Testing RPC over HTTP/S Connection

outlook.exe /rpcdiag

Posted in Exchange | Comments Off on Testing RPC over HTTP/S Connection