I need a way to load my own custom settings from an .conf file eg. in .conf
Color=45
title=Hello World
default-text=hello
echo-at-start=Welcome
I need a way to load my own custom settings from an .conf file eg. in .conf
Color=45
title=Hello World
default-text=hello
echo-at-start=Welcome
This assumes your file is called settings.conf, and that it's in the same directory as the batch script.
@echo off
for /F "delims=" %%A in (settings.conf) do set "%%A"