Search found 2 matches

by drgnfyre
16 Jun 2008 15:46
Forum: DOS Batch Forum
Topic: Can I minimize a batch window from inside the batch file?
Replies: 3
Views: 18806

You can also use a utility called cmdow - just google it. It can minimize your batch window, resize it, lock it, etc. It can actually do this for just about any window, but it's really nice for batch files. Be aware though - some antivirus programs will classify this as a spyware type program (I thi...
by drgnfyre
16 Jun 2008 15:43
Forum: DOS Batch Forum
Topic: remove a square
Replies: 3
Views: 8375

I have ran into this. You simply need to tell copy to copy the file in "binary" mode. (use /b)

copy a.txt +b.txt +c.txt final.txt /b

The square is the End of File indicator or something similar that gets copied when it uses ASCII mode.