Link to home
Start Free TrialLog in
Avatar of wassellm
wassellm

asked on

Need to remove ECP and OWA Virtual Directories

I created my ECP and OWA virtual directories in Exchange 2010 and realized that I needed to make a change so I recreated the directories with a new name. Now I need to remove the old one "owa-ecp-notfba". How do I do this? I tried running the command:
Remove-OwaVirtualDirectory –Name “owa” –WebSiteName “OWA-ECP-NOTFBA”
but this did not work.
owa.jpg
Avatar of ronnypot
ronnypot
Flag of Netherlands image

The syntax should be:
Remove-OwaVirtualDirectory -Identity “OWA-ECP-NOTFBA”

Or Remove-OwaVirtualDirectory -Identity “Servername\OWA-ECP-NOTFBA

more information about this cmdlet: http://technet.microsoft.com/en-us/library/aa998237.aspx
ASKER CERTIFIED SOLUTION
Avatar of sumit_arora
sumit_arora
Flag of India 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 wassellm
wassellm

ASKER

Thanks so much!