@echo off : Gerard O'Rourke cls set confirm=N set /P confirm=Do you want to proceed and disable RSS? IF "%confirm%" == "Y" goto continue IF "%confirm%" == "y" goto continue goto end :continue @echo on netsh int tcp set global rss=disabled netsh int tcp show global pause exit :end echo Script Aborted! pause