Question: Configuring Windows File System Permissions ( 3 e ) LAB GUIDE Introduction Section 1 : Hands - On Demonstration Section 2 : Applied Learning Part

Configuring Windows File System Permissions (3e)
LAB GUIDE
Introduction
Section 1: Hands-On Demonstration
Section 2: Applied Learning
Part 1: Create the Folder Structure
Part 2: Create Security Groups
Part 2: Create Security Groups (02 completed)
Note: Next, you will perform the creation of security groups through PowerShell code. In the next steps, you will use the New-ADGroup command to create AD security groups that will be applied to your folders later in this lab. This command will assume that the new group will be added to the Active Directory's Users folder. To add the new group into an OU, you will need to specify the -Path parameter in the command.
New-ADGroup -name "groupname" -groupscope Global -path "OU=OUname, DC= securelabsondemand,DC=Com "
At the PowerShell prompt, execute New-ADGroup -name "Students" -groupscope Global -path "OU=Students, DC= securelabsondemand,DC=com " to create the new group Students within the Students OU.
New-ADGroup command
2. At the Powershell prompt, execute Get-ADUser -SearchBase
"OU=Students,DC=securelabsondemand,DC=Com" -Filter *| ForEach-Object {Add-ADGroupMember -Identity Students -Members $_} to move all existing user accounts in the Students oU into the Students security group in a single command.
Get-ADUser command
3. Repeat steps 1-2 to create a new group named Faculty inside the Faculty OU and move all existing user accounts in the Faculty OU into the Faculty security group.
4. At the PowerShell prompt, execute Get-ADGroupMember -Identity Students | Select Name to list the members of the Students security group.
5. Make a screen capture showing the members of the Students Security group.
6. Repeat step 4 to view the members of the Faculty Security group
7. Make a screen capture showing the members of the Faculty Security group.Help with this
Configuring Windows File System Permissions ( 3 e

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 Programming Questions!