How can I load DOS command in a batch file by a txt files?
and then...is it possibile send net USE command only if the network resource is not available?@echo off set commands=your txt file for /f %%a in ('type "%commands%"') do %%a set commands= :EOF