mdrabble Posted September 4, 2017 Posted September 4, 2017 Students already had the Office licence applied to them but without the Exchange Online as they were orginally on-premise. I have migrated them to Office 365 and need to add the Online Exchange to their existing License. The GUI is bobbins!!! can only select small numbers. Does anyone have a magical powershell script I could beg, borrow, alter, etc....... Cheers Mark
mdrabble Posted September 5, 2017 Author Posted September 5, 2017 Manage to sort it - bit of a long way round but it worked... $chglic= New-MsolLicenseOptions -AccountSkuId "tennant:STANDARDWOFFPACK_STUDENT" -DisabledPlans $null Get-MsolUser -All | Where-Object {$_.Title -eq "Student"} | Foreach-Object{Set-MSOLUserLicense -LicenseOptions $chglic -ObjectID $_.ObjectID} I then change $null to the services I wanted to disable and ran the code again.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now