MS-102 • Practice Test 8
Free MS-102 practice test — 10 questions with explanations. Set 8. No signup required.
Refer to the exhibit. A user reports that they cannot activate Microsoft 365 Apps. The user has an E3 license assigned and the UsageLocation is set to US. The output shows the license details. What is the most likely cause of the issue?
Refer to the exhibit.
```
Get-AzureADUser -ObjectId user@contoso.com | Select-Object -Property AssignedLicenses
AssignedLicenses
---------------
{@{DisabledPlans=System.Object[]; SkuId=contoso:ENTERPRISEPACK}}
Get-AzureADSubscribedSku | Where-Object {$_.SkuId -eq 'contoso:ENTERPRISEPACK'} | Select-Object -Property ServicePlans
ServicePlans
------------
{@{ServicePlanId=...; ServiceName=EXCHANGE_S_ENTERPRISE; ProvisioningStatus=Success; AppliesTo=User}, ...}
Get-AzureADUser -ObjectId user@contoso.com | Select-Object -Property UsageLocation
UsageLocation
-------------
US
```