Morning All, Im currently trying to list the subdirectories as menu options within a batch file. Ive gotten so far but unable to get menu choices displayed. What i have so far is: SET option=1 ECHO. for /d %%X in (C:\BusNet\Code\armbus\*) do ( SET /a option+=1 ECHO. %option% %%X ) PAUSE How ever the...