Skip to content

Instantly share code, notes, and snippets.

@stania
Created November 13, 2014 09:03
Show Gist options
  • Save stania/99d6a416baa509d07aeb to your computer and use it in GitHub Desktop.
Save stania/99d6a416baa509d07aeb to your computer and use it in GitHub Desktop.
wait for ip released from others in same network
@echo off
:chk
call ipconfl.bat %1
if errorlevel 1 goto exit
timeout /t 1 > nul
goto chk
exit /b 1
:exit
echo %1 released
exit /b 0
@stania
Copy link
Author

stania commented Nov 13, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment