IPB

Google Frontpage Forums Unattended CD/DVD Guide
2 Pages V   1 2 >  
Reply to this topicStart new topic
> Bootable Vista DVD, Just a simple bootable Vista DVD
cai_sebas
post Dec 6 2006, 03:17 PM
Post #1


Get Some Tea


Group: Members
Posts: 46
Joined: 4-April 04
Member No.: 17222
Country Flag


A time ago I was searching for an easy way to make an image of my Vista files. You need Windows AIK to do this. A huge set of tools somewhere about 700mb. It seems making your image is quite simple if you know where to begin. So here is your start.

The files attached are batched which automatically creates an image for you, so you won't have to work with the real command.

We recommend you create an UDF Image. The original Vista DVD is UDF format.

UDF

Save it as 'younameit.cmd'. Replace 'YOURVISTADIR' by the location of you own Vista files.
CODE
CLS
@echo off
TITLE Creating UDF Image of Miscrosoft Windows Vista
ECHO.
ECHO You image is now being created. Make sure oscdimg.exe is present.
ECHO.
ECHO Creating your UDF...
oscdimg -bc:\YOURVISTADIR\boot\etfsboot.com -h -u2 -m -lVISTA_EN_DVD C:\YOURVISTADIR\ C:\WVISTAUL_EN_VOL01.iso
ECHO.
PAUSE
EXIT


ISO Making an ISO is also possible. However we recommend UDF.

Save it as 'younameit.cmd'. Replace 'YOURVISTADIR' by the location of you own Vista files.
CODE
CODE
CLS
@echo off
TITLE Creating ISO Image of Miscrosoft Windows Vista
ECHO.
ECHO You image is now being created. Make sure oscdimg.exe is present.
ECHO.
ECHO Creating your ISO...
oscdimg -bc:\YOURVISTADIR\boot\etfsboot.com -h -j1 -j2 -m -o -x-lVISTA_EN_DVD C:\YOURVISTADIR\ C:\WVISTAUL_EN_VOL01.iso
ECHO.
PAUSE
EXIT


There are many other options which can compile an ISO/UDF. If there are better complication I hope to see them! These little batches are just for starters. I am sure pro's can do it without hassle in command.

welcome.gif

This post has been edited by cai_sebas: Dec 8 2006, 05:49 AM
Attached File(s)
Attached File  oscdimg.exe ( 74K ) Number of downloads: 1507
 
Go to the top of the page
 
+Quote Post
FireGeier
post Dec 7 2006, 04:04 AM
Post #2


Advanced Member
***

Group: Members
Posts: 405
Joined: 24-October 05
Member No.: 77605
Country Flag


Once you have all your Vista-DVD-Files in one directory of your HD, copy your AutoUnattend.xml to this directory - directly into this directory, not in any subfolders. Open a command prompt (Start\Run\cmd) and use oscdimg to create an ISO file:

CODE
oscdimg -n –m -bD:\MyVistaDVD\boot\etfsboot.com D:\MyVistaDVD\ D:\Vistax86.iso


Note:
If you're handeling a 64bit Vista-DVD than use efisys.bin instead of etfsboot.com!

You have to replace D:\MyVistaDVD\ with your Path to your Vista-DVD files.

The last part - D:\Vistax86.iso - just attaches a name to the ISO file.

Burn this ISO to a DVD using third party software.

Let it rock...

Martin
Go to the top of the page
 
+Quote Post
cai_sebas
post Dec 7 2006, 04:49 AM
Post #3


Get Some Tea


Group: Members
Posts: 46
Joined: 4-April 04
Member No.: 17222
Country Flag


Thanks FireGeier,

Working on it now, I get an error

CODE
ERROR: Could not delete existing file "D:\Projects\Unattended\Vista\WVISTAUL_EN_VOL01\" Error 5


Still working on it!
Go to the top of the page
 
+Quote Post
FireGeier
post Dec 7 2006, 07:41 AM
Post #4


Advanced Member
***

Group: Members
Posts: 405
Joined: 24-October 05
Member No.: 77605
Country Flag


Are you doing all this under Vista? If so, have you shared your Vista-DVD folder?

Martin
Go to the top of the page
 
+Quote Post
cai_sebas
post Dec 7 2006, 10:25 AM
Post #5


Get Some Tea


Group: Members
Posts: 46
Joined: 4-April 04
Member No.: 17222
Country Flag


No just under XP. I am gonna try a few things atm. I let you guys know!
Go to the top of the page
 
+Quote Post
neo
post Dec 7 2006, 10:57 AM
Post #6


Microsoft® MVP
******

Group: Members
Posts: 1308
Joined: 31-March 06
From: India
Member No.: 92414
OS: Vista Ultimate x86
Country Flag


QUOTE
oscdimg -n –m -bD:\MyVistaDVD\boot\etfsboot.com D:\MyVistaDVD\ D:\Vistax86.iso


add -u -u1 -u2 option to make UDF filesystem

oscdimg -n –m -u -u1 -u2 -bD:\boot.img D:\MyVistaDVD\ D:\Vistax86.iso

extract boot.img using ISO buster

This post has been edited by neo_matrix.rs: Dec 7 2006, 10:57 AM
Go to the top of the page
 
+Quote Post
cai_sebas
post Dec 7 2006, 03:13 PM
Post #7


Get Some Tea


Group: Members
Posts: 46
Joined: 4-April 04
Member No.: 17222
Country Flag


After some struggeling I finally got the right code. Down here there is a simpel command/batch code whick makes your Vista ISO.

Make sure you use the right paths. And have the file oscdimg.exe present in the same folder as the batch. Oscdimg.exe can be found in Windows AIK, PE Tools.

Save it as createiso.cmd (name doesn't matter just the extension .cmd)

CODE
CLS
@echo off
TITLE Creating ISO Image of Miscrosoft Windows Vista
ECHO.
ECHO You image is now being created. Make sure oscdimg.exe is present.
ECHO.
ECHO Creating your ISO...
oscdimg -bd:\Projects\Unattended\Vista\WVISTAUL_EN_VOL01\boot\etfsboot.com -h -j1 -j2 -m -o -x-lVISTA_EN_DVD D:\Projects\Unattended\Vista\WVISTAUL_EN_VOL01\ C:\WVISTAUL_EN_VOL01.iso
ECHO.
PAUSE
EXIT


Works like a charm

Edit: Added oscdimg.exe and fixed the code, which now works properly

This post has been edited by cai_sebas: Dec 8 2006, 05:05 AM
Attached File(s)
Attached File  oscdimg.exe ( 74K ) Number of downloads: 2171
 
Go to the top of the page
 
+Quote Post
neo
post Dec 8 2006, 01:23 AM
Post #8


Microsoft® MVP
******

Group: Members
Posts: 1308
Joined: 31-March 06
From: India
Member No.: 92414
OS: Vista Ultimate x86
Country Flag


why are u not using -u -u1 -u2 options?
Go to the top of the page
 
+Quote Post
sangwooksohn
post Dec 8 2006, 04:20 AM
Post #9


Newbie


Group: Members
Posts: 39
Joined: 4-July 04
Member No.: 23980



cdimage.exe -lLRMCXFRE_EN_DVD -t11/02/2006,20:00:00 -g -h -u2 -ur"C:\ISO\README.TXT" -b"C:\ISO\VISTA_BOOT.bin" -o -m "C:\ISO\VISTA" "C:\ISO\LRMCxFRE_EN_DVD.iso"

This post has been edited by sangwooksohn: Dec 8 2006, 04:20 AM
Go to the top of the page
 
+Quote Post
cai_sebas
post Dec 8 2006, 04:50 AM
Post #10


Get Some Tea


Group: Members
Posts: 46
Joined: 4-April 04
Member No.: 17222
Country Flag


The -u -u1 -u2 options didn't worked for me. I am gonna retry those now. The original Vista image is also UDF so I guess that is the best option.
Go to the top of the page
 
+Quote Post
cai_sebas
post Dec 8 2006, 05:08 AM
Post #11


Get Some Tea


Group: Members
Posts: 46
Joined: 4-April 04
Member No.: 17222
Country Flag


To create you UDF Image. Save it as createudf.cmd (name doesn't matter just the extension .cmd)

CODE
CLS
@echo off
TITLE Creating UDF Image of Miscrosoft Windows Vista
ECHO.
ECHO You image is now being created. Make sure oscdimg.exe is present.
ECHO.
ECHO Creating your UDF...
oscdimg -bd:\Projects\Unattended\Vista\WVISTAUL_EN_VOL01\boot\etfsboot.com -h -u2 -m -lVISTA_EN_DVD D:\Projects\Unattended\Vista\WVISTAUL_EN_VOL01\ C:\WVISTAUL_EN_VOL01.iso
ECHO.
PAUSE
EXIT


This post has been edited by cai_sebas: Dec 8 2006, 05:09 AM
Go to the top of the page
 
+Quote Post
MAVERICKS CHOICE
post Dec 29 2006, 05:35 PM
Post #12


The Guy from Aus
*******

Group: Members
Posts: 1545
Joined: 14-November 03
From: DownUnder
Member No.: 9474
Country Flag


QUOTE (cai_sebas @ Dec 8 2006, 08:13 AM) *
After some struggeling I finally got the right code. Down here there is a simpel command/batch code whick makes your Vista ISO.

Make sure you use the right paths. And have the file oscdimg.exe present in the same folder as the batch. Oscdimg.exe can be found in Windows AIK, PE Tools.

Save it as createiso.cmd (name doesn't matter just the extension .cmd)

CODE
CLS
@echo off
TITLE Creating ISO Image of Miscrosoft Windows Vista
ECHO.
ECHO You image is now being created. Make sure oscdimg.exe is present.
ECHO.
ECHO Creating your ISO...
oscdimg -bd:\Projects\Unattended\Vista\WVISTAUL_EN_VOL01\boot\etfsboot.com -h -j1 -j2 -m -o -x-lVISTA_EN_DVD D:\Projects\Unattended\Vista\WVISTAUL_EN_VOL01\ C:\WVISTAUL_EN_VOL01.iso
ECHO.
PAUSE
EXIT


Works like a charm

Edit: Added oscdimg.exe and fixed the code, which now works properly



Yes thats working great just popped the oscdimg.exe into sytsem32 in xp
Made image 100% Boots straight up from the dvd. Just having trouble Vista recognising the the ans file, retracing all steps now.
Go to the top of the page
 
+Quote Post
MAVERICKS CHOICE
post Dec 29 2006, 09:21 PM
Post #13


The Guy from Aus
*******

Group: Members
Posts: 1545
Joined: 14-November 03
From: DownUnder
Member No.: 9474
Country Flag


QUOTE (FireGeier @ Dec 7 2006, 09:04 PM) *
Once you have all your Vista-DVD-Files in one directory of your HD, copy your AutoUnattend.xml to this directory - directly into this directory, not in any subfolders. Open a command prompt (Start\Run\cmd) and use oscdimg to create an ISO file:

CODE
oscdimg -n –m -bD:\MyVistaDVD\boot\etfsboot.com D:\MyVistaDVD\ D:\Vistax86.iso


Note:
If you're handeling a 64bit Vista-DVD than use efisys.bin instead of etfsboot.com!

You have to replace D:\MyVistaDVD\ with your Path to your Vista-DVD files.

The last part - D:\Vistax86.iso - just attaches a name to the ISO file.

Burn this ISO to a DVD using third party software.

Let it rock...

Martin


Now to be clear the Autounattend.xml file which normally resided in the Sources Dir. needs now to be placed in the root of the bootable dvd?
Just tried when in Sources Dir. not reading the file & not unattending.
Attached File(s)
Attached File  xml_shot.jpg ( 15.15K ) Number of downloads: 82
 
Go to the top of the page
 
+Quote Post
cai_sebas
post Dec 30 2006, 04:57 AM
Post #14


Get Some Tea


Group: Members
Posts: 46
Joined: 4-April 04
Member No.: 17222
Country Flag


Autounattend.xml needs to be present in the Root smile.gif
Go to the top of the page
 
+Quote Post
maxXPsoft
post Dec 30 2006, 09:36 AM
Post #15


MSFN Addict
*******

Group: Members
Posts: 1510
Joined: 14-November 03
From: Texas
Member No.: 9484
OS: XP Pro x86
Country Flag


QUOTE
Autounattend.xml needs to be present in the Root
Not necessarily

Works off root of floppy/usb stick. Can change it that way if error occurs
Works in Sources for me with the $oem$ present and the <UseConfigurationSet>true</UseConfigurationSet>
Don't know if it's because I also use some <OEMInformation> stuff

This post has been edited by maxXPsoft: Dec 30 2006, 09:38 AM
Go to the top of the page
 
+Quote Post
FireGeier
post Dec 31 2006, 06:26 AM
Post #16


Advanced Member
***

Group: Members
Posts: 405
Joined: 24-October 05
Member No.: 77605
Country Flag


QUOTE (maxXPsoft @ Dec 30 2006, 04:36 PM) *
QUOTE
Autounattend.xml needs to be present in the Root
Not necessarily

Works off root of floppy/usb stick. Can change it that way if error occurs
Works in Sources for me with the $oem$ present and the <UseConfigurationSet>true</UseConfigurationSet>
Don't know if it's because I also use some <OEMInformation> stuff


There is a special search order Vista Setup follows when looking for an Unattend.xml/AutoUnattend.xml file. Look into WAIK-Help use search and type Methods for Running Windows Setup. There you'll find some more information about. At least there are seven locatinons, you could store you're xml file.


Hope that'll clear it up!

Martin

This post has been edited by FireGeier: Dec 31 2006, 06:29 AM
Go to the top of the page
 
+Quote Post
Spooky
post Jan 8 2007, 08:25 AM
Post #17


Friend of MSFN
*****

Group: Members
Posts: 730
Joined: 12-November 03
Member No.: 9394



An interesting thing here, while the file can be in the root of the DVD and several places for that matter, if it is in the root of the DVD and you have a floppy with another file on it the Vista install will choose the one on the floppy and apply it without applying the one in the root of the DVD. I think this is because the floppy is one of the first places the install looks at and it just grabs the first file it finds and uses that.

I have mine in the DVD root so its where ever the DVD goes, but i've discovered that if I want to make some changes that I can do another file and put it on a floppy and the file on the floppy will be used instead of the one in the root of the DVD. I didn't realize this until a few days ago when I left a floppy in the drive during an install, and since it was un-attended I didn't stick around to watch the install. I discovered after install completion the settings in the file at the DVD root were not applied but instead a completly different set up was applied - drove me nuts for two days trying to figure it out then I noticed the floppy in the drive, I looked at the file on the floppy and saw the settings that were actually applied during the install.
Go to the top of the page
 
+Quote Post