Configure Windows Defender Firewall to allow Dermi Atlas Professional connections. Includes GUI and PowerShell methods for creating inbound rules.
When Dermi Atlas Manager first runs, Windows usually prompts you to allow network access.
Action: Ensure you select Allow access for both Private and Public networks.
dermi-atlas-manager.exe).If connections are still blocked, you can open specific ports manually.
15015, 15045, 15815, 15845).Your feedback helps us improve our documentation
Contact our support team for personalized help
Run PowerShell as Administrator and execute the following commands:
# Allow HTTP (Adjust port if needed)
New-NetFirewallRule -DisplayName "Atlas Pro HTTP" -Direction Inbound -Protocol TCP -LocalPort 15015 -Action Allow
# Allow HTTPS (Adjust port if needed)
New-NetFirewallRule -DisplayName "Atlas Pro HTTPS" -Direction Inbound -Protocol TCP -LocalPort 15045 -Action Allow
# Allow WebSocket (Adjust port if needed)
New-NetFirewallRule -DisplayName "Atlas Pro WS" -Direction Inbound -Protocol TCP -LocalPort 15815 -Action Allow
# Allow Secure WebSocket (Adjust port if needed)
New-NetFirewallRule -DisplayName "Atlas Pro WSS" -Direction Inbound -Protocol TCP -LocalPort 15845 -Action Allow