Created
October 2, 2018 20:35
-
-
Save jkbryan/04456d74fa77460755fd39dcb29271cb to your computer and use it in GitHub Desktop.
Remove-license-reapply.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If ($MEMBERS_PROJECTONLINE_PLAN_1_FACULTY.SamAccountName -Contains $AdUser.sAMAccountName -and $PROJECTONLINE_PLAN_1_FACULTY_Applied -ne "True") | |
{ | |
#Setup the bits that we don't want, because they are already present in the Project license and will cause an error otherwise... | |
$DisabledPlans=@() | |
$DisabledPlans+="EXCHANGE_S_STANDARD" | |
$DisabledPlans+="SHAREPOINTSTANDARD_EDU" | |
$DisabledPlans+="SHAREPOINTWAC_EDU" | |
# Define the Licence options | |
$FacultyLicenseOptions = New-MsolLicenseOptions -AccountSkuId $STANDARDWOFFPACK_FACULTY -DisabledPlans $DisabledPlans | |
# | |
#First we need to remove the standard licence..... in order to remove SHAREPOINTSTANDARD_EDU and SHAREPOINTWAC_EDU, we'll add the bits that we want back in a mo' | |
Try | |
{ | |
Set-MsolUserLicense -UserPrincipalName $User.UserPrincipalName -RemoveLicenses $STANDARDWOFFPACK_FACULTY | |
Start-Sleep -s 30 | |
} | |
Catch [System.Exception] | |
{ | |
$strBody=MailBody | |
$strMailBody=$strMailBody+$strBody | |
} | |
#Now set the new licence in place | |
$CheckUser=Get-MSOLUser -UserPrincipalName $User.UserPrincipalName | |
$CheckLicenses=$CheckUser.Licenses | |
$CheckSKUIDs=$CheckLicenses.AccountSkuId | |
If ($CheckSKUIDs -NotContains $STANDARDWOFFPACK_FACULTY) | |
{ | |
Try | |
{ | |
Set-MsolUserLicense -UserPrincipalName $User.UserPrincipalName -AddLicenses $STANDARDWOFFPACK_FACULTY -LicenseOptions $FacultyLicenseOptions | |
} | |
Catch [System.Exception] | |
{ | |
$strBody=MailBody | |
$strMailBody=$strMailBody+$strBody | |
} | |
# Then try putting the full Project licence in place | |
Try | |
{ | |
Set-MsolUserLicense -UserPrincipalName $User.UserPrincipalName -AddLicenses $PROJECTONLINE_PLAN_1_FACULTY | |
$LicensesAdded += "PROJECTONLINE_PLAN_1_FACULTY" | |
} | |
Catch [System.Exception] | |
{ | |
$strBody=MailBody | |
$strMailBody=$strMailBody+$strBody | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment