使用powershell批量分配許可

以管理員身份運行AAD PSide

image

查看訂閱和使用狀態3d

Get-MsolAccountSkublog

clip_image001

單個用戶授予用戶許可ip

clip_image003

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

批量授予全部用戶許可get

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

clip_image005

刪除單個用戶許可it

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

clip_image007

批量刪除全部用戶許可class

$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表示已經分配許可

相關文章
相關標籤/搜索