使用Powershell链接到Office 365
Posted ***忘了时间的钟***
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Powershell链接到Office 365相关的知识,希望对你有一定的参考价值。
今天主要讲使用Powershell管理Office 365 可以分为office365用户管理,Exchange Online的管理等
1. 使用Powershell 链接到office 365 用户管理界面
需要先安装登陆助手及Azure AD模块
在windows powershell 下运行:
Get-ExecutionPolicy
Set-ExecutionPolicy RemoteSigned //更改执行策略,执行一次就够了
$credential = Get-Credential //创建凭据
$credential //验证凭据
*连接到office365上面(首先要导入模块,安装登录助手,Azure AD模块)
*注意要是安装好了Azure Adconnect 的时候,先决条件会自动安装成功
Import-Module MsOnline //导入office365模块
Get-Module //验证是否导入模块 ,若是返回Manifest MSOnline {Add-MsolAdministrativeUnitMe… 即是导入模块成功
Connect-MsolService -Credential $credential //连接到office365上面
Get-MsolDomain
或者采用综合代码
$User = "[email protected]" $PWord = ConvertTo-SecureString –String "password" –AsPlainText -Force $Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $User,$Pword Import-Module MsOnline Connect-MsolService -Credential $Credential
2. 使用Powershell 链接到office 365 Exchange Online 管理界面
在windows powershell 下运行:
Set-ExecutionPolicy RemoteSigned
$UserCredential = Get-Credential //(获取office365的登录凭据)
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://partner.outlook.cn/PowerShell -Credential $UserCredential -Authentication Basic –AllowRedirection // 国际版本URL为; https://outlook.office365.com/powershell-liveid/
Import-PSSession $Session
或者采用综合代码
以上是关于使用Powershell链接到Office 365的主要内容,如果未能解决你的问题,请参考以下文章
使用PowerShell 导出Exchange中的用户中用户信息到Office 365
powershell 批量获取office365用户邮箱使用容量
SharePoint Office365 Powershell Webpart AllItems.aspx
powershell [Manipulandousuários通过PowerShell执行Office 365] Comandos para manipular o Office 365.