1. In Exchange 2007 environment, we have three regions - emea, apac, ltam.
EMEA Hub Transports servers are along the naming convention of hub-emea1, hub-emea2, hub-emea3 etc.
APAC Hubs are hub-apac1, hub-apac2 and so on.
Sometimes I just want to search on the EMEA or APAC or LTAM Hubs.
Does anyone know how I can run a Powershell along the lines of:
Get-transport server -[EMEA Hub Transport servers only] | Get-messagetrackinglog -sender ....etc etc
2. Sometimes, I'd like to view details of Exchange certificates on other servers, I've tried
Get-Exchangeserver -identity mailboxserver1 | get-exchangecertificate
Does anyone know the correct way?
3. Finally, for, say Exch1-SG1-IS1 database, is there an easy way to find out the count of mailboxes on there?
>> 2. Sometimes, I'd like to view details of Exchange certificates on other servers, I've tried
As far as I know this won't work on exchange 2007 you will need exchange 2010 for it
>> 3. Finally, for, say Exch1-SG1-IS1 database, is there an easy way to find out the count of mailboxes on there?
$mbx = get-mailbox -database Exch1-SG1-IS -resultsize unlimited
$mbx.count