Forum Discussion
Deleted
May 25, 2018How to activate Skype for business for all users on Office 365?
Hi,
I'm trying to activate Skype for business for all users in Office 365. I have a command line it is rather unactivating the non required options.
$LO = New-MsolLicenseOptions -AccountSkuId avocarbon:STANDARDPACK -DisabledPlans "SHAREPOINTWAC", "YAMMER_ENTERPRISE" , "SWAY" , "STREAM_O365_E1" , "FLOW_O365_P1" , "POWERAPPS_O365_P1" , "PROJECTWORKMANAGEMENT" , "FORMS_PLAN_E1" , "SHAREPOINTSTANDARD" , "BPOS_S_TODO_1" , "Deskless"
Import-csv .\nom_fichier.csv |%{Set-MsolUserLicense -UserPrincipalName $_.Userprincipalname -LicenseOptions $LO}
Is there a command to only activate one precise option?
Thanks
If I understand correctly what you are trying to achieve, then you are using the correct syntax - you have to explicitly specify all the other plans as Disabled. If you already have some services enabled/disabled and you just want to toggle SfB on/off, use this example: https://blogs.technet.microsoft.com/cloudpfe/2014/01/30/how-to-change-office-365-licenses-in-bulk-respecting-the-license-options/
If I understand correctly what you are trying to achieve, then you are using the correct syntax - you have to explicitly specify all the other plans as Disabled. If you already have some services enabled/disabled and you just want to toggle SfB on/off, use this example: https://blogs.technet.microsoft.com/cloudpfe/2014/01/30/how-to-change-office-365-licenses-in-bulk-respecting-the-license-options/