Diskussionsgruppe: WindowsXP
Hi ich hab hier nen code der aber nicht richtig funktionert könnt ihr mir vllt helfen? --------------------------------------------------- ipconfig/all > c:\ip.txt
ftp ftp.whatever.com NEED A TIMED PAUSE HERE user name NEED A TIMED PAUSE HERE password NEED A TIMED PAUSE HERE put c:\ip.txt NEED A TIMED PAUSE HERE exit ---------------------------------------------------
Von: Franky-Boy Datum: 18.06.2007, 23:45
Antwort 1
von Franky-Boy vom 19.06.2007, 00:29
Ok hab jetzt noch mal was anderes versucht und das klappt manchmal sogar... ---------------------------------------------------------------- @ECHO OFF > script.ftp ECHO "user id" >>script.ftp ECHO "password for id" >>script.ftp ECHO ascii >>script.ftp ECHO put c:\ip.txt >>script.ftp ECHO quit ipconfig/all > c:\ip.txt FTP -v -s:script.ftp "your ftp address" TYPE NUL >script.ftp DEL script.ftp DEL c:\ip.txt cls goto End
:End ----------------------------------------------------------------
|
|