Danke für eure Hilfe ! - jetzt läuft alles !
Hi,
ist es möglich aus einer batch-datei eine mesage box aufzurufen ?
und wie lautet der Befehl dazu ?
greez an thx
drab
ist es möglich aus einer batch-datei eine mesage box aufzurufen ?
und wie lautet der Befehl dazu ?
greez an thx
drab
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 9312
Url: https://administrator.de/forum/danke-fuer-eure-hilfe-jetzt-laeuft-alles-9312.html
Ausgedruckt am: 23.12.2024 um 09:12 Uhr
7 Kommentare
Neuester Kommentar
Hi,
das geht mit dem Tool WBAT. Es sieht nicht unbedingt toll aus, aber es funktioniert.
Oder aber auch mit dem Batchtool Wizard's Apprentice, erhältlich zB hier (ganz unten auf der Seite). Beschreibung:
Adds a user interface to batch programming. The Wizard's Apprentice is an application that allows you to ask questions from a batch file. It uses Windows dialog boxes in the so-called Wizard style: dialogs asking one question at a time, with a Back button, a Next button and a Cancel button. A comprehensive manual, including batch techniques to get the most out of the Wizard's Apprentice is included. Source code (in C) is also available. Zip file 154kb.
Ansonsten kannst Du das mit net send %computername% TEXT machen wie Atti es beschrieben hat (am einfachsten)
Oder aber auch aus einem Batchfile heraus ein VBScript antriggern:
---------------------------------------------
und in script1.vbs dann:
Grüße,
fritzo
das geht mit dem Tool WBAT. Es sieht nicht unbedingt toll aus, aber es funktioniert.
Oder aber auch mit dem Batchtool Wizard's Apprentice, erhältlich zB hier (ganz unten auf der Seite). Beschreibung:
Adds a user interface to batch programming. The Wizard's Apprentice is an application that allows you to ask questions from a batch file. It uses Windows dialog boxes in the so-called Wizard style: dialogs asking one question at a time, with a Back button, a Next button and a Cancel button. A comprehensive manual, including batch techniques to get the most out of the Wizard's Apprentice is included. Source code (in C) is also available. Zip file 154kb.
Ansonsten kannst Du das mit net send %computername% TEXT machen wie Atti es beschrieben hat (am einfachsten)
Oder aber auch aus einem Batchfile heraus ein VBScript antriggern:
@echo off
start "Abfrage" script1.vbs
und in script1.vbs dann:
msgbox "Hallo wie gehts?!"
fritzo
schau mal hier nach,
http://es.geocities.com/jpisoft/btewin.htm
hier gibt´s eine Erweiterung für Batchfiles, auch popups!
zum Vorschlag von 'fritzo'
so geht´s variabler:
@echo off
start wscript script1.vbs "Hinweistext"
und in script1.vbs dann:
Set objArgs = WScript.Arguments
msgbox objArgs(0)
Gruß
Jap
http://es.geocities.com/jpisoft/btewin.htm
hier gibt´s eine Erweiterung für Batchfiles, auch popups!
zum Vorschlag von 'fritzo'
so geht´s variabler:
@echo off
start wscript script1.vbs "Hinweistext"
und in script1.vbs dann:
Set objArgs = WScript.Arguments
msgbox objArgs(0)
Gruß
Jap
@jap - stimmt, so hast Du sogar Parameterübergabe, klasse