Search found 1007 matches

by abc0502
29 Oct 2011 00:13
Forum: DOS Batch Forum
Topic: create an executable with a file....
Replies: 1
Views: 2602

Re: create an executable with a file....

what i understood from your post is that there is a batch file and a file. you use the batch file to copy the file to the specific directory if that write why don't u use the sfx option in rar or 7zip to make an exe file that have both files, the sfx file will extract the files to temprary directory...
by abc0502
26 Oct 2011 23:15
Forum: DOS Batch Forum
Topic: for /f has a problem
Replies: 2
Views: 3209

Re: for /f has a problem

I Guess the code should be like that: FOR /F "tokens= delims=" %%a in ('find /i "X" "path\file"') do echo %%a & set p=%%a > change the tokens and the delims according to the file > "X" is the word in the beginning of the line and before the "delims&qu...