Fileshare Basic
Workgroup File Server & Public Share Guide
(NO DOMAIN)
Setting up a file share in a Workgroup environment (no Active Directory) requires handling permissions differently than in a Domain. By default, Windows blocks unauthenticated access.
This guide covers how to set up a “Public” Share (accessible by anyone on the local network without a specific user account) and a standard secure share.
⚠ Security Warning: A “Public” share with “Password Protected Sharing” turned OFF means anyone who connects to your Wi-Fi or LAN can read/write these files. Use this only for trusted internal networks.
Step 1: Install File Server Role
While Windows Server comes with basic file capabilities, installing the full role ensures you have the proper management tools (fsrm, etc.).
- Open Server Manager.
- Click Add Roles and Features.
- Skip to Server Roles.
- Expand File and Storage Services > File and iSCSI Services.
- Check:
- ✅ File Server
- ✅ File Server Resource Manager (Optional, but good for quotas/monitoring).
- Finish the installation.
Step 2: Configure Network Discovery & Password Sharing
For a “Public” share to work without prompting for a password, you must disable password-protected sharing.
- Open Control Panel (classic view).
- Go to Network and Sharing Center.
- Click Change advanced sharing settings (left sidebar).
- Expand Private (or Current Profile):
- ✅ Turn on network discovery.
- ✅ Turn on file and printer sharing.
- Expand All Networks (at the bottom):
- ✅ Turn off password protected sharing.
- Note: If you leave this ON, users must have a local account on the server to access even “Public” folders.
- Click Save changes.
Step 3: Create the Folder Structure
It is best practice to keep shares off the C: drive (system drive) if possible to prevent the OS from filling up.
- Open File Explorer.
- Navigate to your data drive (e.g.,
D:\). - Create a folder named
CompanyData(or similar). - Inside that, create your subfolder:
PublicShare.
Step 4: Create the Share (The “Door” Permissions)
Windows has two layers of security: Share Permissions (the network door) and NTFS Permissions (the local file lock). For a public share, we open both.
- Right-click the
PublicSharefolder > Properties. - Go to the Sharing tab.
- Click Advanced Sharing.
- Check Share this folder.
- Click Permissions:
- Highlight Everyone.
- Check Allow for Full Control (or Change/Read depending on needs).
- Click OK.
- Click OK again to close Advanced Sharing.
Step 5: Configure NTFS Permissions (The “Lock” Permissions)
Even if the Share is open, the file system will block access if NTFS is restrictive.
- Switch to the Security tab (in the same Properties window).
- Click Edit… > Add….
- Type
Everyoneand click Check Names > OK. - With Everyone highlighted:
- Check Allow for Modify (allows reading, writing, deleting, but not changing owner).
- Security Tip: Avoid “Full Control” here unless users need to change permissions.
- Click OK > OK.
Step 6: Verify Firewall Rules
If users cannot connect, the Windows Firewall is usually the blocker.
- Open Run (
Win + R) and typewf.msc. - Click Inbound Rules.
- Ensure the following rules are Enabled (Green Checkmark):
File and Printer Sharing (SMB-In)File and Printer Sharing (NB-Session-In)
- If they are gray/disabled, right-click them and select Enable Rule.
Step 7: How to Connect (Client Side)
Since there is no domain to publish shares, users must map the drive manually.
Method A: Network Browse
- Open File Explorer on a client PC.
- Click Network in the sidebar.
- If discovery is on, you should see the
SERVERNAME. - Double-click it. You should see
PublicShareand be able to open it without a password.
Method B: Map Network Drive (Persistent)
- Open File Explorer > This PC.
- Click Map network drive (in the ribbon “Computer” tab).
- Drive: Select a letter (e.g.,
P:). - Folder:
\\SERVERNAME\PublicShare(or use IP:\\192.168.1.10\PublicShare). - Check Reconnect at sign-in.
- Click Finish.
Troubleshooting Checklist
- “Access Denied” Error?
- Check Step 5: Did you add “Everyone” to the Security tab?
- Check Step 2: Did you turn off Password Protected Sharing in “All Networks”?
- “Network Path Not Found”?
- Check Step 6: Is the Firewall blocking SMB?
- Try connecting via IP address instead of name (
\\192.168.x.x\Share).
- Asking for a Username/Password?
- This means “Password Protected Sharing” is still active, OR the client PC thinks the network is “Public” and is blocking unauthenticated traffic.
- Fix: On the client PC, ensure the network connection type is set to Private (Work), not Public.