top of page

Speed Up Your Internet & Boost Your Windows PC With One Click

  • Writer: Brian Clark
    Brian Clark
  • Mar 10, 2022
  • 1 min read

I've been working with batch files for a while now and decided to make a faster way to boost my internet speed and delete my temporary files with one click.


To use the batch script I created, open a notepad and copy and paste the following commands in your notepad file.




  Netsh int tcp show global 
  Netsh int tcp set chimney=enabled 
  Netsh int tcp set global autotuninglevel=normal 
  netsh interface tcp show heuristics
  netsh interface tcp set heuristics disabled
  Netsh int set global congestionprovider=ctcp 
  ipconfig/flushdns 
  Fsutil behaivior query memoryusage
  Fsutil behaivior set memoryusage 2
  ipconfig/release
  netsh winsock reset
  
  @RD /S /Q "C:\Users\THINKP~1.THI\AppData\Local\Temp\"
  cd C:\Users\Thinkpad.THINK\Desktop
 
  rd /s %systemdrive%\$Recycle.bin
 
  netsh int ip reset c:\resetlog.txt
   
  ping -t 192.168.169.1
  
pause

Save the file with a .bat extension; find the file with a gear icon. Right-click on the .bat icon and run.


Sources:


Get It Solutions. (2022). How to create a batch file to delete folder – Command Line(CMD) https://www.get-itsolutions.com/create-batch-file-delete-folder-command-line/



Comments


bottom of page