Skip to content

Instantly share code, notes, and snippets.

@adamfisher
Last active May 14, 2024 13:13
Show Gist options
  • Save adamfisher/253f63bed11953c2f852 to your computer and use it in GitHub Desktop.
Save adamfisher/253f63bed11953c2f852 to your computer and use it in GitHub Desktop.
Eliminate YouTube buffering delays on Windows by running this command at the Windows command line. It prevents your computer from using CDN servers that rate limit the streaming speed of videos.
# Eliminates requests to YouTube's Buffering CDN Locations
#Install
netsh advfirewall firewall add rule name="YoutubeBufferTrick" dir=in action=block remoteip=173.194.55.0/24,206.111.0.0/16,208.117.251.0/24 enable=yes
#Uninstall
netsh advfirewall firewall delete rule name="YoutubeBufferTrick"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment