Skip to content

Instantly share code, notes, and snippets.

@palkx
Created October 17, 2018 13:52
Show Gist options
  • Save palkx/2e7d035c098a80c0763adc2e8978d882 to your computer and use it in GitHub Desktop.
Save palkx/2e7d035c098a80c0763adc2e8978d882 to your computer and use it in GitHub Desktop.
Fix local network issues in Windows 10 1803 and later
@ECHO OFF
SC config fdPHost start=delayed-auto
sc failure fdPHost reset=86400 actions=restart/120000/restart/120000/restart/120000
SC start fdPHost
SC config FDResPub start=delayed-auto
sc failure FDResPub reset=86400 actions=restart/120000/restart/120000/restart/120000
SC start FDResPub
SC config SSDPSRV start=delayed-auto
sc failure SSDPSRV reset=86400 actions=restart/120000/restart/120000/restart/120000
SC start SSDPSRV
SC config upnphost start=delayed-auto
sc failure upnphost reset=86400 actions=restart/120000/restart/120000/restart/120000
SC start upnphost
SC config Dhcp start=auto
sc failure Dhcp reset=86400 actions=restart/120000/restart/120000/restart/120000
SC start Dhcp
PAUSE >NUL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment