Hello All I want to zip all the contents of a directory in this format:- zip tempyymmdd.zip * How would I append yymmdd to temp each time I create a zip file....
On Wed, 19 Dec 2007 10:18:39 -0000, "rajesh_k51" <rajesh_k51@...> wrote: Untested: @echo off set v=%date% set v=%v:~8,2%%v:~3,2%%v:~0,2% zip temp%v%.zip...
... tested and used daily... ... for /f "tokens=1-4 delims=/ " %%a in ('DATE /T') do (set DOW=%%a) & (set dd=%%c) & (set mm=%%b) & (set yy=%%d) for /f...
Hello, In order to set a password for MySQL under Windows, I have to run the following command: c:\webserver\mysql\bin\mysqladmin -u root password <desired...
On Fri, 28 Dec 2007 10:32:54 +0200, "Aristos M. Vasiliou" <aristos@...> ... Sure, if you don't mind the password being displayed while you type it. :) ...
Hi Mic, The database will be running on Windows XP and Windows Server 2003. If I type the password once, then it's better if it's displayed while typing. If...
If it's something that you don't mind being displayed then the simplest way is with standard commands: @echo off setlocal set /p "pw=Enter password for...
Thank you very much for your help. Works great. Aristos From: batchworld@yahoogroups.com [mailto:batchworld@yahoogroups.com] On Behalf Of foxidrive Sent:...
Is there any way that i can use bach file which should be included in CD-ROM to copy some files to location of programme files folder in the hard disk? thx...
I'm really new to batch files and only do a few things, such as opening up files. My question is, how do I open up a folder? When I type something like...
Hi, I am avid novice on batch programming which has fascinated me by its simplicity and capability. I've spent days on learning how to programme the following...
Hello All. Wishing everyone a very happy new year. I have a tiny question. Is there a method in batch files to echo something without the newline ? [equivalent...
Parag P. Doke
paragpdoke@...
Jan 2, 2008 11:58 am
7744
On Wed, 2 Jan 2008 17:28:04 +0530, "Parag P. Doke" <paragpdoke@...> ... XP has a command line limit of 8KB but W2k is a 'paltry' 2KB. An example of what...
Hi Mic. Ummm.....I'm not sure if pasting the command or its output would be the right thing to do....so let me share a fake one instead. ... C:\>for /f...
Parag P. Doke
paragpdoke@...
Jan 2, 2008 12:58 pm
7746
... I'm not really sure what you're trying to achieve but the following will produce the equivalent of echo -n set /p "dummyvar=Test string " <nul Garry...
Hello Garry. Yes ! It works for me. I wanted to add a word (or redirect to be precise) to a file. Then on the same line, add output of another command. I tried...
Parag P. Doke
paragpdoke@...
Jan 3, 2008 2:35 pm
7748
Hi i am having doubt in batch file programming ... file name:setup.txt Contains : input = a b c d e output = o ... filename: force.txt contains s1 a gnd (0 5 5...
HI Derek.Byrne i am worked on this issue before 3 months and i had also completed this issue using basic batch file programming (using sed etc...).but it take...
hi friend ... for the 3rd time it takes 'c' from setup.txt and changes s1 c gnd (0 5 5 5 10) s2 a gnd 5 s3 b gnd 5 s4 d gnd 5 s5 e gnd 5 Like this the...
Hi friend Ya There can be more and the iteration depends on the value in the setup.txt file(Input = a b c d e f...). Actually due to this problem only i need...