Search found 78 matches

by brinda
25 Aug 2013 22:27
Forum: DOS Batch Forum
Topic: Colossal Cave Adventure in batch
Replies: 24
Views: 43973

Re: Colossal Cave Adventure in batch

dave thanks. still playing...

:) great flute music as well on your google site. listening to flute as background music while playing the game.

thanks.
by brinda
17 Aug 2013 06:31
Forum: DOS Batch Forum
Topic: Batch file to rename network files with special characters
Replies: 7
Views: 7103

Re: Batch file to rename network files with special characte

foxidrive,

this is a simple code for renaming. can easily understand the replacement :D
by brinda
12 Aug 2013 13:08
Forum: DOS Batch Forum
Topic: Timestamp
Replies: 14
Views: 13982

Re: Timestamp

a much shorter version by penpen from http://www.dostips.com/forum/viewtopic.php?f=3&t=4759 this will give D:\Documents\Downloads>timers 2013-07-13 03:04:27:953 script @if (@X)==(@Y) @end /* Harmless hybrid line that begins a JScript comment ::************ Batch portion *********** @echo off csc...
by brinda
11 Aug 2013 07:22
Forum: DOS Batch Forum
Topic: Timestamp
Replies: 14
Views: 13982

Re: Timestamp

squashman,
that would be a great addition indeed. thanks. :D
by brinda
11 Aug 2013 07:16
Forum: DOS Batch Forum
Topic: BinToBat.bat - Easily install files of any type or size!
Replies: 26
Views: 41458

Re: BinToBat.bat - Easily install files of any type or size!

antonio,
thanks working in win2000 and winxp. another way to pass executable through email. Unless the anti-virus starts detecting... :D
by brinda
11 Aug 2013 07:12
Forum: DOS Batch Forum
Topic: Timestamp
Replies: 14
Views: 13982

Re: Timestamp

All that code does a hell of a lot more. You put it on your path and you call it. That's simple. It's like having sed, awk, gawk, and even your text editor on your path. There are two other very helpful batch programs called repl.bat and findrepl.bat too. it would be nice if there is a pin-it funct...
by brinda
07 Aug 2013 06:44
Forum: DOS Batch Forum
Topic: Depopulation 3D
Replies: 12
Views: 10098

Re: Depopulation 3D

out of topic some help on alternative sndrec which we were using can use below free wav player up to 64bit OS http://skwire.dcmembers.com/wb/pages/software/swavplayer.php . If any functionality or error encounter just just send her an email from the contact and she replies in less than 24 hours. or ...
by brinda
06 Aug 2013 06:37
Forum: DOS Batch Forum
Topic: How to get a batch file to set paths depending on OS?
Replies: 5
Views: 5171

Re: How to get a batch file to set paths depending on OS?

penpen,

thanks. was searching for this as well.
by brinda
02 Aug 2013 19:20
Forum: DOS Batch Forum
Topic: Writing Batch code in an easier way with the aid of macros
Replies: 16
Views: 14350

Re: Writing Batch code in an easier way with the aid of macr

antonio, thanks. as always for me after rereading a few times again and again - some minor enlightment on knowing what is batch macro and it uses are . All the while i was thinking it has something to do with office macro etc. probably need to go a few more times before checking on dave's jeb's topi...
by brinda
31 Jul 2013 05:58
Forum: DOS Batch Forum
Topic: File Not Found
Replies: 16
Views: 11950

Re: File Not Found

Alex/FraidZZ,
thanks. this is short and different method. can get any line from top.
by brinda
30 Jul 2013 09:49
Forum: DOS Batch Forum
Topic: list files from network - parallel process - need help
Replies: 6
Views: 5584

Re: list files from network - parallel process - need help

found the culprit. the network cable has an issue. ping -t shows dropped reply back intermittenly. change cable did solve the issue. already run the script 14 times and it shows all files as it should be.

thanks dave :D
by brinda
30 Jul 2013 06:59
Forum: DOS Batch Forum
Topic: list files from network - parallel process - need help
Replies: 6
Views: 5584

Re: list files from network - parallel process - need help

foxidrive, thanks. the pause is only on one windows. not a kludge but a good method for me to learn start function can do. thanks for helping. dave, sorry. little problem no timeout used, so using PING -n 2 127.0.0.1>nul This equals to 1 second delay. A doubt, ran a sample on 25 network link in para...
by brinda
29 Jul 2013 09:24
Forum: DOS Batch Forum
Topic: list files from network - parallel process - need help
Replies: 6
Views: 5584

Re: list files from network - parallel process - need help

foxidrive, sorry. some issue. It opened 6 cmd windows for 6 path listing. the cmd windows remains open after it finish listing. 6 temporary files were created. content of file.log is a box - single character. On scite it is showing SUB. Believe this would be CTRL-Z Is there a way where only 4 window...
by brinda
29 Jul 2013 08:01
Forum: DOS Batch Forum
Topic: list files from network - parallel process - need help
Replies: 6
Views: 5584

list files from network - parallel process - need help

hi all, using win2000. This is the current method being used. A directory list is done one by one based on the path.txt sequence as below. echo on for /f "usebackq delims=|" %%e in (path.txt) do ( dir /a:-d /b /s "%%e" >> list.dat ) partial content of path.txt \\192.168.1.2\backu...