使用powershell批量分配指定許可

以管理員身份運行AAD PSide

image

查看訂閱和使用狀態ui

Get-MsolAccountSku命令行

clip_image001

批量授予全部用戶E3許可3d

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

clip_image005

查看某個用戶已經分配的許可seo

(Get-MsolUser -UserPrincipalName lili@qwew.partner.onm51CTO提醒您,請勿濫發廣告!).licenses.servicestatusip

image

定義新的許可變量,除了Exchange 產品,其餘的產品都禁用ci

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

image

執行命令,使定義新的許可變量生效(標記部分換成本身的AccountSkuId)產品

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

image

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

(Get-MsolUser -UserPrincipalName lili@qwew.partner.onm51CTO提醒您,請勿濫發廣告!).licenses.servicestatus

image

image

相關文章
相關標籤/搜索