fbpx
Script para fazer uma limpeza de licenciamento baseado em grupo do Office 365
janeiro 11, 2020

Script para limpeza de licenciamento baseado em grupo do Office 365

Olá. Wellington Agápto por aqui.  Existe um recurso bem legal que grande parte dos administradores utilizam. Este recurso é o licenciamento baseado em grupo no Office 365, a grande questão é que existem um problema para quem usa este recurso, pois sempre sobra vestígio de licenças adicionadas de forma manual quando o usuário é desligado. Este artigo visa trazer um Script para fazer uma limpeza de licenciamento baseado em grupo do Office 365.

 

Acontece que, quando uma licença é atribuída diretamente ao usuário, a atribuição via grupo não a remove, apenas adiciona a nova caso ela seja diferente, e se deixado dessa maneira, os usuários que deixarem a organização ainda poderão consumir uma licença no Office 365 pois ao removê-los do grupo somente a licença atribuída via grupo será removida. Esse script criado pelo Zachary Loeber removerá todas as licenças atribuídas diretamente apenas se elas se sobreporem às licenças atribuídas ao grupo. Há um bit extra no final que pode ser usado para remover quaisquer sobras de licenças diretamente atribuídas também. (Recomendo que faça uma pré validação no script e o execute em um ambiente de teste antes de executá-lo em produção).

 

Script para fazer uma limpeza de licenciamento baseado em grupo do Office 365

 

<# 
    Extension of the following microsoft guide. 
    
    https://docs.microsoft.com/en-us/azure/active-directory/active-directory-licensing-ps-examples#get-all-users-with-license-errors-in-the-entire-tenant
#>

function UserHasLicenseAssignedDirectly {
    #Returns TRUE if the user has the license assigned directly
    Param(
        [Microsoft.Online.Administration.User]$user,
        [string]$skuId
    )

    foreach($license in $user.Licenses) {
        #we look for the specific license SKU in all licenses assigned to the user
        if ($license.AccountSkuId -ieq $skuId) {
            #GroupsAssigningLicense contains a collection of IDs of objects assigning the license
            #This could be a group object or a user object (contrary to what the name suggests)
            #If the collection is empty, this means the license is assigned directly - this is the case for users who have never been licensed via groups in the past
            if ($license.GroupsAssigningLicense.Count -eq 0) {
                return $true
            }

            #If the collection contains the ID of the user object, this means the license is assigned directly
            #Note: the license may also be assigned through one or more groups in addition to being assigned directly
            foreach ($assignmentSource in $license.GroupsAssigningLicense) {
                if ($assignmentSource -ieq $user.ObjectId) {
                    return $true
                }
            }
            return $false
        }
    }
    return $false
}

function UserHasLicenseAssignedFromGroup {
    #Returns TRUE if the user is inheriting the license from a group
    Param(
        [Microsoft.Online.Administration.User]$user,
        [string]$skuId
    )

    foreach($license in $user.Licenses) {
        #we look for the specific license SKU in all licenses assigned to the user
        if ($license.AccountSkuId -ieq $skuId) {
            #GroupsAssigningLicense contains a collection of IDs of objects assigning the license
            #This could be a group object or a user object (contrary to what the name suggests)
            foreach ($assignmentSource in $license.GroupsAssigningLicense) {
                #If the collection contains at least one ID not matching the user ID this means that the license is inherited from a group.
                #Note: the license may also be assigned directly in addition to being inherited
                if ($assignmentSource -ine $user.ObjectId) {
                    return $true
                }
            }
            return $false
        }
    }
    return $false
}


function Get-UserLicenseSource {
    [CmdletBinding()]
    Param(
        [Parameter(Mandatory=$true, ValueFromPipeline=$true)]
        [Microsoft.Online.Administration.User]$user
    )
    begin {
        $Users = @()
    }
    process {
        $Users += $User
    }
    end {
        Foreach ($User in $Users) {
            foreach($license in $user.Licenses) {
                New-Object -TypeName PSObject -Property @{
                    'UserPrincipalName' = $User.UserPrincipalName
                    'SkuID' = $license.AccountSkuId
                    'AssignedDirectly' = (UserHasLicenseAssignedDirectly -User $User -SkuID $license.AccountSkuId)
                    'AssignedFromGroup' = (UserHasLicenseAssignedFromGroup -User $User -SkuID $license.AccountSkuId)
                }
            }
        }
    }
}

Connect-MsolService

# Get all of our users with a license
$Users = Get-MsolUser -All | Where-Object {$_.isLicensed}

# Get all direct and group assigned licenses
$LicenseSources = $Users | Get-UserLicenseSource | Where-Object {$_.AssignedDirectly -and $_.AssignedFromGroup}

# Turn it into a hash to reduce our set-msollicense calls
$LicenseHash = $LicenseSources | Group-Object -Property UserPrincipalName -AsHashTable

# for each user with a direct and group assignment, remove the direct assignment.
Foreach ($user in $LicenseHash.Keys) {
    $SkusToRemove = $LicenseHash[$User].SkuID
    Set-MsolUserLicense -UserPrincipalName $User -RemoveLicenses $SkusToRemove
}

# you can also run this to remove all direct assignments (not assigned by a group):
$DirectOnlySources = $Users | Get-UserLicenseSource | Where-Object {$_.AssignedDirectly -and (-not $_.AssignedFromGroup)}

# Turn it into a hash to reduce our set-msollicense calls
$LicenseHash = $DirectOnlySources | Group-Object -Property UserPrincipalName -AsHashTable

Foreach ($user in $LicenseHash.Keys) {
    $SkusToRemove = $LicenseHash[$User].SkuID
    Set-MsolUserLicense -UserPrincipalName $User -RemoveLicenses $SkusToRemove
}

 

Quer tornar-se um especialista em produtos Microsoft?

Quer aprender mais sobre os produtos oferecidos pela Microsoft? O Microsoft Club possui tudo que você precisa saber para entrar no mercado de Cloud inscreva-seno Microsoft Club e confira.

× Dúvidas sobre cursos?