Static IP Configuration Not Saving – Complete Fix Guide (2026)
Table of Contents
- Why Static IP Configuration Not Saving Happens
- 1. Check for IP Address Conflicts
- 2. Verify Subnet Mask and Default Gateway
- 3. Run the Network Troubleshooter
- 4. Reset Winsock and TCP/IP Stack
- 5. Update Network Adapter Drivers
- 6. Set Static IP Using PowerShell
- 7. Disable DHCP Client Service
- 8. Check Group Policy Restrictions
- 9. Advanced Troubleshooting
- Conclusion
- FAQ
Hub: Windows 11 Troubleshooting Hub
Quick Answer
Static IP Configuration Not Saving occurs when Windows reverts to DHCP after you set a static IP address. To fix it, check for IP address conflicts, verify subnet mask and gateway settings, run the network troubleshooter, reset Winsock and TCP/IP, update network drivers, or set the static IP using PowerShell. If the error persists, disable DHCP Client service, check Group Policy, or perform advanced troubleshooting like checking for malware or using System Restore. For more Windows networking help, visit our Windows 11 Troubleshooting Hub.
Why Static IP Configuration Not Saving Happens
Static IP Configuration Not Saving is a common network issue where Windows 11 does not retain manually configured static IP settings. After setting a static IP address, subnet mask, and default gateway, the network adapter reverts to DHCP on reboot or network reset. For official Microsoft documentation, refer to the Microsoft TCP/IP addressing documentation.
Static IP Configuration Not Saving can be caused by several factors: IP address conflicts with another device on the network, incorrect subnet mask or gateway settings, corrupted network adapter drivers, Group Policy restrictions, or the DHCP Client service interfering with static settings. This error is similar to other network issues like LAN Connection Shows Unidentified Network DHCP Error and Default Gateway Is Not Available.
Before diving into fixes, ensure you have the correct IP address range for your network. If you are on a corporate network, contact your IT administrator before changing IP settings. For a broader overview of network errors, see our Windows 11 Troubleshooting Hub.
⚠️ Warning: Static IP Configuration Not Saving can occur if the IP address is already in use. Always check for IP conflicts before configuring a static IP.
1. Check for IP Address Conflicts
An IP address conflict occurs when two devices on the same network have the same IP address. This can cause Static IP Configuration Not Saving as Windows detects the conflict and reverts to DHCP.
- Open Command Prompt and run:
ipconfig /all - Note your current IP address, subnet mask, and default gateway.
- Ping the IP address you want to assign:
ping 192.168.1.100 - If you receive a response, the IP is already in use.
- Choose a different IP address outside the DHCP range.
- Check your router’s DHCP settings to see the IP range (usually 192.168.1.100-199).
✅ Expected Result: Using a unique IP address resolves Static IP Configuration Not Saving caused by conflicts.
2. Verify Subnet Mask and Default Gateway
Incorrect subnet mask or default gateway settings can cause Static IP Configuration Not Saving. Ensure these match your network configuration.
- Open Command Prompt and run:
ipconfig /all - Note the subnet mask and default gateway from your router.
- For most home networks, subnet mask is 255.255.255.0.
- The default gateway is usually your router’s IP (e.g., 192.168.1.1).
- When setting a static IP, ensure these values match exactly.
- If your network uses a different subnet, adjust accordingly.
💡 Quick Tip: Incorrect subnet mask or gateway settings can cause Static IP Configuration Not Saving. Always verify these values.
3. Run the Network Troubleshooter
The built-in network troubleshooter can automatically detect and fix Static IP Configuration Not Saving.
- Open Settings > System > Troubleshoot > Other troubleshooters.
- Find Network Adapter and click Run.
- Follow the on-screen instructions.
- If prompted, select your Ethernet or Wi-Fi adapter.
- Apply any recommended fixes.
- Restart your PC and test.
🔁 Alternative Solution: The troubleshooter can also be run from Command Prompt: msdt.exe -id NetworkDiagnosticsNetworkAdapter.
4. Reset Winsock and TCP/IP Stack
Corrupted network settings can cause Static IP Configuration Not Saving. Resetting Winsock and TCP/IP restores default network configurations.
- Open Command Prompt as Administrator.
- Run the following commands in sequence:
netsh winsock reset netsh int ip reset - Restart your PC.
- Try setting the static IP again.
✅ Expected Result: Resetting Winsock and TCP/IP often resolves Static IP Configuration Not Saving.
5. Update Network Adapter Drivers
Outdated or corrupted network drivers can cause Static IP Configuration Not Saving. Updating them can resolve the issue.
- Open Device Manager.
- Expand Network adapters.
- Right-click your network adapter and select Update driver.
- Select “Search automatically for drivers”.
- If Windows doesn’t find updates, visit your manufacturer’s website to download the latest driver.
- Restart your PC.
🔁 Alternative Solution: For more detailed driver update guidance, see How to Update Drivers Windows 11.
6. Set Static IP Using PowerShell
If the GUI settings do not save, setting the static IP using PowerShell can bypass Static IP Configuration Not Saving.
- Open PowerShell as Administrator.
- Find your network adapter name:
Get-NetAdapter - Set a static IP address:
New-NetIPAddress -InterfaceIndex 3 -IPAddress 192.168.1.100 -PrefixLength 24 -DefaultGateway 192.168.1.1 - Set DNS servers:
Set-DnsClientServerAddress -InterfaceIndex 3 -ServerAddresses ("8.8.8.8", "8.8.4.4") - Replace interface index and IP addresses with your values.
- Restart your PC.
💡 Quick Tip: PowerShell commands bypass GUI issues and can resolve Static IP Configuration Not Saving.
7. Disable DHCP Client Service
The DHCP Client service can interfere with static IP settings and cause Static IP Configuration Not Saving. Disabling it forces the system to use static settings.
- Press Win + R, type services.msc, and press Enter.
- Locate DHCP Client.
- Right-click and select Properties.
- Change the Startup type to Disabled.
- Click Stop to stop the service immediately.
- Click OK and restart your PC.
⚠️ Warning: Disabling DHCP Client prevents automatic IP assignment. Only do this if you are using a static IP and know your network settings.
8. Check Group Policy Restrictions
Group Policy can restrict static IP configuration and cause Static IP Configuration Not Saving. Check and adjust these policies.
- Press Win + R, type gpedit.msc, and press Enter (Windows Pro/Enterprise only).
- Navigate to Computer Configuration > Administrative Templates > Network > Network Connections.
- Find “Prohibit use of Internet Connection Sharing on your DNS domain network”.
- Ensure it is set to Not Configured or Disabled.
- Find “Prohibit modification of the properties of connections”.
- Set it to Not Configured.
- Apply changes and restart your PC.
🔁 Alternative Solution: For Windows Home edition, use the Registry Editor instead.
9. Advanced Troubleshooting
If the error persists, try these advanced solutions.
Check for Malware
Malware can interfere with network settings. Run a full scan with Windows Defender Offline. For detailed steps, see How to Scan Malware Windows 11.
Perform a Clean Boot
A clean boot eliminates software conflicts. Press Win + R, type msconfig, go to Services, check “Hide all Microsoft services,” click Disable all, disable startup items in Task Manager, restart, and test.
Reset Network Adapter
In Device Manager, right-click your network adapter and select Uninstall device. Check “Delete the driver software.” Restart your PC to reinstall the adapter.
Use the Windows Network Reset
Go to Settings > Network & Internet > Advanced network settings > Network reset and click Reset now. This removes and reinstalls all network adapters.
Perform a System Restore
If the error started after a system change, use System Restore to revert. See How to Use System Restore Windows 11.
For more networking troubleshooting, explore our Windows 11 Troubleshooting Hub.
Conclusion
Static IP Configuration Not Saving is a common network issue that can be fixed by checking for IP conflicts, verifying subnet mask and gateway settings, running the network troubleshooter, resetting Winsock and TCP/IP, updating drivers, using PowerShell, disabling DHCP Client, and checking Group Policy. If the error persists, perform advanced troubleshooting like scanning for malware, performing a clean boot, or using System Restore. By following these steps, you can make static IP settings persist in Windows 11.
Regular system maintenance, such as keeping network drivers updated and periodically checking IP configurations, can prevent Static IP Configuration Not Saving from recurring. For more Windows and networking troubleshooting, explore our Windows 11 Troubleshooting Hub and check out related articles on LAN Connection Shows Unidentified Network DHCP Error, Default Gateway Is Not Available, and Windows 11 No Internet Secured Wi-Fi Error.
Related Guides
- Windows 11 Troubleshooting Hub
- LAN Connection Shows Unidentified Network DHCP Error
- Default Gateway Is Not Available
- Windows 11 No Internet Secured Wi-Fi Error
- DNS Server Not Responding in Windows 11
- IPv6 Partial Connectivity
- How to Update Drivers Windows 11
- How to Use System Restore Windows 11
- How to Scan Malware Windows 11
- Network Adapter Disappeared from Device Manager
- Static IP Configuration Not Saving in Windows 11
- RPC Server Unavailable Error
- Windows 11 “No Internet, Secured” Wi-Fi Error Fix
- Windows 11 High CPU Usage Fix
FAQ
What causes Static IP Configuration Not Saving?
Static IP Configuration Not Saving is caused by IP address conflicts, incorrect subnet mask or gateway settings, corrupted drivers, Group Policy restrictions, or DHCP Client service interference.
How do I fix Static IP Configuration Not Saving?
Check for IP conflicts, verify subnet mask and gateway, run the network troubleshooter, reset Winsock and TCP/IP, update drivers, use PowerShell, disable DHCP Client, or check Group Policy.
Can an IP address conflict cause Static IP Configuration Not Saving?
Yes, if the IP address is already in use, Windows reverts to DHCP, causing Static IP Configuration Not Saving. Use a unique IP address.
Is Static IP Configuration Not Saving a hardware or software issue?
It is primarily a software issue caused by drivers, services, or settings. However, hardware issues like a faulty network adapter can also contribute.
How do I set a static IP using PowerShell?
Run New-NetIPAddress -InterfaceIndex 3 -IPAddress 192.168.1.100 -PrefixLength 24 -DefaultGateway 192.168.1.1 in PowerShell as Administrator.
Should I disable DHCP Client for Static IP?
Disabling DHCP Client can prevent Static IP Configuration Not Saving, but it also prevents automatic IP assignment. Only do this if you are using a static IP permanently.
Can Group Policy cause Static IP Configuration Not Saving?
Yes, Group Policy can restrict static IP configuration. Check policies under Computer Configuration > Administrative Templates > Network > Network Connections.
How do I check for IP address conflicts?
Ping the IP address you want to assign. If you receive a response, the IP is already in use. Choose a different IP.
What should I do if the error persists after all fixes?
If the error persists, run a malware scan, perform a clean boot, use the Windows Network Reset, or perform a System Restore.
Can outdated network drivers cause Static IP Configuration Not Saving?
Yes, outdated or corrupted drivers can cause this error. Update them via Device Manager or the manufacturer’s website.
We’re a team of system administrators, technical writers, and platform specialists who genuinely enjoy solving the problems most users find frustrating. From persistent Windows errors and Android sync failures to browser crashes and network drops — we’ve seen it all, and we document every fix properly. Our guides are built on official documentation, direct testing, and real troubleshooting experience. No filler, no guesswork — just reliable, step-by-step solutions you can trust.