You are not logged in.
Dear visitor, welcome to Aqua Computer Forum. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
Quoted from "zigzag"
...ich wollte nur wissen ob bei dir alles normal läuft. Versuch mal folgendes:
![]()
Source code
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.
![]()
Source code
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
|
|
Source code |
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 |
|
|
Source code |
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 |
|
|
Source code |
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" |
Quoted from "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.![]()

|
|
Source code |
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. |
-