ipconfig batch file help...

fjacky

Beta member
Messages
3
I sometimes have problems with my high speed connection. What I do is open a command prompt and type in ipconfig /release, then renew.
Is there a simple batch file that I can create to do this? I've seen many examples on the net but none of them have worked.

Please help.....:)
 
Simple, a batch file that looks exactly like this

ipconfig /release
ipconfig /renew
 
Yeah, just open up notepad, type in:
Code:
@echo off
ipconfig /release
ipconfig /renew
And save it as whatever.bat
 
omg you can write batch files in notepad...AGH!! im such an idiot. would have saved me loads of time countless times. thanks for telling him that cause i would have never known lol.
 
Back
Top Bottom