No DNS servers could be retrieved from network adapter
Error message :No DNS servers could be retrieved from network adapter 00000000-0000-0000-0000-000000000000. Check if the computer is connected to a network and Get-NetworkConnectionInfo returns any results. EventSourceName: MSExchangeTransport Knowledge: http://go.microsoft.com/fwlink/?LinkID=67336&id=2BCB35C6-D00D-47BB-B5E0-3D9A76ABE1E0 Computer: Exchangeserver01.Domain.local Impacted Entities (0): Environment : Exchange 2010/Exchange 2013 First troubleshooting step would be to Run Get-NetworkConnectionInfo from Exchange shell to get the result. So […]
How to take report of mailboxes with custom mailbox quota settings
Get-Mailbox | where {$_.UseDatabaseQuotaDefaults -eq $False} | select name,prohibit*,issue* | Export-CSV C:\Temp\MailboxQuota.csv -NoTypeInformation
How to check the database content index status (Failed) and update the catalog via Powershell
a) This will return a result of all DB with Content Index State failed. Get-MailboxDatabaseCopyStatus * | where {$_.ContentIndexState -eq “Failed”} b) By using the following command we can update the content index status of all the failed DBs. Get-MailboxDatabaseCopyStatus * | where {$_.ContentIndexState -eq “Failed”} | Update-MailboxDatabaseCopy -CatalogOnly c) Following command will help to […]
How to Clean Mailbox Database in Exchange 2013
Get-MailboxStatistics -Database DATABASE | ForEach { Update-StoreMailboxState -Database $_.Database -Identity $_.MailboxGuid -Confirm:$false }
How to check the white space on an Exchange Database via PowerShell
Get-MailboxDatabase -Status -identity DATABASENAME | Sort-Object DatabaseSize -Descending | Format-Table Name, DatabaseSize, AvailableNewMailboxSpace
Generate a mailbox statistics report for particular Exchange Database and Export it as CSV
Generate a mailbox statistics report for particular Exchange Database and Export it as CSV Get-MailboxStatistics -database “DATABASE” | sort TotalItemSize -Descending | select DisplayName,TotalItemSize | epcsv c:\temp\mailsize.csv