Posted On March 27, 2019

How to increase the database size limit on Exchange 2003 SP2

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to increase the database size limit on Exchange 2003 SP2
Connect to the Server that is running Exchange 2003 SP2
Click Start > Run > type regedit > input Admin credentials > click OK
Click one of the following registry subkeys, as appropriate for the store that you want to increase:
For a mailbox store, edit the following registry subkey: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MSExchangeIS\Server name\Private-Mailbox Store GUID
For a public folder store, edit this subkey: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\MSExchangeIS\Server name\Public-Public Store GUID
The following sequence would set Exchange database size to its allowable maximum of 75 Gigabytes: Edit > New > DWORD > name the new key as "Database Size Limit in Gb" > set value = 75 > OK
Restart the Microsoft Exchange Information Store service: Start > Run > type "cmd" > press Enter > type in these lines...
net stop msexchangeis
net start msexchangeis
Examine the Application log to verify that the database size has been set successfully. To do this, follow these steps: Start > Run > type "eventvwr.exe" > press Enter > navigate to the Application hive > locate event ID 1216 > verify that the database size has been set as configured within the registry

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Setup Applications & Scanners to Use Office 365 Online Exchange to Send Emails

Intro: There are three (3) methods: (1) SMTP client authentication, (2) Direct Send, and (3)…

PowerShell: Add Accounts into Local Administrators Group

# addAccountToLocalAdmins.ps1# Requires: PowerShell Version 4.0+$accountToAdd='ServerAdmins'$groupName="Administrators"$servers=@( "CONCU1", 'CONCU2', 'CONCU100', 'CONCU80665', 'CONCU6547354', 'CONWHAT989', 'CONCU3')$servers|%{ $session=new-pssession $_…

PowerShell: Coverting Hex or Bytes Array to ASCII

The following is an illustration of a practical usage of decrypting an ASCII encoded value…