M365
-
M365 (이전 O365) 계정 연계를 위한 PowershellTutorials & Tips/CA Identity Management 2022. 4. 7. 16:20
M365(이전 O365)의 계정 관련 연계를 위한 Powershell 프로그램이며, 첨부된 Powershell script 를 참조하시면 됩니다. 1. M365 서비스 연결을 위한 Powershell #Constant Variables $Office365AdminUsername="xxxxx@pharosinfo.com" // M365 관리자 계정 $Office365AdminPassword="xxxxxxxxxx" // M365 관리자 계정의 Password #Main Function Main { #Remove all existing Powershell sessions Get-PSSession | Remove-PSSession #Encrypt password for transmission to Office36..