See scripts below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@setlocal | |
@ping -n 1 %~2 | find "Pinging" > %TEMP%\ADDR_IPv4.txt | |
@for /F "tokens=2 delims=[]" %%a in (%TEMP%\ADDR_IPv4.txt) do @set ip=%%a | |
@endlocal & set "%~1=%ip%" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@REM USAGE: @call StartVncViewer MyComputerName | |
@setlocal | |
@call GetIpFromName ip "%~1" | |
@pushd C:\Progra~1\TightVNC | |
@start vncviewer.exe %ip% | |
@popd | |
@endlocal |