• Before registering an account on PlayerSquared you must first agree that you are at least 13 years of age & have read & agree to our Terms & rules & our Privacy policy.

How to fix "Internet Connection Sharing (ICS)" not working after restarting computer

illusional

Elite Gamer
VIP MEMBER
February 2, 2019
185
2,927
illusionaldex.github.io
2,655

Internet Connection Sharing (ICS) Stops Working After Reboot in Windows 10/11​

Internet Connection Sharing (ICS) service in Windows allows you to share Internet connection on your computer with other devices in your local network (via Wi-Fi or Ethernet). This allows all computers on the local network to access the Internet via an Internet connection on one computer (the computer may be connected to the Internet via a 5G/4G/LTE modem, direct cable connection via a second adapter, satellite connection, PPPoE, VPN, etc.). In this case, this Windows computer with two network interfaces connected to different networks will be a network gateway to other devices. ICS is a built-in Windows service that provides network connection sharing, address translation (NAT), and DHCP server functionality.

You can enable shared access to a network connection in Windows in the properties of the network adapter (Sharing tab -> Internet Connection Sharing -> Allow other network users to connect through this computer’s Internet connection).
ICS sharing not working after windows 10 reboot

There is one unpleasant drawback in modern Windows 10/11 builds: if a computer with a shared network connection is restarted, other computers in a local LAN/Wi-Fi network lose Internet access.
The matter is that in modern Windows 10/11 builds Internet Connection Sharing service is disabled in 4 minutes and it does not restart automatically if no traffic goes through the shared connection. To restore shared Internet access, you need to uncheck and check the shared access option in the properties of the network adapter Windows is using to connect to the Internet.
  1. To enable Internet Connection Sharing to start automatically after restarting Windows 10, enable a DWORD registry parameter EnableRebootPersistConnection with the value 1 in the reg key HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\SharedAccess.
  • It is easier to create a registry parameter using this PowerShell command:
  • New-ItemProperty -Path HKLM:\Software\Microsoft\Windows\CurrentVersion\SharedAccess -Name EnableRebootPersistConnection -Value 1 -PropertyType dword
EnableRebootPersistConnection registry key

  1. Then set the automatic startup for the Internet Connection Sharing service (SharedAccess). You can change the startup type from Manual to Automatic in services.msc or using PowerShell:
  • Set-Service SharedAccess –startuptype automatic –passthru
  • Start the service:
  • Start-Service SharedAccess
internet connection sharing - configure service autostart on windows 10

I do not take credit for this fix just thought i'd share it.
Original Website