“Fix Tech Daily helps you solve real-world IT problems, with daily tips on Windows, Office, networks, and devices.”
Wednesday, August 6, 2025
Install and Configure File Server Services on Windows Server 2022
✅Method 1: Install File Server Role Using Server Manager (GUI)
Step 1: Open Server Manager
Click Start > Server Manager
Step 2: Add Roles and Features
Click Manage > Add Roles and Features
Click Next until you reach Server Roles
Expand File and Storage Services > File and iSCSI Services
Check File Server
Click Next and then Install
✅ Method 2: Install File Server Role Using PowerShell
Step 1: Open PowerShell as Administrator
Install-WindowsFeature -Name FS-FileServer
✅ Method 3: Create File Shares (GUI)
Step 1: Open Server Manager > File and Storage Services > Shares
Step 2: Click Tasks > New Share
Step 3: Choose Share Profile
Choose SMB Share - Quick (or Advanced for more control)
Click Next
Step 4: Select Server and Volume
Select your server and storage volume
Click Next
Step 5: Specify Share Name and Path
Enter a share name (e.g., Client1Data)
Adjust path as needed (e.g., D:\Shares\Client1)
Step 6: Configure Permissions
Click Customize Permissions
Remove Everyone group
Add specific security groups or users
Assign NTFS permissions (Read, Modify, Full Control)
Step 7: Enable Access-based Enumeration (Optional)
Ensures users only see folders they have permission to
Click Next > Create
✅ Method 4: Create File Shares (PowerShell)
New-SmbShare -Name "Client1Data" -Path "D:\Shares\Client1" -FullAccess "DOMAIN\\Client1-Admins" -ChangeAccess "DOMAIN\\Client1-Users"
✅ Method 5: Configure NTFS Permissions (GUI)
Navigate to the folder in File Explorer (e.g., D:\Shares\Client1)
Right-click folder > Properties > Security tab
Click Edit > Add desired users or groups
Set required permissions (e.g., Read, Modify, Full Control)
Click Apply > OK
✅ Method 6: Set Disk Quotas Using File Server Resource Manager (FSRM)
Step 1: Install FSRM Role
Go to Server Manager > Add Roles and Features
Select File Server Resource Manager under File and Storage Services > File and iSCSI Services
Step 2: Launch FSRM
Go to Start > File Server Resource Manager
Click Quota Management > Quota Templates
Step 3: Create a Quota
Right-click Quotas > Create Quota
Choose a folder path (e.g., D:\Shares\Client1)
Apply an existing template or create a custom quota
Choose Soft or Hard limit (e.g., 5 GB)
Click OK
✅ Method 7: File Screening with FSRM
Step 1: Open FSRM > File Screening Management
Click File Screens > Create File Screen
Select folder (e.g., D:\Shares\Client1)
Step 2: Choose File Group
Choose built-in groups like Audio and Video Files, Executable Files, etc.
Set Screening Type: Active (Block) or Passive (Monitor)
Step 3: Notifications and Reports
Configure email notifications or event logs for blocked attempts
✅ Method 8: Generate Reports with FSRM
Step 1: Open FSRM > Storage Reports Management
Right-click Storage Reports > Generate Reports Now
Step 2: Choose Report Type
Select reports: Quota Usage, Duplicate Files, Large Files, etc.
Choose target folder (e.g., D:\Shares)
Select format (HTML, CSV)
View results or schedule automatic reports
This completes a full deployment and configuration of file server services for client environments on Windows Server 2022.