I have a simple question. I have a config.json file with the below content
"DefaultAdminUsername": "Administrator@test.com",
"DefaultAdminPassword": "Admin!",
"DefaultNoOfUsers": "100",
I want to modify the value of "DefaultNoOfUsers" from a batch file for example : Change from 100 to 1000
A pseudo code could be
for /f %%A in (config.json) do (
SET key = value
)
echo %VERSION%
echo %TEST%