ユーザーの管理者の資格情報を要求する Office 365 の PowerShell にログインする Windows PowerShell スクリプトの取得に関する詳細情報を探しています。私はこれを検索できるキーワードではありませんが、あまり情報が見つかりませんでした。皆さん、手を貸してください。私はそれを行うスクリプトが欲しいだけでなく、それに関する情報とその仕組みについても探しています。
2 に答える
Exchange PowerShell の使用の場合:
$SecPass1 = convertto-securestring -asplaintext -string "PasSword" -force
$MSOLM = new-object System.Management.Automation.PSCredential -argumentlist "GlobalAdmin@some.com",$SecPass1
$Session = New-PSSession -ConfigurationName Microsoft. Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $MSOLM -Authentication Basic -AllowRedirection
Import-Module MSOnline Import-PSSession $Session –AllowClobber
このスクリプトは、資格情報の入力を求め、管理者として OFFice 365 にログインします。
To Login:
$LiveCred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange-ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session
ログイン以外にやるべきことがある場合は、Office 365 用のスクリプトを探して書いたことがありますので、スクリプトでお手伝いできるかもしれません。