Question : Exchange 2007 database size exceeded 250GB...

Hi guys

Our exchange 2007 size limit has exceeded 250gb, which is the default for SP1. However, I am having real difficulty in finding which registry folder I have to create the DWORD value, because everytime I type the following command:

Get-MailboxDatabase -Identity "<server name>\<database name>" | Format-Table Name, GUID

I get the error I've put in the picture from the Shell. Am I entered the details incorrectly?  Also, maybe you can look and let me know from the first picture and the names of the storage group and database, whether I've entered it correctly?

Thanks
Y
 
 
   

Answer : Exchange 2007 database size exceeded 250GB...

You could write a custom function such as the one I've put together below..  Add more bits in the 'Select Case' section to decode more characters.

HTH
Matt
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:
Public Function DecodeText(mytext As String)

Dim intLength As Integer
Dim i
Dim strCurrentLetter As String
Dim strNewText As String

intLength = Len(mytext)

For i = 1 To intLength
    strCurrentLetter = Mid(mytext, i, 1)
    
    Select Case strCurrentLetter
        Case "{"
            strNewText = strNewText & "D"
        Case "t"
            strNewText = strNewText & "a"
        Case "r"
            strNewText = strNewText & "v"
        Case "4"
            strNewText = strNewText & "i"
        Case Else
            'Do nothing
            'Add more 'Case' statements above to convert more letters that are encoded
    End Select
Next

DecodeText = strNewText

End Function
Random Solutions  
 
programming4us programming4us