Vous n’êtes pas connecté.
![]() |
Code source |
1 2 3 |
@echo off echo Zum abbrechen bitte "strg + c" druecken! ping -t -a ???.???.???.??? >> c:\testping.txt |
![]() |
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
@echo off ping %1 REM **************************************************** REM PROGRAMM ERZEUGEN, UM Tastendruck einlesen zu können REM **************************************************** IF EXIST taste.com goto taste_da ECHO ntaste.com> taste.dbg ECHO a0100 >> taste.dbg ECHO mov ah,00 >> taste.dbg ECHO int 16 >> taste.dbg ECHO mov ah,4c >> taste.dbg ECHO int 21 >> taste.dbg ECHO. >> taste.dbg ECHO rcx >> taste.dbg ECHO 8 >> taste.dbg ECHO rbx >> taste.dbg ECHO 0 >> taste.dbg ECHO w0100 >> taste.dbg ECHO q >> taste.dbg DEBUG < taste.dbg > nul :taste_da taste |
BiosTauBaer
Non enregistré
Citation de "Smoern"
Das Batchfile is super primitiv, funktioniert aber. ;D
![]() |
Code source |
1 |
ping -t ???.???.???.??? >> c:\ping.txt |
Citation de "#BiosTauBaer"
bei mir wird da nur das "Zum abbrechen bitte "strg + c" druecken!" geloggt
ne batchfile mit dem inhalt:
![]()
Code source
1 ping -t ???.???.???.??? >> c:\ping.txt
tuts auch, und da wird ned nur der text geloggt![]()
Citation de "r1ppch3n"
öhm... clark?
is ja nett wasse da zusammengeschreibselt has aba n einfaches 'pause' hätts auch getan, das macht dann auch nix andres als auf n tastendruck zu warten ;D![]()
![]() |
Code source |
1 2 3 |
@echo off ping %1 pause |
-