※ 全体を通じた必須モジュール
PowerShell 3.0 以上 (Windows 7 以下の場合)
http://www.microsoft.com/en-us/download/details.aspx?id=34595
IT プロフェッショナル 用 Microsoft Online Services サインイン アシスタント RTW
http://go.microsoft.com/fwlink/p/?LinkId=286152
[追記]
Windows PowerShell スクリプトの実行権限の変更が必要な場合があります。
変更する為には、PowerShell を [管理者として実行] で起動し、以下のコマンドを実行。
Set-ExecutionPolicy RemoteSigned
※ "RemoteSigned"の部分がポリシーの内容になるので適宜最適なものに変更してください。
https://technet.microsoft.com/ja-jp/library/ee176961.aspx
■ Azure Active Directory
◇ 必要追加モジュール
Windows PowerShell 用 Azure Active Directory モジュール (64 ビット バージョン)
http://go.microsoft.com/fwlink/p/?linkid=236297
◇ PowerShell コマンド
Connect-MsolService
■ Exchange Online
◇ 必要追加モジュール
なし
◇ PowerShell コマンド
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session
■ Skype for Business Online (Lync Online)
◇ 必要追加モジュール
Skype for Business Online, Windows PowerShell Module
https://www.microsoft.com/ja-JP/download/details.aspx?id=39366
◇ PowerShell コマンド
Import-Module SkypeOnlineConnector
$credential = Get-Credential
$session = New-CsOnlineSession -Credential $credential
Import-PSSession $session
■ SharePoint Online
◇ 必要追加モジュール
SharePoint Online Management Shell
http://www.microsoft.com/ja-jp/download/details.aspx?id=35588
# 2015/1/13 抜けていた為に追記 - 大鷲様ご指摘ありがとうございました!
◇ PowerShell コマンド
Connect-SPOService -Url https://contoso-admin.sharepoint.com -credential admin@contoso.com
SharePoint Online にはこれが必要なのではないでしょうか。
返信削除http://www.microsoft.com/ja-jp/download/details.aspx?id=35588
> 大鷲様
削除ご指摘ありがとうございます!完全に失念しておりました。訂正いたしました。