Exchange Server 2019 / Exchange Management Shell
Exchange
2022-10-19
Autodiscover
- Autodiscover 주소를 확인
Get-ClientAccessService |fl *autodiscover*
- Autodiscover Internal URI를 manualfactory.net으로 변경
Set-ClientAccessService -Identity <exchange-server-name> -AutoDiscoverServiceInternalUri https://autodiscover.manualfactory.net/Autodiscover/Autodiscover.xml
오프라인 주소록
- 오프라인 주소록 조회
Get-OfflineAddressBook
- GlobalWebDistributionEnabled 설정 상태 조회
Get-OfflineAddressBook | fl GlobalWebDistributionEnabled
GlobalWebDistributionEnabled
조직의 모든 OAB 가상 디렉터리가 OAB 다운로드 요청을 수락할 수 있는가?
Boolean, 기본값은 False
- GlobalWebDistributionEnabled를 True로 설정
Get-OfflineAddressBook | Set-OfflineAddressBook -GlobalWebDistributionEnabled $True
- 오프라인 주소록 업데이트
Get-OfflineAddressBook | Update-OfflineAddressBook