Tagged Questions
2
votes
1answer
561 views
Dos Batch File Help: Storing %%c variable from FOR loop [Resolved]
It's been a while since i've had to write a batch file, and i'm having trouble with the following:
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
for /f %%a in ('dir f:\*mssql* /ad/b') do (
for /f %%b ...
0
votes
1answer
172 views
Install cmd script to set user environment variables from file
Each line in input file.txt has two values separated by a space. Currently using:
for /F "tokens=1,2" %%i in (file.txt) do call :setvars %%i %%j
:setvars
set %1=%2
set %3=%4
set ...