Search found 4 matches

by jtan2000
30 Jul 2012 08:31
Forum: DOS Batch Forum
Topic: need some help on batchfile (windows 98 pure dos)
Replies: 9
Views: 5538

Re: need some help on batchfile (windows 98 pure dos)

First of all thank you so much abc0502 for writing the batch code and foxidrive for your input. What I am doing is attempting to autoghost back. My norton ghost image is win71.gho, win72.gho, win73.gho etc. The batchfile is supposted to look for all drives and subfolders to find the latest ghost ima...
by jtan2000
30 Jul 2012 05:23
Forum: DOS Batch Forum
Topic: need some help on batchfile (windows 98 pure dos)
Replies: 9
Views: 5538

Re: need some help on batchfile (windows 98 pure dos)

Hi, this is a floppy image. I use grub4dos to load that floppy image.
by jtan2000
29 Jul 2012 15:53
Forum: DOS Batch Forum
Topic: need some help on batchfile (windows 98 pure dos)
Replies: 9
Views: 5538

Re: need some help on batchfile (windows 98 pure dos)

Hi again, how can i modify code to search through all root directory to find *.gho ?

Thank you.

========================================


set %ghofile= [ Cannot locate ghost file ]

FOR /R %%l IN (*.gho) do set ghofile=%%l


@echo off
echo ghost file = %ghofile%


pause
by jtan2000
29 Jul 2012 15:49
Forum: DOS Batch Forum
Topic: need some help on batchfile (windows 98 pure dos)
Replies: 9
Views: 5538

need some help on batchfile (windows 98 pure dos)

Hi I have this batch running on pure dos. However it is not able to search to all directory and subfolder. I do not know how to program it to seach recursively to find *.gho. Greatly appreciate if someone can help me on the code. Thank you. set drive= if exist E:\*.gho set drive=E: if exist F:\*.gho...