home *** CD-ROM | disk | FTP | other *** search
- @echo off
- path=a:\
-
- :Begin
- cls
- echo.
- echo *********** PC Inspector clone maxx ***********
- echo ********** Please choose your language **********
- echo.
- echo 1 --- DE (Deutsch)
- echo 2 --- DU (Netherlands)
- echo 3 --- FR (Francais)
- echo 4 --- IT (Italiano)
- echo 5 --- SP (Espanol)
- echo 6 --- US (English)
- echo E --- Esc (Abort)
- echo.
- choice /c:123456e /n ********** Make your selection **********
- if errorlevel 7 goto Ende
- if errorlevel 6 goto p6
- if errorlevel 5 goto p5
- if errorlevel 4 goto p4
- if errorlevel 3 goto p3
- if errorlevel 2 goto p2
- if errorlevel 1 goto p1
-
- :p6
- echo ****** Please wait while the program is starting... ******
- keyb UK
- cmaxx -us
- goto Begin
-
- :p5
- echo ****** Please wait while the program is starting... ******
- keyb SP
- cmaxx -sp
- goto Begin
-
- :p4
- echo ****** Please wait while the program is starting... ******
- keyb IT
- cmaxx -it
- goto Begin
-
- :p3
- echo ****** Please wait while the program is starting... ******
- keyb FR
- cmaxx -fr
- goto Begin
-
- :p2
- echo ****** Please wait while the program is starting... ******
- keyb NL
- cmaxx -du
- goto Begin
-
- :p1
- echo ****** Please wait while the program is starting... ******
- keyb GR
- cmaxx -de
- goto Begin
-
- :Ende
-
-
-