Jump to content

Recommended Posts

Posted

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

Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...