June 10, 200422 yr I'm trying to make a XP Pro slipstream disc and then an Unattended install disk. What I want to do is create an ISO from the files on my HDD without creating a disc. Then I plan on running the ISO on VMWare to test it out before doing the final burn.While at work today thinking about this, I thought of exacting WinXP off the disc as an ISO and then using WInImage to add and move files to it. Will this work? And is there an easier way to do what I want with another app?Any help with this would be great.Tools I have:Nero 6.3.1.15ISOBusterWinImage
June 10, 200422 yr I got tired of doing that by hand, so now I just right click, and select either MakeDataISO or MakeBootISO. The code below assumes CDIMAGE.EXE in the path (e.g. System32), the boot image, BOOT.BIN, in the C drive at the root, and the output is E:\DATA.ISO. You may also want to adjust the switches.... of course, what good is an ISO with a a way to burn it, thus the last two reg entries add "Burn To K:" to the right click of WinImageISO files (my ISO file type). Again, you can adjust the switches to make it work for you. You will need CDBURN.EXE in the path.Now I know, that this is probably not what Dominix was looking for, but I've found it usefull ...Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\Folder\shell\MakeBootISO\command]@="CDIMAGE.EXE -LDATACD -YD -N -H -X -BC:\\BOOT.BIN -OCI -M -D \"%1\" E:\\DATA.ISO"[HKEY_CLASSES_ROOT\Folder\shell\MakeDataISO\command]@="CDIMAGE.EXE -LDATACD -YD -N -H -X -OCI -M -D \"%1\" E:\\DATA.ISO"[HKEY_CLASSES_ROOT\WinImageIso\shell\BurnToK:]@="Burn To K:"[HKEY_CLASSES_ROOT\WinImageIso\shell\BurnToK:\command]@="CDBURN.EXE K: \"%1\" -SPEED 24"
June 10, 200422 yr Author Thanks guys. I've downloaded the files and I'll give it a try when I get home tonight.
June 10, 200422 yr Important Note: Of course, doing someting so silly on XPCREATE files would be frownd upon, totally unsupported and unnecessary ... I only use it when creating DOS CDs ...
June 11, 200422 yr @GreenMachine1.dont you need the ISO Creator for WinXP Pro.cmd anymore?2.can you explain the switches you use!3.can it be use'd with nero? if yes howi like to try this out myself your right click and MakeDataISO or MakeBootISO
June 11, 200422 yr @sixpack:1) Correct2) CDIMAGE /? will get you the switch info. Best off copying the switches from the Unattended Guide: to use mine requires 8.3 UPPERCASE.3) Use Nero as before, however that was ... I just use CDBURN command line.No time for more detail ...
June 13, 200422 yr Author Thanks, that was exactly what I needed. If I had finished reading the Unattended guide I'ld have seen that.
June 13, 200422 yr You just need to go here:http://unattended.msfn.org/xp/gettingstarted.htmand download CDImage for Windows XP Professional Edition or Home Edition from the links on that page.read the readme (change path to u're path in the batch file and then u just dbl-click on batch and u're on u're way...
June 14, 200422 yr I have used the one for Win XP Pro and modified it for Win 2k...seems it works for me.CLS@echo offTITLE Creating ISO Image of Windows 2K ProfessionalECHO.ECHO Removing any possible attributes set on D:\unattended\ZRMPFPP_DE and its subfolders...attrib -R -H D:\unattended\ZRMPFPP_DE /S /DECHO. ECHO Creating ISO...CDIMAGE.EXE -lWXPFPP_EN -t12/31/2002,12:00:00 -h -j1 -m -bboot.img D:\unattended\ZRMPFPP_DE D:\2kunattend.ISOECHO.PAUSEEXIT
Create an account or sign in to comment