Vous n’êtes pas connecté.
Bonjour, visiteur, bienvenue sur les forums Aqua Computer Forum. Si c’est votre première visite, nous vous invitons à consulter l’Aide. Elle vous expliquera le fonctionnement de cette page. Pour avoir accès à toutes les fonctionnalités, vous devez vous inscrire. Pour cela, veuillez utiliser le formulaire d’enregistrement, ou bien lisez plus d’informations sur la procédure d’enregistrement. Si vous êtes déjà enregistré, veuillez vous connecter.
Citation de "zigzag"
...ich wollte nur wissen ob bei dir alles normal läuft. Versuch mal folgendes:
![]()
Code source
1 2 3 4 5 6 7 8 @echo off start "" "C:\Programme\Internet Explorer\IEXPLORE.EXE" start "" "C:\Programme\Mozilla Firefox\firefox.exe" GOTO END : END exit
Edit:
... zum testen von batches füge ich immer pausen ein, so sehe ich ob teilcodes laufen, z.B.
![]()
Code source
1 2 3 4 5 6 7 8 9 @echo off start "" "C:\Programme\Internet Explorer\IEXPLORE.EXE" start "" "C:\Programme\Mozilla Firefox\firefox.exe" GOTO END : END pause exit
|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 |
@echo off start "" "C:\Programme\Internet Explorer\IEXPLORE.EXE" start "" "C:\Programme\Mozilla Firefox\firefox.exe" start "" "C:\WINDOWS\system32\calc.exe" start "" "C:\WINDOWS\system32\notepad.exe" start "" "C:\WINDOWS\system32\mspaint.exe" GOTO END : END exit |
|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
@echo off start "" "C:\Programme\Internet Explorer\IEXPLORE.EXE" sleep 5 start "" "C:\Programme\Mozilla Firefox\firefox.exe" sleep 5 start "" "C:\WINDOWS\system32\calc.exe" sleep 5 start "" "C:\WINDOWS\system32\notepad.exe" sleep 5 start "" "C:\WINDOWS\system32\mspaint.exe" GOTO END : END exit |
|
|
Code source |
1 2 3 4 5 6 |
@echo off start "" "C:\Programme\Internet Explorer\IEXPLORE.EXE" start "" "C:\Programme\Mozilla Firefox\firefox.exe" start "" "C:\WINDOWS\system32\calc.exe" start "" "C:\WINDOWS\system32\notepad.exe" start "" "C:\WINDOWS\system32\mspaint.exe" |
Citation de "Smoern"
@JS
Sei so nett und poste doch mal dein Konstrukt mit 5 Programmen welches nicht läuft. Hab den leisen Verdacht, dass du die führenden "" immer noch weg lässt.![]()

|
|
Code source |
1 2 |
START ["Titel"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED] [/LOW | /NORMAL | /HIGH | /REALTIME] | /ABOVENORMAL | /BELOWNORMAL][/WAIT] [/B] [Befehl/Programm] [Parameter] "Titel" Der Titel des neuen Fensters. |
-