MSFN Forum: Bootable Vista DVD - MSFN Forum

Jump to content


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

Bootable Vista DVD Just a simple bootable Vista DVD Rate Topic: -----

#1 User is offline   cai_sebas 

  • Get Some Tea
  • Group: Members
  • Posts: 46
  • Joined: 04-April 04

Posted 06 December 2006 - 03:17 PM

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.
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
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.

:hello:

Attached File(s)


This post has been edited by cai_sebas: 08 December 2006 - 05:49 AM



#2 User is offline   FireGeier 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 405
  • Joined: 24-October 05

Posted 07 December 2006 - 04:04 AM

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:

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

#3 User is offline   cai_sebas 

  • Get Some Tea
  • Group: Members
  • Posts: 46
  • Joined: 04-April 04

Posted 07 December 2006 - 04:49 AM

Thanks FireGeier,

Working on it now, I get an error

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


Still working on it!

#4 User is offline   FireGeier 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 405
  • Joined: 24-October 05

Posted 07 December 2006 - 07:41 AM

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

Martin

#5 User is offline   cai_sebas 

  • Get Some Tea
  • Group: Members
  • Posts: 46
  • Joined: 04-April 04

Posted 07 December 2006 - 10:25 AM

No just under XP. I am gonna try a few things atm. I let you guys know!

#6 User is offline   neo 

  • Microsoft MVP - Windows Expert Consumer
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,251
  • Joined: 31-March 06
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 07 December 2006 - 10:57 AM

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: 07 December 2006 - 10:57 AM


#7 User is offline   cai_sebas 

  • Get Some Tea
  • Group: Members
  • Posts: 46
  • Joined: 04-April 04

Posted 07 December 2006 - 03:13 PM

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)

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

Attached File(s)


This post has been edited by cai_sebas: 08 December 2006 - 05:05 AM


#8 User is offline   neo 

  • Microsoft MVP - Windows Expert Consumer
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,251
  • Joined: 31-March 06
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 08 December 2006 - 01:23 AM

why are u not using -u -u1 -u2 options?

#9 User is offline   sangwooksohn 

  • Newbie
  • Group: Members
  • Posts: 41
  • Joined: 04-July 04

Posted 08 December 2006 - 04:20 AM

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: 08 December 2006 - 04:20 AM


#10 User is offline   cai_sebas 

  • Get Some Tea
  • Group: Members
  • Posts: 46
  • Joined: 04-April 04

Posted 08 December 2006 - 04:50 AM

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.

#11 User is offline   cai_sebas 

  • Get Some Tea
  • Group: Members
  • Posts: 46
  • Joined: 04-April 04

Posted 08 December 2006 - 05:08 AM

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

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: 08 December 2006 - 05:09 AM


#12 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,693
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 29 December 2006 - 05:35 PM

View Postcai_sebas, on Dec 8 2006, 08:13 AM, said:

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)

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.

#13 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,693
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 29 December 2006 - 09:21 PM

View PostFireGeier, on Dec 7 2006, 09:04 PM, said:

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:

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.

#14 User is offline   cai_sebas 

  • Get Some Tea
  • Group: Members
  • Posts: 46
  • Joined: 04-April 04

Posted 30 December 2006 - 04:57 AM

Autounattend.xml needs to be present in the Root :)

#15 User is offline   maxXPsoft 

  • MSFN Master
  • Group: Developers
  • Posts: 2,747
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 30 December 2006 - 09:36 AM

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: 30 December 2006 - 09:38 AM


#16 User is offline   FireGeier 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 405
  • Joined: 24-October 05

Posted 31 December 2006 - 06:26 AM

View PostmaxXPsoft, on Dec 30 2006, 04:36 PM, said:

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: 31 December 2006 - 06:29 AM


#17 User is offline   Spooky 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 718
  • Joined: 12-November 03

Posted 08 January 2007 - 08:25 AM

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.

#18 User is offline   Vargas 

  • Group: Members
  • Posts: 1
  • Joined: 07-March 07

Posted 07 March 2007 - 11:30 AM

View Postcai_sebas, on Dec 7 2006, 03:13 PM, said:

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)

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


cai, i did it exactly as you did, but i still get this error 5 (and sometimes error 123). I'm doing it under xp. What i'm doing wrong: Nothing seems to help... Is it possible that oscdimg.exe is damaged? Please give me some hints. Thanks!

Clemens Vargas, Oldenburg, Germany

#19 User is offline   c0ldfyr3 

  • Group: Members
  • Posts: 1
  • Joined: 16-March 07

Posted 17 March 2007 - 08:59 AM

View PostVargas, on Mar 7 2007, 10:30 AM, said:

cai, i did it exactly as you did, but i still get this error 5 (and sometimes error 123). I'm doing it under xp. What i'm doing wrong: Nothing seems to help... Is it possible that oscdimg.exe is damaged? Please give me some hints. Thanks!

Clemens Vargas, Oldenburg, Germany



Have you tried to "Run As Administrator" ?
thats what i had to do in order to bypass error 5.
the DVD now boots which is farther then i have ever gotten, however i get an error into booting that says Windows PE cant find setup.exe its looking in X:\windows~BT\Windows however the file resides in X:\...

This post has been edited by c0ldfyr3: 17 March 2007 - 09:08 AM


#20 User is offline   jobbie 

  • Junior
  • Pip
  • Group: Members
  • Posts: 64
  • Joined: 28-September 04

  Posted 05 December 2007 - 09:14 AM

View PostFireGeier, on Dec 7 2006, 04:04 AM, said:

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:

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


can't find the file efisys.bin

I tried to make a vista dvd of a 64bits version but the file you told is not on the dvd

Thx anyway

Share this topic:


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy