In my batch file I have this line of code.
FOR /F "eol=; tokens=1,2,3* delims=;/" %%i in ('findstr /v "#" clientsync.cfg') do echo %%l
My current output is
y/IC/draft
Is it possible to get an output like
y:/IC/draft
I would need to insert the : at the second position. Tanks for help!