Hello. My problem is the following: i followed all the steps from the ppt included in ss.zip. Got to the part where i need to copy image.vhd back to c:
I put the image.vhd on my d: partition, now i need to robocopy it back to c:
the command i input is: robocopy d:\imagefiles c:image.vhd /mt:30 (as explained in the ppt, i used 30 when creating the image.vhd)
i get an error saying that source does not exist. i tried entering my d: drive, and it's empty.
ps: tried every combination of the robocopy command such as: robocopy d:\imagefiles c:\image.vhd /mt:30 robocopy c:\imagefiles d:\image.vhd /mt:30 robocopy c:\imagefiles d:image.vhd /mt:30 robocopy d:\ c:\ /MIR ...
nothing worked. I'm putting a fresh copy of win7 enterprise now for the third time, gonna try it again.
ps: do i have to use an external hard drive when doing the cvt2vhd part, is that the problem perhaps?
Check to see if you are missing a "\" backslash in the script.
Posted above you used the following, "robocopy c:\imagefiles d:image.vhd /mt:30" and it looks as if you are missing a backslash after the "d:".
I think it should be, "robocopy c:\imagefiles d:\image.vhd /mt:30".
Chris
"It takes a big man to cry, but it takes a bigger man to laugh at that man." Jack Handy quotes (American Writer and cast member of Saturday Night Live from 1991-2003. Famous for his Deep Thoughts comedy sketches.)
yeah I know the backslash was missing, I tried it with the backslash, still didn't work. It's like my partitions get deleted and robocopy doesn't know from where to copy. Is there a command in that part of the process that shows my hard drive partitions and their lettering?
Been trying for 4 days now to do the robocopy, and i always get the "can't find source" message.
At that point i can enter c: and see with dir what i have on it, but i can't enter d: where my image.vhd is. That is my problem, what happened to d: ?
From the WinPE command prompt, just do DIR C:\, DIR D:\ etc to figure out which drive your files are on. Then use those drive letters in the robocopy command.
Or you're welcome to use XCOPY if you're more comfortable with that.