The 5 possible Exchange 2007 server roles are:
For an indepth look at these roles, click one of the Exchange 2007 roles above.
IT knowledge base for systems administrators
The 5 possible Exchange 2007 server roles are:
For an indepth look at these roles, click one of the Exchange 2007 roles above.
The Exchange 2007 unified messaging role:
The Exchange 2007 edge transport role contains:
The Exchange 2007 Hub Transport role is:
The Exchange 2007 mailbox role provides and uses the following:
This Power Shell cmdlet will show all of the mailbox sizes and their quotas. It will also let you know if the mailbox has exceeded it’s quota and disabled as a result. It outputs the username, the total item size (sorted highest to lowest), and their storage limit status.
Get-MailboxStatistics -Server SERVERNAME | Sort-Object -Property TotalItemSize -Descending | Format-Table DisplayName,TotalItemSize, StorageLimitStatus > FILENAME.txt
Get-mailbox -Identity UID
Replace SERVERNAME and FILENAME with your server name and the name and path of a text file that you want these statistics output to.
If you migrated from Exchange 2003 to Exchange 2007 and still have some residual mailboxes left behind on the old exchange 2003 server, this Power Shell cmdlet will be very useful to you. It will list all users the old exchange 2003 server and their respective mailstores.
Get-Mailbox -OrganizationalUnit OUNAME -Server OLDSERVER | Format-List Alias, ServerLegacyDN
Where OUNAME is an Organization Unit in your Active Directory domain that you want to search. For example, lets use the users OU.
The OLDSERVER is the name of your old Exchange 2003 server. For example, let use EX2K3.
So… your command will be like this:
Get-Mailbox -OrganizationalUnit Users -Server EX2K3 | Format-List Alias, ServerLegacyDN
If you need to modify or update your Microsoft Exchange 2007 product key, use the following cmdlet:
set-exchangeserver -Identity ‘SERVERNAME’ -ProductKey ‘XXXXX-XXXXX-XXXXX-XXXXX-XXXXX’
This is a useful command if you upgrade from Exchange 2007 Standard to Exchange 2007 Enterprise.
To show an easy to read listing of all of the interfaces on a cisco router or switch, issue the follow command:
show ip interface brief
For example:
Switch1#show ip interface brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/1 unassigned YES manual down down
FastEthernet0/2 unassigned YES manual down down
FastEthernet0/3 unassigned YES manual down down
FastEthernet0/4 unassigned YES manual down down
FastEthernet0/5 unassigned YES manual down down
FastEthernet0/6 unassigned YES manual down down
FastEthernet0/7 unassigned YES manual down down
FastEthernet0/8 unassigned YES manual up up
FastEthernet0/9 unassigned YES manual down down
FastEthernet0/10 unassigned YES manual down down