1.

Solve : .bat send file?

Answer»

How can i send a file with .bat to other comp moast easy copy test.txt \\standby\c\test.txt

This command just copied the TEST.TXT file from my local machine's current directory to my machine named STANDBY, the shared drive C, and named it test.txt there too.

Just like a local copy with network path as the destination.but cant you just send it like e-mail to ip? :-/how can i copy 2 txt's in to one? with  batch?and how can i USE choice?? How about you state your PROBLEM FULLY and in complete sentences.  It's pretty hard to offer a solution without knowing what the real problem is.   Quote

how can i copy 2 txt's in to one? with  batch?

copy file1+file2
Can be run from the command line or a batch file
Quote
and how can i use choice??

Choicei've got lots of problems, choise doesnt seem to work on xp, and "can not FIND file C:\text.txt+C:\text2.txt"How can i send a file with .bat to other comp moast easy?
- i would recommend ftp or if you're on a network, put it on a share drive(either one can be done throught batch files

how can i copy 2 txt's in to one? with  batch?
-easy, create a batch file and put this command in it
"type test.txt >> test2.txt"
every time the batch file is run,  the contents of test.txt are added to test2.txt





Discussion

No Comment Found