SRV Record for Exchange Autodiscover in GoDaddy
Replace the Target above with the URL of your Exchange server.
Read MoreArchives
Date December 12, 2016 Author By kadmin Category Microsoft Exchange
Replace the Target above with the URL of your Exchange server.
Read MoreDate November 16, 2016 Author By kadmin Category Microsoft Exchange, Microsoft Outlook
Problem Upon opening Outlook 2016, I get asked to type in the username and password- which I do and click the box for “Remember this password”. Everything works great until I restart the computer, then it asks me again. The problem is that the saved credential in Credential Manager does not have Enterprise persistence. If […]
Read MoreDate March 25, 2016 Author By kadmin Category Microsoft Exchange
Full Instructions are here. Quick Version: Open Exchange Powershell View your current cert and get the thumbprint: Get-ExchangeCertificate |FL Paste your thumbprint into this command and renew the cert for another 5 years: Get-ExchangeCertificate –Thumbprint “28E9D9C0E81607JHJU0F6511AA17D418D4B3D8FD” | New-ExchangeCertificate Your new cert has a new Thumbprint. Paste it into this command to enable it for IIS. […]
Read MoreDate March 3, 2016 Author By kadmin Category Microsoft Exchange
{Get mailbox copy status information} Get-MailboxDatabaseCopyStatus -Identity “Mailbox Database Name” | select DatabaseName,Status,ActiveDatabaseCopy,ContentIndexState “{Import PST Files}” Get-Mailbox -Database “Mailbox Database Name”| Import-Mailbox -PSTFolderPath “Path import pst file location” “{Get Information about a mailbox}” Get-MailboxStatistics “{Purge Disconnected Mailbox}” Get-MailboxStatistics -database “Mailbox Database Name” | where {$_.disconnectdate -ne $null} | foreach {Remove-mailbox -database $_.database -storemailboxidentity $_.mailboxguid} or $users = Get-MailboxStatistics […]
Read MoreDate March 3, 2016 Author By kadmin Category Microsoft Exchange
Get-MailboxStatistics -Server ‘mailservername’ | where {$_.ObjectClass -eq “Mailbox”} | Sort-Object TotalItemSize -Descending | ft @{label=”User”;expression={$_.DisplayName}},@{label=”Total Size (MB)”;expression={$_.TotalItemSize.Value.ToMB()}} -auto
Read MoreDate March 3, 2016 Author By kadmin Category Microsoft Exchange
from command line eseutil /ms .\DB1.edb where DB1 is the name of the database file you are checking or Get-MailboxDatabase -Status | Select-Object Server,Name,AvailableNewMailboxSpace
Read MoreDate March 3, 2016 Author By kadmin Category Microsoft Exchange
Problem: ——————————————————– Microsoft Exchange Error ——————————————————– Failed to dismount database ‘DB2’. DB2 Failed Error: Couldn’t dismount the database that you specified. Specified database: DB2; Error code: An Active Manager operation failed with a transient error. Please retry the operation. Error: Database action failed with transient error. Error: A transient error occurred during a database operation. […]
Read MoreDate December 9, 2015 Author By kadmin Category Microsoft Exchange
Exchange installation will set the Exchange Server Transport Queue database and Logging path inside the installation directory by default. Many times due to various reasons we change the location of Transport queue database and logging into another drive. Use the Powershell Script Move-TransportDatabase.ps1 open exchange powershell browse to c:\program files\microsoft\exchange\v14\scripts 1. Move the Queue Database […]
Read MoreDate October 9, 2015 Author By kadmin Category Microsoft Exchange, Microsoft Outlook
Problem: Outlook says it Cannot add to the server Junk E-mail Lists Solution: If there are many cumulative entries in the Safe Senders, Blocked Senders and Safe Recipients lists, you can probably isolate this problem to a small number of mailboxes. For example, if only a few users encounter the errors that are described in […]
Read MoreDate June 16, 2015 Author By kadmin Category Microsoft Exchange
Problem: You are trying to add a new SMTP alias to a user account, only to be told that the alias was already in use. You don’t know where it is in use. Solution: Finding where this alias is already in use becomes really easy by performing a custom search inside of Active Directory. From […]
Read More