“Fix Tech Daily helps you solve real-world IT problems, with daily tips on Windows, Office, networks, and devices.”
Monday, July 28, 2025
Fix: Windows Server App Restrictions Not Working? Here’s Why
Trying to lock down app installations on Windows Server 2022 but users still sneak around the rules? Let’s troubleshoot the most common missteps and get your restrictions airtight.
🚫 Symptoms You Might See
- Standard users still installing apps via .exe files
- AppLocker rules not applying consistently
- Group Policy settings not syncing across users
- Unexpected access to Microsoft Store or portable apps
🛠️ Troubleshooting Checklist
1. Confirm Group Policy Scope
- Open
gpedit.msc
or Group Policy Management Console - Ensure policies are applied to the correct OU and user group
- Use
gpresult /r
to verify policy application
2. AppLocker Not Enforced?
- Go to
Local Security Policy → Application Control Policies → AppLocker
- Check if rules are set to Enforce, not just Audit
- Create rules for Executable, Script, Installer, and Packaged apps
3. Missing Rule for Portable Apps
- Add rules for
.exe
files in user directories likeDownloads
orAppData
- Use Publisher rules for known apps and Path rules for custom blocks
4. Microsoft Store Still Open?
- Disable via Group Policy:
Computer Configuration → Administrative Templates → Windows Components → Store → Turn off the Store application
5. Policy Not Updating?
- Run
gpupdate /force
- Reboot affected machines
- Check for replication delays in multi-server environments
🧪 Bonus Tip: Create a Test User
Before rolling out restrictions company-wide:
- Create a test user in the same OU
- Log in and attempt app installs
- Monitor AppLocker logs via Event Viewer (
Applications and Services Logs → Microsoft → Windows → AppLocker
)