2018年5月8日 星期二

Office365連線指令

因為有使用Azure AD Connect,有些功能沒辦法在Admin Center上設定,需要用Powershell才能設定,所以記錄一下連線的方式。



連線到Office 365
步驟1:安裝必要的軟體
1、安裝 64 位元版本的 Microsoft Online Services Sign-in Assistant(登入小幫手)
      https://www.microsoft.com/zh-tw/download/details.aspx?id=41950
2、安裝適用於Windows PowerShell的Microsoft Azure Active Directory模組
      (需要Microsoft.NET Framework 3.5(沒有要先安裝))

步驟2:連線至 Office 365 訂閱的 Azure AD
1、Import-Module MsOnline
2、$UserCredential = Get-Credential
3、Connect-MsolService -Credential $UserCredential


連線到Exchange Online
1、在您的本機電腦上開啟 Windows PowerShell,並執行:
    $UserCredential = Get-Credential

2、$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection

3、Import-PSSession $Session

4、完成時,請務必中斷遠端 PowerShell 工作階段連線。
      Remove-PSSession $Session



參考資料:
Office 365 系統管理
https://support.office.com/zh-tw/office365admin

連線至 Office 365 PowerShell
https://docs.microsoft.com/zh-tw/office365/enterprise/powershell/connect-to-office-365-powershell

連線至 Exchange Online PowerShell
https://docs.microsoft.com/zh-tw/powershell/exchange/exchange-online/connect-to-exchange-online-powershell/connect-to-exchange-online-powershell?view=exchange-ps

沒有留言:

張貼留言