I'm using a second batch file in my main one to save/load variables, like this:
if not exist "KeemyDataPersistence.bat" (
echo @ECHO OFF > KeemyDataPersistence.bat
echo SET GENDER=F >> KeemyDataPersistence.bat
echo SET BGCOLOR=0 >> KeemyDataPersistence.bat
echo SET FGCOLOR=2 >> KeemyDataPersistence.bat
)
call KeemyDataPersistence.bat
It's working fine, but I'd like to save that second file (KeemyDataPersistence.bat
) with another extension (.keemy
), so KeemyDataPersistence.keemy
. It saves fine just by replacing .bat by .keemy in the whole code, but when using call KeemyDataPersistence.keemy
, it runs the windows default window to choose the program the user wants to open it with.
How would I be able to make it call the file as a batch file?