@echo off cls echo Please press the letter corresponding to echo your hard drive (C, D, E, F, and G are echo valid drive choices) choice /c:cdefg /n if errorlevel 5 goto inst5 if errorlevel 4 goto inst4 if errorlevel 3 goto inst3 if errorlevel 2 goto inst2 if errorlevel 1 goto inst1 :inst1 md c:\PINBALL xcopy *.* /s c:\PINBALL echo You may need to run the Setup program. echo To play, enter the directory c:\PINBALL echo then type PINBALL and press ENTER c: goto end :inst2 md d:\PINBALL xcopy *.* /s d:\PINBALL echo You may need to run the Setup program. echo To play, enter the directory c:\PINBALL echo then type PINBALL and press ENTER d: goto end :inst3 md e:\PINBALL xcopy *.* /s e:\PINBALL echo You may need to run the Setup program. echo To play, enter the directory c:\PINBALL echo then type PINBALL and press ENTER e: goto end :inst4 md f:\PINBALL xcopy *.* /s f:\PINBALL echo You may need to run the Setup program. echo To play, enter the directory c:\PINBALL echo then type PINBALL and press ENTER f: goto end :inst5 md g:\PINBALL xcopy *.* /s g:\PINBALL echo You may need to run the Setup program. echo To play, enter the directory c:\PINBALL echo then type PINBALL and press ENTER g: goto end :end