@echo off for /f "tokens=1,2,3 delims= " %%a in ('net use ^| find "Unavailable"') do ( echo Remapping %%c to %%b net use %%b %%c /persistent:yes )