Question: Chapter 15 Assignment Questions 1. What are some objects within the Microsoft Active directory? 2. What does Active Directory Group-Policy provide? 3. To which

Chapter 15 Assignment Questions 1. What are some objects within the Microsoft

Chapter 15 Assignment Questions 1. What are some objects within the Microsoft Active directory? 2. What does Active Directory Group-Policy provide? 3. To which of the above objects can the group policy NOT be applied? a) Organization Unit [OU] b) Computers c) Users d) containers 4. The below script is used to create a new Organizational Unit [OU]; what is the name of the OU created? $strClass = "organizationalUnit" $StrOUName = "OU=MyTestOU" $objADSI = [ADSI] "LDAP://DC=nwtraders, DC=msft" $objOU = $obj ADSI.Create ($strCLass, $StrOUName) $objou.SetInfo() 5. What is the ADSI Edit tool used for? 6. What is the below PS script used for? for ($i = 0; $Error. Count; $i++) {$Error [$i]. CategoryInfo $Error [$i]. ErrorDetails $Error [$1]. Exception $Error [$i].FullyQualifiedErrorId $Error [$1] .InvocationInfo $Error [$1].TargetObject) 7. What is a method to continue running a cmdlet even if an error occurs? 8. What is a method to clear current error messages saved in memory? 9. What is the below LDAP script used for? $strClass = "User" $strName = "CN=MyNewUser" $objADSI = [ADSI] "LDAP://ou-myTestOU, dc=nwtraders,dc=ms ft" $obj User $objADSI.Create ($strClass, $strName) $obj User.Put ( "SAMAccountName", "MyNewUser") $obj User.SetInfo() 10. What is the use of the below command? SetInfo()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Computer Network Questions!