Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started