使用powershell批量分配許可

以管理員身份運行AAD PSide

image

查看訂閱和使用狀態blog

Get-MsolAccountSkuip

clip_image001

單個用戶授予用戶許可ci

clip_image003

Set-MsolUserLicense -UserPrincipalName "belindan@litwareinc.com" -AddLicenses "litwareinc:ENTERPRISEPACK"get

批量授予全部用戶許可qt

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

clip_image005

刪除單個用戶許可io

Set-MsolUserLicense -UserPrincipalName belindan@litwareinc.com -RemoveLicenses "litwareinc:ENTERPRISEPACK"class

clip_image007

批量刪除全部用戶許可cli

$x = Get-MsolUser -All | where {$_.isLicensed -eq $true}; $x | foreach {Set-MsolUserLicense -UserPrincipalName $_.UserPrincipalName -RemoveLicenses "qwew:ENTERPRISEPACK_NO_RMS"}

clip_image009

查看未受權許可的用戶

Get-MsolUser -All -UnlicensedUsersOnly

image

查看全部用戶的許可分配狀態

Get-MsolUser

image

isLicensed 屬性值爲False表示未分配許可,True表示已經分配許可

相關文章
相關標籤/搜索