Your manager has asked you to create various user objects using Windows PowerShell.
Which of the following must you do to accomplish this?

A.
Use the Create-User createUsert
B.
Use the objUser = new OUUser statement
C.
Use the AddUser method of ADSL
D.
Invoke the Create method of OU
Explanation:
http://www.mysmallcorneroftheweb.co.uk/programmingsoftwaredevelopement/powershellcreatingconfiguring-a-active-directory-user The user is created by
first defining the OU and then invoking the ou Create method.
Same as 2012 question:
http://www.aiotestking.com/microsoft/which-of-the-following-must-you-do-to-accomplish-this/
0
0
New-ADUser could be used, as well, but that is not one of the possible answers.
https://docs.microsoft.com/en-us/powershell/module/addsadministration/new-aduser?view=win10-ps
0
0