1.

Solve : GET the values from ini file?

Answer»

Hi,

I NEED to GET a value from an ini file then add use the value to RUN a program

e.g

[Sample]
SourcePath=\\server\directory\

how can i get the value of SourcePath? Code: [Select]echo off
for /F "tokens=1-2 delims==" %%A in (file.ini) do (
echo %%B
)
pause >nul



Discussion

No Comment Found