以管理員身份運行AAD PSide
查看訂閱和使用狀態blog
Get-MsolAccountSkuip
單個用戶授予用戶許可ci
Set-MsolUserLicense -UserPrincipalName "belindan@litwareinc.com" -AddLicenses "litwareinc:ENTERPRISEPACK"get
批量授予全部用戶許可qt
Get-MsolUser -All -UnlicensedUsersOnly | Set-MsolUserLicense -AddLicenses "qwew:ENTERPRISEPACK_NO_RMS"it
刪除單個用戶許可io
Set-MsolUserLicense -UserPrincipalName belindan@litwareinc.com -RemoveLicenses "litwareinc:ENTERPRISEPACK"class
批量刪除全部用戶許可cli
$x = Get-MsolUser -All | where {$_.isLicensed -eq $true}; $x | foreach {Set-MsolUserLicense -UserPrincipalName $_.UserPrincipalName -RemoveLicenses "qwew:ENTERPRISEPACK_NO_RMS"}
查看未受權許可的用戶
Get-MsolUser -All -UnlicensedUsersOnly
查看全部用戶的許可分配狀態
Get-MsolUser
isLicensed 屬性值爲False表示未分配許可,True表示已經分配許可