After deleting an unused mailbox database from Exchange 2013, you may see warnings appearing in the Application log (Event Log):
The Microsoft Exchange Mailbox Replication service was unable to process jobs in a mailbox database. Database: Missing database (GUID) Error: Database 'GUID' doesn't exist.
If removed very recently, wait for replication of AD throughout your domain, but the Mailbox Replication service will also cache the existence of the database. You can resolve this by simply restarting the Microsoft Exchange Mailbox Replication service (can be done during operation).
I followed this guide to replace the HDD on my Mac Mini (2009, aka model A1283):
https://www.ifixit.com/Guide/Mac+mini+Model+A1283+Hard+Drive+Replacement/1063
The most tricky part is probably opening up the Mac. As I did not have a putty knife at hand, I used a rack cage nut mounting tool to create an opening, and a very thin flathead screw driver to pry the case off, as explained in the guide.
EDIT: added picture of tool.
I'ved noticed the Airport Configuration Utility from Apple requires "elevation" (= run as administrator) to work properly on a Windows 8/8.1.
If it still throws out an error after connecting, try disabling IPv6, then reboot.
SwitchExplorer for Brocade FC switches no longer works properly on more recent versions of Java, because of security constraints. They can, however, be relaxed so you can still access your switches.
jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
Note for Windows Vista and up: open the file elevated, or you won't be able to save it.
Since Exchange 2010 SP1, when giving users Full access to another mailbox, they automatically get that mailbox added to their Outlook (2007 and up). This feature is called mailbox auto-mapping, and has made life a little easier for us IT administrators. But sometimes, you do not want a mailbox to be auto-mapped in Outlook for a particular user.
This can be achieved by setting the access permission through Powershell, and including the parameter -AutoMapping:$false in the cmdlet.
Add-MailboxPermission "Shared Mailbox" -User <user> -AccessRights FullAccess -AutoMapping:$false
http://files.nl.pfsense.org/mirror/downloads/
Contains newest and old releases.
You can easily find quarantined mailboxes through Powershell:
Get-Mailbox | Get-MailboxStatistics | Where { $_.IsQuarantined -eq $True } | Select Name,Alias
More information about quarantined mailboxes: KB2603736.
ViewDbChk is a free tool that helps you overcome and clean up database inconsistencies for VMware Horizon View, the VMware solution for VDI.
The tool, available for version 5.3 and 6.0, can be downloaded through the link below. When downloading, be sure to select the correct version.
Using EMS (Exchange Management Shell), you can quickly retrieve a list of mailboxes not using the default quotas:
Get-Mailbox | Where { $_.UseDatabaseQuotaDefaults -eq $False } | Select Name,UseDatabaseQuotaDefaults,ProhibitSendQuota
« ‹ | November 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |