Execute the Ping command to test DirectPush . A test item is created in the test folder to
instantiate the Ping.
7. Sync the newly created test item.
To check multiple CAS servers you can use Get-ExchangeServer to find all servers with the CAS role
installed, and then construct a foreach loop to test the connectivity of each CAS server to the mailbox
server. The script is similar to the Test-ServiceHealth script described earlier in the chapter:
$b=Get-ExchangeServer | where {$_.IsClientAccessServer -eq???true???}
foreach ($z in $b) {test-ActiveSyncConnectivity -ClientAccessServer $z}
Figure 14 - 9 shows a successful test of connectivity from the CAS role on MB002 to the Mailbox role on
MB002 and MB001.
An easier way to do this is to use Get-ClientAccessServer | Test-ActiveSyncConnectivity .
??‘
??‘
??‘
??‘
??‘
??‘
??‘
??‘
??‘
Part III: Working with PowerShell in a Production Environment
402
Test - OwaConnectivity
OWA connectivity is very important for the mobile workforce or for remote users who do not need all
the features of Outlook. In Exchange 2007 OWA has undergone a major facelift in order to close the gap
between the online web application and Outlook. As the OWA development team continues to work on
closing the feature gap, OWA will continue to gain favor in the user base.
Pages:
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554