Advertisement
Guest User

Easy network managing tool,

a guest
Nov 13th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. //Paste this into any text file and save it as .bat//
  2. //Launch ony with Administrator privileges//
  3.  
  4. @echo off
  5. :Start
  6. echo Ready in 3 seconds...
  7. TIMEOUT /T 3 /NOBREAK
  8. echo.
  9. echo Adapter's off
  10. netsh interface set interface name="insert the name of your adapter and paste in more lines with different adapters, in case you have more. Those will get disabled." admin="disabled"
  11. echo Now it's back on
  12. netsh interface set interface name="insert the name of your adapter and paste in more lines with different adapters, in case you have more. Now those will be enabled. If the driver's off already the Disable task will be ignored and this line will make sure it's switched on." admin="enable"
  13. echo.
  14. echo Everything's done.
  15. color a
  16. pause >nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement