070-346J Free Dumps Study Materials
Question 14: ある会社はOffice365に移行されます。2000のアクティブユーザーは有効なOffice
365のライセンスを割り当てられます。
追加の5000のユーザーアカウントは移行とテストのプロセス中に作成されました。これらの
ユーザーは割り当てられたライセンスを持っていません。
あなたは管理作業の最小量を用いて割り当てられたライセンスを持っていないOffice
365のユーザーアカウントを削除する必要があります。
あなたはどのWindows PowerShellコマンドを実行する必要がありますか。
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-MsolUser-Force
Correct Answer: C
Explanation
Step 1: Get all unlicensed users:
The Get-MsolUser cmdlet can be used to retrieve an individual user, or list of users. We must
use both the
-All and the -UnlicensedUsersOnlyparameters to retrieve all unlicensed users.
Parameters include:
* All [<SwitchParameter>] If present, then all results will be returned.
* UnlicensedUsersOnly [<SwitchParameter>] The filter for only users who are not assigned a
license.
Step 2: Remove these users through the Remove-MsolUser -Force command.