This is what I have so far
@echo off :Ask echo Would you like to use developer mode?(Y/N) set INPUT= set /P INPUT=Type input: %=% If %INPUT%==\"y\" goto yes
Add quotation marks (" ") around the %INPUT% so it looks like this:
If "%INPUT%" == "y" goto yes If "%INPUT%" == "n" goto no If "%INPUT%" == "Y" goto yes If "%INPUT%" == "N" goto no