Okay, there's one thing I cannot understand and that is how to setup the .bat file

I copied the following thing to the config.txt file:
{
"cryptonight_type" : NORMAL
"intensity" : 0,
"double_threads" : TRUE,
"target_temperature" : 45,
"pool_use_tls" : FALSE,
"pool" : "etn-eu1.nanopool.org:13333",
"wallet" : "xxx",
"password" : "x",
"location" : "EUROPE",
"log_file" : "IF YOU WANT TO LOG MINER OUTPUT PUT A FILENAME HERE"
}
I did not make any changes in the .bat file, because I wasn't too sure if I should be doing it. When I start the bat file, it loads something and afterwards I receive an error in the config.txt file (ParseError). Can anyone explain what do I exactly need to do to fix this issue?
EDIT: adding what's in the .bat file:
setx GPU_FORCE_64BIT_PTR 1
setx GPU_MAX_HEAP_SIZE 100
setx GPU_MAX_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_MAX_SINGLE_ALLOC_PERCENT 100
@echo off
cls
SETLOCAL EnableExtensions
set EXE=SRBMiner-CN.exe
:START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% -c config.txt
TIMEOUT /T 15 /NOBREAK
goto START
:RUNNING
echo "%EXE% is already running"
pause