zappl
Goto Top

Programm starten und sofrt wieder schließen per Batch

Ich brauche eine Batch datei die alle meine Office-Anwendungen, sprich Word, Excel, PowerPoint, Publisher und Outlook nach einander startet und danach sofort wieder schließt.

Danke
Zappl

Content-Key: 32465

Url: https://administrator.de/contentid/32465

Printed on: April 19, 2024 at 12:04 o'clock

Member: v0llmilch
v0llmilch May 15, 2006 at 16:17:22 (UTC)
Goto Top
Wozu wenn man Fragen darf?
Evtl. gibt es ja eine besser Möglichkeit für dein "Problem"

Gruß
Alexander
Member: zappl
zappl May 16, 2006 at 07:07:24 (UTC)
Goto Top
Ich muss alle einmal starten, damit es nachher keine Probleme gibt wenn die Benutzer sie nutzen.

Zappl
Member: zappl
zappl May 19, 2006 at 10:21:02 (UTC)
Goto Top
Ich habe selber nochmal nen bissel rumgesucht und habs gelöst.
also falls es wen interressiert:

start Winword.exe
sleep 5
taskkill /f /im Winword.exe
REM ---------------------------------
start excel.exe
sleep 5
taskkill /f /im excel.exe
REM ---------------------------------
start mspub.exe
sleep 5
taskkill /f /im mspub.exe
REM ---------------------------------
start Powerpnt.exe
sleep 5
taskkill /f /im Powerpnt.exe
REM ---------------------------------
start outlook.exe
sleep 5
taskkill /f /im outlook.exe
REM ---------------------------------
pause

CU
Zappl