Merhaba;
PowerShell kullanarak Exchange 2013 ile Virtual Directory ayarları için bazı parametreleri paylaşmak istiyorum;
Exchange Control Panel:
Get-ecpVirtualDirectory -Server “ExchangeServerName” | Set-ecpVirtualDirectory -InternalURL https://webmail.ksugle.com/ecp -ExternalURL https://webmail. ksugle.com /ecp
Get-ECPVirtualDirectory -Server “ExchangeServerName” | Fl InternalURL,ExternalURL
Outlook Web App:
Get-OwaVirtualDirectory -Server “ExchangeServerName” | Set-OwaVirtualDirectory -InternalURL https://webmail.ksugle.com/owa -ExternalURL https://webmail.ksugle.com /owa
Get-OWAVirtualDirectory -Server “ExchangeServerName” | Fl internalUrl,ExternalURL
EWS (Exchange Web Services):
Get-WebservicesVirtualDirectory -Server “ExchangeServerName” | Set-WebservicesVirtualDirectory -InternalURL https://webmail.ksugle.com /EWS/Exchange.asmx -ExternalURL https://webmail.ksugle.com /EWS/Exchange.asmx
Get-WebservicesVirtualDirectory -Server “ExchangeServerName” |Fl internalURL,ExternalURL
Autodiscover:
Set-ClientAccessServer “ExchangeServerName” -AutodiscoverServiceInternalUri https://webmail.ksugle.com /Autodiscover/Autodiscover.xml
Get-ClientAccessServer “ExchangeServerName” | Fl AutodiscoverServiceInternalUri
ActiveSync:
Get-ActiveSyncVirtualDirectory -Server “ExchangeServerName” | Set-ActiveSyncVirtualDirectory -InternalURL https://webmail.ksugle.com /Microsoft-Server-ActiveSync -ExternalURL https://webmail.ksugle.com /Microsoft-Server-ActiveSync
Get-ActiveSyncVirtualDirectory -Server “ExchangeServerName” | Fl InternalURL,ExternalURL
Offline Address Book:
Get-OABVirtualDirectory -Server “ExchangeServerName” | Set-OABVirtualDirectory -InternalUrl https://webmail.ksugle.com /OAB -ExternalURL https://webmail.ksugle.com /OAB
Get-OABVirtualDirectory -Server “ExchangeServerName” | Fl InternalURL,ExternalURL
OutlookAnywhere:
Set-OutlookAnywhere -Identity “ExchangeServerName“\Rpc (Default Web Site)” -InternalHostname webmail.ksugle.com -ExternalHostName webmail.ksugle.com -InternalClientAuthenticationMethod ntlm -InternalClientsRequireSsl:$True -ExternalClientAuthenticationMethod Basic -ExternalClientsRequireSsl:$True
Get-OutlookAnywhere -Identity “ExchangeServerName“\rpc (Default Web Site)” |fl InternalHostName,InternalClientAuthenticationMethod,InternalClientsRequiressl,
ExternalHostName,ExternalClientAuthenticationMethod,ExternalClientsRequiress
umarım işinize yarar :)