Link to home
Start Free TrialLog in
Avatar of mray77
mray77Flag for Afghanistan

asked on

Exchange 2010 Config

We are following the Exchange 2010 Deployment Assitant guide to upgrade/transition to Exchange 2010 from 2003 on older hardware. The configuration has gone well, but i am stuck at trying to configure OAB and Web Services Virtual Directories in the Exchange 2010 Management Shell. The two commands i can't get to complete are:

Set-OABVirtualDirectory -identity "CAS01\OAB (Default Web Site)" -externalurl https://mail.contoso.com/OAB -RequireSSL:$true

Set-WebServicesVirtualDirectory -identity "CAS01\EWS (Default Web Site)" -externalurl https://mail.contoso.com/EWS/Exchange.asmx -BasicAuthentication:$True

I believe it may be as easy as a syntax issue, as i'm not sure what is needed for the portion (default web site). My server name is mail.mydomain.com. It's a very basic configuration.
ASKER CERTIFIED SOLUTION
Avatar of jfletchster
jfletchster
Flag of United Kingdom of Great Britain and Northern Ireland 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
Avatar of Akhater
oh well do it my way


get-OABVirtualDirectory  |  Set-OABVirtualDirectory  -externalurl https://mail.contoso.com/OAB -RequireSSL:$true



get-WebServicesVirtualDirectory | Set-WebServicesVirtualDirectory -externalurl https://mail.contoso.com/EWS/Exchange.asmx -BasicAuthentication:$True
Avatar of mray77

ASKER

Worked Great. Thanks!