startnet.cmd

M

Mario Savard

HI, I trying to automate the instllation of vista from a DV-ROM. But I need
to run to seperate command in the startnet.cmd. The first one is the
diskpart command which runs'ok. But my second batch files taht copy the WIM
file from the CD to the c:\ once the diskpart is completed is been ignored.
Can you help.

IN resume I need to run to different batch files from the startnet.cmd
sample of my startnet.cmd

wpeinit
clean_all.bat
copy.bat
 
D

Dave R.

Mario Savard said:
HI, I trying to automate the instllation of vista from a DV-ROM. But
I need
to run to seperate command in the startnet.cmd. The first one is the
diskpart command which runs'ok. But my second batch files taht copy
the WIM
file from the CD to the c:\ once the diskpart is completed is been
ignored.
Can you help.

IN resume I need to run to different batch files from the
startnet.cmd
sample of my startnet.cmd

wpeinit
clean_all.bat
copy.bat

For a batch or CMD file to run another batch or CMD file and then
continue with the rest of the file, you need to call it, like so:

wpeinit
call clean_all.bat
call copy.bat

Hope this helps.

Regards,

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top