以管理员身份运行AAD PS

使用powershell批量分配指定许可_target

查看订阅和使用状态

Get-MsolAccountSku

使用powershell批量分配指定许可_border_02

批量授予所有用户E3许可

Get-MsolUser -All -UnlicensedUsersOnly | Set-MsolUserLicense -AddLicenses "qwew:ENTERPRISEPACK_NO_RMS"

使用powershell批量分配指定许可_style_03

查看某个用户已经分配的许可

(Get-MsolUser -UserPrincipalName lili@qwew.partner.onm51CTO提醒您,请勿滥发广告!).licenses.servicestatus

使用powershell批量分配指定许可_border_04

定义新的许可变量,除了Exchange 产品,其他的产品都禁用

$LicenseOptions1 = New-MsolLicenseOptions -AccountSkuId qwew:ENTERPRISEPACK_NO_RMS -DisabledPlans SHAREPOINTWAC,SHAREPOINTENTERPRISE,OFFICESUBSCRIPTION,MCOSTANDARD

使用powershell批量分配指定许可_style_05

执行命令,使定义新的许可变量生效(标记部分换成自己的AccountSkuId)

Get-MsolUser -all | where {($_.islicensed -eq $true) -and ($_.licenses.accountskuid -eq 'qwew:ENTERPRISEPACK_NO_RMS')} | Set-MsolUserLicense -LicenseOptions $licenseoptions1

使用powershell批量分配指定许可_style_06

查看设置是否生效,使用命令行或者图形界面

(Get-MsolUser -UserPrincipalName lili@qwew.partner.onm51CTO提醒您,请勿滥发广告!).licenses.servicestatus

使用powershell批量分配指定许可_border_07

使用powershell批量分配指定许可_style_08