ITF (FC0-U61) Skills Lab: Manage File System Security
Exercise 1: Manage Share and NTFS Permissions
Task 1: Accessing PowerShell (Admin)
Connect to Virtual Machine
- Begin by connecting to the virtual machine hosting your environment.
Log In to the VM
- Once connected, log in to the system.
Open PowerShell (Admin)
- Right-click on the Start Menu and select Windows PowerShell (Admin) from the list.
Task 2: Creating Folders and Sharing in PowerShell
Navigate to the C: Drive
- In the PowerShell window, type the following command to navigate to the C: drive:
cd\
- In the PowerShell window, type the following command to navigate to the C: drive:
Create New Folders
- Use the following commands to create the folders:
md projects
md tickets
md corpdata
- Use the following commands to create the folders:
Share the 'Projects' Folder
- Run the following command to share the folder with full access for domain users:
New-SmbShare -Name "projects" -Path "c:\projects" -FullAccess "Domain Users"
- Run the following command to share the folder with full access for domain users:
Close PowerShell
- After completing the commands, close the PowerShell window.
Task 3: Sharing a Folder Using File Explorer
Open File Explorer
- Navigate to the Local Drive (C:).
Locate the 'Tickets' Folder
- Find the tickets folder.
Share the Folder
- Right-click on the tickets folder and select Give access to > Specific People.
Add 'Domain Users' and Set Permissions
- Add "Domain Users" to the share list and set the permission level to Read/Write.
Complete Sharing
- Click Share and then Done to finalize the process.
Task 4: Sharing a Folder Using Computer Management
Open Computer Management
- Right-click on the Start Menu and select Computer Management.
Navigate to Shared Folders
- Expand Shared Folders and select Shares.
Create a New Share
- Right-click on Shares and select New Share.
Use the Create a Shared Folder Wizard
- Follow the wizard to share the corpdata folder:
- Specify the folder path.
- Set the share name and description.
- Configure custom permissions to give "Domain Users" Full Control.
- Follow the wizard to share the corpdata folder:
Finalize the Share
- Complete the wizard and close Computer Management.
Task 5: Modifying NTFS Permissions for Shared Folders
Open File Explorer
- Navigate to the corpdata folder.
Access Folder Properties
- Right-click the folder and select Properties > Security Tab.
Edit Permissions
- Modify the NTFS permissions to:
- Add groups (e.g., corpusers, globalit, etc.).
- Assign appropriate permissions (Read, List Folder Contents, Read/Write).
- Modify the NTFS permissions to:
Configure Advanced Permissions
- Open Advanced Security Settings and remove inherited permissions.
- Add CREATOR OWNER with Full Control.
Save and Close
- Save the changes and close the properties window.
Task 6: Verifying User and Shared Folder Permissions
Connect to a Client Machine
- Log in to another virtual machine with a user account.
Map the 'corpdata' Folder
- Use File Explorer to map the shared folder (e.g.,
\\servername\corpdata
).
- Use File Explorer to map the shared folder (e.g.,
Test Folder Access
- Create and delete files to confirm permission settings.
Repeat with Another User Account
- Log in with a different user account and verify the permissions.
Document Results
- Note any discrepancies or errors for review.
Task 7: Terminate Virtual Machines
- Shut Down All VMs
- Properly shut down all virtual machines to conclude the lab.