Tools For Batch

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
phillid
Posts: 109
Joined: 03 Apr 2010 20:27
Location: Wellington, New Zealand
Contact:

Tools For Batch

#1 Post by phillid » 17 Apr 2012 00:01

Hi guys :) Because of this thread: viewtopic.php?t=2734 I ended up writing a couple of simple programs (which you can find on my website - http://batchbin.ueuo.com/batchbinaries.php). I've found them to be very useful and orange_batch showed quite some interest in them. They do not require any extras like DLLs or the .NET Framework; they're entirely standalone.

Please reply with your thoughts, suggestions and ideas for new tools so I can fill the needs of batch scripters :)

Thanks,
Phillid
Last edited by phillid on 25 May 2013 17:25, edited 1 time in total.

Cat
Posts: 32
Joined: 11 Nov 2011 12:04

Re: Tools For Batch

#2 Post by Cat » 17 Apr 2012 12:57

As long as we're on the topic of executable tools, http://www.filedropper.com/multicol this is one that I made a little while back. It's a pretty simple C++ script that prints text in different colors.

phillid
Posts: 109
Joined: 03 Apr 2010 20:27
Location: Wellington, New Zealand
Contact:

Re: Tools For Batch

#3 Post by phillid » 19 Apr 2012 01:00

Anyone...? Thoughts and ideas..?

foxidrive
Expert
Posts: 6031
Joined: 10 Feb 2012 02:20

Re: Tools For Batch

#4 Post by foxidrive » 19 Apr 2012 01:08

Someone wants to print his IP address on the top line of the CMD prompt and have it remain there when the cmd prompt is used for other things. :)

phillid
Posts: 109
Joined: 03 Apr 2010 20:27
Location: Wellington, New Zealand
Contact:

Re: Tools For Batch

#5 Post by phillid » 19 Apr 2012 01:15

Foxidrive, it is that related to a thread on this forum? If so, please send me the link to it.. I'm interested..

EDIT: I found the thread you're talking about, foxidrive. I'll look at writing something for him.

Thanks
Phillid

Judago
Posts: 15
Joined: 04 Nov 2011 07:59

Re: Tools For Batch

#6 Post by Judago » 19 Apr 2012 03:08

I would recommend against using "GetStdHandle". When stdout is redirected (like in the "do" part of a for loop) the handle returned is the redirected handle. "CreateFile" can give a direct handle.

I wrote some tools myself a while ago, I haven't written anything for a while though.

Have a look at my "wcde" tool, it might give you some ideas of things you might want to implement. I'm not really happy with the source and it's an abandoned project now, but anyway it might give you some ideas.

http://judago.webs.com/downloads.htm#590682301

Post Reply