A company migrates to Office 365. 2,000 active users have valid Office 365 licenses assigned.
An additional 5,000 user accounts were created during the migration and testing processes.
These users do not have any licenses assigned.
You need to remove the Office 365 user accounts that do not have any licenses assigned by using the least amount of administrative effort.
Which Windows PowerShell command should you run?
A.
Get-MsolUser -All -EnabledFilter “DisabledOnly” | Remove-MsolUser -Force
B.
Get-MsolUser-EnabledFilter “DisabledOnly” | Remove-MsolUser -Force
C.
Get-MsolUser -All -UnlicensedUsersOnly | Remove-MsolUser -Force
D.
Get-MsolUser -UnlicensedUsersOnly | Remove-MsolUserForce
Explanation:
http://technet.microsoft.com/en-us/library/dn194133.aspx
“- all” is used if there are more than 500 users
C
-ALL used for users above 500 users.