M
MiNdAr
Guest
Source For My Simple Network Tool
Just Copy To Notepad And Save As MiNdAr's Simple Network Tool v1.0.bat
Coding Language - Batch LOL
Just Copy To Notepad And Save As MiNdAr's Simple Network Tool v1.0.bat
Coding Language - Batch LOL

Code:
@Echo Off
Echo -----------------------------------
Echo MiNdAr's Simple Network Tool v1.0
Echo -----------------------------------
Echo =============================================================================
Echo Step 1 [ ipconfig /release ] Release the IP address for the specified adapter.
Echo Step 2 [ ipconfig /flushdns ] Purges the DNS Resolver cache.
Echo Step 3 [ ipconfig /renew ] Renew the IP address for the specified adapter.
Echo =============================================================================
Pause
cls
Echo -----------------------------------
Echo MiNdAr's Simple Network Tool v1.0
Echo -----------------------------------
Echo Step 1 [ ipconfig /release ] Release the IP address for the specified adapter.
@Echo On
ipconfig /release
@Echo off
Echo Step 1 Complete
Pause
cls
Echo -----------------------------------
Echo MiNdAr's Simple Network Tool v1.0
Echo -----------------------------------
Echo Step 2 [ ipconfig /flushdns ] Purges the DNS Resolver cache.
@Echo On
ipconfig /flushdns
@Echo off
Echo Step 2 Complete
Pause
cls
Echo -----------------------------------
Echo MiNdAr's Simple Network Tool v1.0
Echo -----------------------------------
Echo Step 3 [ ipconfig /renew ] Renew the IP address for the specified adapter.
@Echo On
ipconfig /renew
@Echo off
Echo Step 3 Complete
Pause
cls
Echo -----------------------------------
Echo MiNdAr's Simple Network Tool v1.0
Echo -----------------------------------
Echo Thank Your For Using My Simple Network Tool
Pause