以管理員身份運行AAD PSide
查看訂閱和使用狀態3d
Get-MsolAccountSkublog
單個用戶授予用戶許可ip
Set-MsolUserLicense -UserPrincipalName "belindan@litwareinc.com" -AddLicenses "litwareinc:ENTERPRISEPACK"ci
批量授予全部用戶許可get
Get-MsolUser -All -UnlicensedUsersOnly | Set-MsolUserLicense -AddLicenses "qwew:ENTERPRISEPACK_NO_RMS"qt
刪除單個用戶許可it
Set-MsolUserLicense -UserPrincipalName belindan@litwareinc.com -RemoveLicenses "litwareinc:ENTERPRISEPACK"io
批量刪除全部用戶許可class
$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表示已經分配許可