Thought I’d share this with you, it really helped me out a lot so maybe it helps someone else here.
Open Notepad and copy this:
@echo off
title RetroArch 1.3.6 - Nestopia v1.48-WIP
color 07
echo.
echo -------
echo Famicom
echo -------
echo.
echo Choose the game you want to play by typing the corresponding number below (1-5) then press Enter to load the game
echo.
echo 1. Game 1
echo 2. Game 2
echo 3. Game 3
echo 4. Game 4
echo 5. Game 5
echo.
set /p a=
IF %a%==1 ("path to RetroArch.exe" --Libretro "path to Libretro core" "path to game/rom/.cue/m3u etc.")
IF %a%==2 ("path to RetroArch.exe" --Libretro "path to Libretro core" "path to game/rom/.cue/m3u etc.")
IF %a%==3 ("path to RetroArch.exe" --Libretro "path to Libretro core" "path to game/rom/.cue/m3u etc.")
IF %a%==4 ("path to RetroArch.exe" --Libretro "path to Libretro core" "path to game/rom/.cue/m3u etc.")
IF %a%==5 ("path to RetroArch.exe" --Libretro "path to Libretro core" "path to game/rom/.cue/m3u etc.")
Paste it to Notepad, make changes that fits you and the system you want to play and then save it as retroarch.bat or something.
Although hard coded, the end result might look something like this:
And voilá
Good luck!
EDIT:
If a game contains “&” in the title and for it to show up correctly in the list you have to specify it like this (bold part):
echo 1. Mario ^& Luigi - Superstar Saga
otherwise it will complain.
You don’t have to correct the titles with “&” in these strings: IF %a%==1 (“path to RetroArch.exe” --Libretro “path to Libretro core” “path to game/rom/.cue/m3u etc.”)