Forum Discussion

AlexanderHolmeset's avatar
Apr 09, 2017
Solved

Unable to assign this license

When for example trying to remove the Skype for Business plan, i always get this error: Same with for example exchange, but for some reason there is no error when doing the same with Yammer. ...
  • VasilMichev's avatar
    VasilMichev
    Apr 10, 2017

    I think your problem is with the other SfB related services:

     

    [11:47:13][O365]# (Get-MsolAccountSku | ? {$_.AccountSkuId -eq "MOD789510:ENTERPRISEPREMIUM"}).ServiceStatus | ? {$_.ServicePlan.ServiceName -like "MCO*"}

    ServicePlan ProvisioningStatus
    ----------- ------------------
    MCOEV       Success
    MCOMEETADV  Success
    MCOSTANDARD Success

     

    So if you only disable MCOSTANDARD, you get the error. To disable it properly, you need to disable them all:

     


    [11:48:10][O365]# Set-MsolUserLicense -UserPrincipalName LidiaH@MOD789510.onmicrosoft.com -LicenseOptions $newplan
    [11:48:14][O365]# (Get-MsolUser -UserPrincipalName LidiaH@MOD789510.onmicrosoft.com).licenses.servicestatus

    ServicePlan                 ProvisioningStatus
    -----------                 ------------------
    Deskless                    Success

    LOCKBOX_ENTERPRISE          Success
    EXCHANGE_ANALYTICS          Success
    MCOEV                       Disabled
    MCOMEETADV                  Disabled
    MCOSTANDARD                 Disabled
    EXCHANGE_S_ENTERPRISE       Success
    SHAREPOINTENTERPRISE        PendingInput
    SHAREPOINTWAC               PendingInput

Resources