You can use something like this :-
Copy and Paste the code into Notepad and save as Menu.cmd
Run Python#1 etc can be any text you like.
The Python#1 etc after Start should be the full path and filename of the file you want to run.
To make the menu run at startup do Start > All Programs > right-click on the Startup folder > Open, then copy the Menu.cmd file into that folder.
Code:
@echo off
title Multiple Choice Menu
:home
cls
echo.
echo Select a task:
echo =============
echo.
echo 1) Run Python#1
echo 2) Run Python#2
echo 3) Run Python#3
echo.
set /p web=Type option:
cls
if "%web%"=="1" Start Python#1
if "%web%"=="2" Start Python#2
if "%web%"=="3" Start Python#3
echo.
Pause
goto home
Run Python#1 etc can be any text you like.
The Python#1 etc after Start should be the full path and filename of the file you want to run.
To make the menu run at startup do Start > All Programs > right-click on the Startup folder > Open, then copy the Menu.cmd file into that folder.