Windows File Share Lab
Create a local user account, configure NTFS and share permissions, and confirm remote access to a Windows file share.
Lab Objectives
- Create a dedicated local user for file share access.
- Provision a shared folder with secure NTFS and share permissions.
- Test connectivity via UNC path using the new user’s credentials.
- Document the configuration and optionally tidy up when finished.
Prerequisites
- Windows 10/11 Pro, Enterprise, or Education with administrator rights.
- File and Printer Sharing enabled (default on private networks).
- Optional: a second Windows device on the same LAN to test remote access; otherwise use
localhost.
Part 1: Create a Dedicated User
- Open Settings > Accounts > Other users. Select Add account, then choose I don’t have this person’s sign-in information followed by Add a user without a Microsoft account.
- Create a local account named ShareUser with a strong password. Leave the account as a standard user.
- Confirm the account appears in Computer Management under Local Users and Groups > Users.
Part 2: Build the Share Folder
- In File Explorer, create
C:\Sharesand inside it a folder named Projects. - Right-click Projects, choose Properties, and open the Security tab. Click Advanced, disable inheritance, remove unnecessary entries, then add Administrators (Full control) and ShareUser (Modify).
- Add a test document such as readme.txt with a short note so you can confirm read/write access later.
Part 3: Configure the File Share
- Right-click the Projects folder, choose Properties, and open the Sharing tab. Click Advanced Sharing…, check Share this folder, and set the share name to Projects.
- Select Permissions, remove Everyone, add Administrators with Full Control, and add ShareUser with Change and Read permissions. Apply the changes.
- Open Control Panel > Network and Sharing Center > Advanced sharing settings to ensure File and Printer Sharing is turned on for the Private profile.
Part 4: Test Access
- From another device (or the same machine), open File Explorer and enter
\\<hostname>\Projects. Usehostnameto find the computer name. - When prompted, supply the ShareUser credentials. Check that you can read
readme.txtand create a new file. - On the hosting machine, open Computer Management > System Tools > Shared Folders > Sessions to confirm ShareUser is connected. Capture a screenshot if possible.
Part 5: Document and Secure
- Record the share name, path, NTFS permissions, and share permissions. Screenshot the Advanced Sharing dialog if using GUI.
- Note any audit trail created in Event Viewer > Applications and Services Logs > Microsoft > Windows > SMBServer.
- Plan ongoing security: schedule regular reviews of share membership and monitor for suspicious SMB sessions.
Optional Cleanup
- Stop sharing by opening the folder properties > Sharing tab > Advanced Sharing… and clearing Share this folder.
- Remove the Projects folder from File Explorer if no longer needed.
- Delete the ShareUser account via Settings > Accounts > Other users or Computer Management.
Quick Reference
- User management: Settings > Accounts > Other users or
lusrmgr.msc - Sharing tools: Folder Properties > Sharing > Advanced Sharing
- Monitor sessions: Computer Management > Shared Folders > Sessions
For production, consider using groups instead of individual users, and audit access with Advanced Security settings on the share.
Completion Checklist
- ShareUser account created and documented.
- Projects folder created with correct NTFS permissions.
- SMB share published with least privilege access.
- Remote access tested and SMB session verified.
- Configuration notes captured; optional cleanup completed.