Batch problem
Jeg har lavet en batchfil og lagt den i C:\Windows\System32så jeg bare kan gå ind i kør og skrive "app" (så starter den min app.bat)
Filen ser sådan her ud:
-------------------------------
@echo off
title Cronjob's console
:top
echo.
echo -----------------------------------
echo PROGRAMMER
echo -----------------------------------
echo 1. LimeWire PRO 4.9.37
echo 2. CloneDVD2
echo 3. Adobe Photoshop CS2
echo 4. Autodesk Maya 8.0
echo 5. Ashampoo Burning Studio 6.0
echo 6. Alcohol 120%
echo.
echo -----------------------------------
echo KOMMUNIKATION
echo -----------------------------------
echo 7. NoName Script
echo 8. Windows Live Messenger
echo 9. VentriloMIX
echo.
echo -----------------------------------
echo SPIL
echo -----------------------------------
echo 10. Steam / Counter-strike
echo 11. FIFA 2007 (CD required)
echo.
echo.
echo.
Set /P Choice= Vaelg hvad du vil starte: %
echo.
echo.
IF %choice%'==1' GOTO limewire
IF %choice%'==2' GOTO clonedvd
IF %choice%'==3' GOTO photoshop
IF %choice%'==4' GOTO maya
IF %choice%'==5' GOTO ashampoo
IF %choice%'==6' GOTO alcohol
IF %choice%'==7' GOTO mirc
IF %choice%'==8' GOTO msn
IF %choice%'==9' GOTO ventrilo
IF %choice%'==10' GOTO steam
IF %choice%'==11' GOTO fifa
:limewire
echo Du har startet: LimeWire PRO 4.9.37
start C:\Programmer\LimeWire\LimeWire.exe
GOTO end
:clonedvd
echo Du har startet: CloneDVD2
start C:\Programmer\Elaborate Bytes\CloneDVD2\CloneDVD2.exe
GOTO end
:photoshop
echo Du har startet: Adobe Photoshop CS2
start F:\Programmer\Adobe\Adobe Photoshop CS2\Photoshop.exe
GOTO end
:maya
echo Du har startet: Autodesk Maya 8.0
start F:\Programmer\Alias\Maya8.0\bin\maya.exe
GOTO end
:ashampoo
echo Du har startet: Ashampoo Burning Studio 6.0
start C:\Programmer\Ashampoo\Ashampoo Burning Studio 6\burningstudio.exe
GOTO end
:alcohol
echo Du har startet: Alcohol 120%
start C:\Programmer\Alcohol Soft\Alcohol 120\Alcohol.exe
GOTO end
:mirc
echo Du har startet: NoName Script
start F:\mIRC\mirc.exe
GOTO end
:msn
echo Du har startet: Windows Live Messenger
start C:\Programmer\MSN Messenger\msnmsgr.exe
GOTO end
:ventrilo
echo Du har startet: VentriloMIX
start C:\Programmer\VentriloMIX\VentriloMIX.exe
GOTO end
:steam
echo Du har startet: Steam
start F:\Steam\Steam.exe
GOTO end
:fifa
echo Du har startet: FIFA 2007 (CD required)
start F:\Spil\FIFA 07\fifa07.exe
GOTO end
:end
-------------------------------
Men jeg har lidt et problem, tag f.eks. messenger.
start C:\Programmer\MSN Messenger\msnmsgr.exe
den kan jeg ikke få lov at køre, fordi der i mappens navn er et mellemrum, og hvis jeg sætter " rundt om det hele åbner den bare en cmd som hedder 'C:\Programmer\MSN Messenger\msnmsgr.exe' som title..
Nogle forslag? :)
