Link to home
Start Free TrialLog in
Avatar of PDIS
PDIS

asked on

Exchange 2010 Server Low On Space

We have an Exchange 2010 server that will be decommissioned shortly but right now I need it to work.  It is rejecting mail from outside the organization as it only has 25GB of space left on the E: drive.  I'm worried about adding a drive to the RAID 5 the E: drive lives on and I want to know if it's possible and if it would be better to add a single drive to the server and set it up as the F: drive, create a mailbox store on the F: drive and move some of the mailboxes to that F: drive

Also how can I tell if a mailbox store is being used?  I believe I moved all mailboxes off of one of my mailbox stores but it is still showing that it is using 25GB of storage
ASKER CERTIFIED SOLUTION
Avatar of J0rtIT
J0rtIT
Flag of Venezuela, Bolivarian Republic of image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
As JoseO said best bet is to check for logging. If that is already on then you can do a few things.

You could create a new disk and move users as well to free up space just make sure the new database is backed up.

You could also check for disconnected mailboxes.
Get-MailboxDatabase | Get-MailboxStatistics | Where { $_.DisplayName -eq "<display name>" } | fl DisplayName,MailboxGuid,Database,DisconnectReason

This will list all mailboxes that were deleted but might still be in the 30 day recoverable time. those can be removed by running this:

Get-MailboxStatistics -Database databasename  | where {$_.DisconnectReason -eq "SoftDeleted"} | ForEach {Remove-StoreMailbox -Database $_.Database -Identity $_.MailboxGuid -MailboxState SoftDeleted}
Avatar of PDIS
PDIS

ASKER

I tried running the Set-StorageGroup -Identity "First Storage Group" -CircularLoggingEnabled $true but I received the following error

User generated image
Avatar of PDIS

ASKER

Here is results from your script

User generated image
Avatar of PDIS

ASKER

I found the method for enabling circular logging from the management console by going to
In the console tree, expand Server Configuration, and then click Mailbox.
In the work pane, right-click the storage group for which you want to enable or disable circular logging, and then click Properties. The <Storage Group Name> Properties dialog box appears.
Select or clear the Enable circular logging check box.

But I do not see Circular Logging as an option

User generated image
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
OK try
Set-MailboxDatabase  -identity "Mailbox Database 0482295700" -CircularloggingEnabled:$true

Open in new window

Then unmount and mount the DB.

You have almost 1 TB of logs! Jezz