unattended vista
#41
Posted 20 June 2006 - 07:59 AM
the WAIK is not downloadable to the public yet, it has been absorbed into the new Business Desktop Deployment App (BDD 3.0) this has gone beta to select MS partners and beta testers, it should be avialable more wide spread soon (can't give you a date cause i have no idea) to do an unattended vista installion though you don't need the WAIK, you can still do it the good old fashioned way, just finished a Unattended install DVD, i will note what you need to do later today to create an unattended install of Vista 5384
#42
Posted 20 June 2006 - 11:04 AM
#43
Posted 20 June 2006 - 11:06 AM
#44
Posted 20 June 2006 - 12:16 PM
fizban2, on Jun 20 2006, 08:59 AM, said:
the WAIK is not downloadable to the public yet, it has been absorbed into the new Business Desktop Deployment App (BDD 3.0) this has gone beta to select MS partners and beta testers, it should be avialable more wide spread soon (can't give you a date cause i have no idea) to do an unattended vista installion though you don't need the WAIK, you can still do it the good old fashioned way, just finished a Unattended install DVD, i will note what you need to do later today to create an unattended install of Vista 5384
I await your guide!
And for those who want more info on BDD Vista, check out
http://www.microsoft.com/technet/windowsvi...oy/bddguid.mspx
#45
Posted 20 June 2006 - 09:19 PM
fizban2, on Jun 20 2006, 09:59 PM, said:
Awesome. Thanks fizban2. Although you call it as old fashioned way, it is not the winnt.sif way, right? All I know is that it is something to do with unattended.xml and I am not sure where to put it because there is no I386 folder anymore. Really looking forward to your guide.
This post has been edited by McoreD: 20 June 2006 - 09:19 PM
#46
Posted 21 June 2006 - 04:03 AM
fizban2, on Jun 20 2006, 05:06 PM, said:
@McoreD The unattend.xml (not unattended.xml) goes in %VISTA%:\Docs. You know it's the right one cos there are two other xml files. They're templates.
This post has been edited by T D: 21 June 2006 - 04:05 AM
#47
Posted 21 June 2006 - 12:37 PM
The WAIK is not yet ready for mass consumer downloads... gonna check when it will be made publicly available.
#48
Posted 21 June 2006 - 03:55 PM
Quote
look tommorow for a short guide on doing an unattended Vista Disk
@McoreD
The old way is by writing out the XML by hand, vista will only accept XML unattend files. they have broken down the all the old inf files and they all can be expressed in on XML through a series of Passes. More tommorow
This post has been edited by fizban2: 21 June 2006 - 03:57 PM
#49
Posted 21 June 2006 - 11:32 PM
McoreD, on Jun 20 2006, 04:13 AM, said:
laser21, on Jun 15 2006, 11:48 PM, said:
http://www.microsoft.com/downloads/details...;displaylang=en
Got the User guide.
Looking for what ddebacker mentioned.
ddebacker, on Jun 10 2006, 06:08 AM, said:
If I remember well it's a 900 MB download...
Thanks,
McoreD
good day
i hope you can to write guide for us
i need it for my work to Deployment for Windows Vista
and guide us from the beginning how to create image from the vista dvd 5384 and if need any additional software
thanks
eli
This post has been edited by elit: 22 June 2006 - 12:31 AM
#50
Posted 22 June 2006 - 06:39 AM
#51
Posted 22 June 2006 - 10:07 AM
You can now download it from
http://connect.microsoft.com
Sign in and download the BDD kit (924 MB download) to get everything you need to test (including the WDS aka Windows Deployment Services formerly named ADS).
You'll find the BDD under 'Available Connections' on the left menu.
Check for the following Program:
"Business Desktop Deployment 2007 (Beta) for Windows Vista and the 2007 Microsoft Office system"
Have fun
#52
Posted 22 June 2006 - 11:35 AM
ddebacker, on Jun 22 2006, 10:07 AM, said:
You can now download it from
http://connect.microsoft.com
Sign in and download the BDD kit (924 MB download) to get everything you need to test (including the WDS aka Windows Deployment Services formerly named ADS).
You'll find the BDD under 'Available Connections' on the left menu.
Check for the following Program:
"Business Desktop Deployment 2007 (Beta) for Windows Vista and the 2007 Microsoft Office system"
Have fun
many thanks i start to download and then tested
eli
#53
Posted 22 June 2006 - 01:29 PM
sorry about the not posting thing here we go
Unattend Vista
Things you will Need
Vista Beta 2 DVD
software to recreate the image (i will use OSCDimg)
Blank DVD or Virtual PC to test ISO in
Notepad or Text Editor
1.First we are going to need to extract all the folders off of you Vista DVD, create a folder on your computer and extract all files and folders there.
2. Once everything is extracted navigate into <folder>\docs. Here there will be two sample unattended.xml files. we want to work with the unattend_sample.xml file
3. open the xml file with your text editor, we will see all the entries that you can use, you will have to sort through them and see what is needed for your situation ( i will go over a few that are needed for the Unattended)
4. this unattend file gives you alot of the options that are avialable for you do to with the unattended install for those who just want a unattended install and nothing more all you will need it this
<?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DiskConfiguration> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> <Display> <ColorDepth>32</ColorDepth> <HorizontalResolution>1024</HorizontalResolution> <RefreshRate>60</RefreshRate> <VerticalResolution>768</VerticalResolution> </Display> <DynamicUpdate> <Enable>true</Enable> </DynamicUpdate> <ImageInstall> <OSImage> <InstallFrom> <Path>x:\source\install.wim</Path> </InstallFrom> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> </OSImage> </ImageInstall> <UserData> <ProductKey> <Key>ProductKey</Key> <WillShowUI>OnError</WillShowUI> </ProductKey> <AcceptEula>true</AcceptEula> <FullName>InsertName</FullName> <Organization>InsertOrg</Organization> </UserData> </component> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>en-US</UILanguage> </SetupUILanguage> <InputLocale>en-US</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UILanguageFallback>en-US</UILanguageFallback> <UserLocale>en-US</UserLocale> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Identification> <JoinWorkgroup>Workgroup</JoinWorkgroup> </Identification> </component> <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <InputLocale>en-US</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UILanguageFallback>en-US</UILanguageFallback> <UserLocale>en-US</UserLocale> </component> </settings> </unattend>
things like Disc ID and Partition may have to change but if you only have 1 disk and are going to install it to the first partition, then it is already setup for you. in the installto section. For <Name> <Key> <Organization> you can change those values to what ever you want. For the installto location you can substitute the partition and disk entries for the following
<InstallToAvailablePartition>true</InstallToAvailablePartition>
This will install Vista to what ever partition is available
5. Once you have edited the file the way you want you need to, save the file as Autounattend.xml. Save this file to the root of the folder with all your vista files so that it sits with the setup.exe
6. Now we have to rebuild our DVD, I will use OSCDimg
Here is the command to use to rebuild the DVD
oscdimg -n –bc:<Vistafolder>\boot\etfsboot.com c:\<VistaFolder> c:\WindowsVista.iso
The first part -b is to make the CD bootable, the etfs file is located in the boot folder in the vista files you copied to your machine, the second folder is the folder that contains all the Vista files you copied from your DVD, the third is the location for the ISO to be placed
7. Burn ISO with your favorite DVD burning software then test, testing is a virtual Machine first would be suggested so that you don't go through DVD perfecting this.
8. Enjoy an Unattended Vista install
Leave feedback if you have any issues with this
One issue i have noticed is in a Virtual PC or Server 2005 the install will miss the WIM at teh X: location, on a actual CD this work though as PE takes X as its CD rom
This post has been edited by fizban2: 22 June 2006 - 01:37 PM
#54
Posted 22 June 2006 - 08:19 PM
Most important things I learnt was it has to be in root dirand has to be named autounattended.xml
The method is pretty straigh forward and I like it. One mod I had to do was getting rid of "<?xml version="1.0" encoding="utf-8"?>" otherwise xml will not parse.
I am trying my best to get it working in VMware. Like you said, it doesn't seem to like loading Vista DVD from ISO image and it continuously gives this error:

for everything I have tried:
1. mounted ISO directly in VMware
2. mounted ISO in Real PC and told VMware to use that as a CDROM
with
1. <Path>G:\sources\install.wim</Path> (VMware CDROM drive letter in my case is G:)
2. <Path>X:\sources\install.wim</Path>
Thats's four combinations of tests and all fail to load in VMware.
I have faith that this will work in a Real PC but trying everything to load properly in VMware first.
Interesting project.
Cheers,
McoreD
This post has been edited by McoreD: 22 June 2006 - 08:20 PM
#55
Posted 23 June 2006 - 03:30 AM
@mcored Try virtual pc because some ppl (like me) find that windows setup says that there is no hard drive (Vmware only). But it works on virtual pc and bochs.
This post has been edited by T D: 23 June 2006 - 03:34 AM
#56
Posted 23 June 2006 - 07:27 AM
i would still recommend getting the BDD 2007, it has the new Setup Manager that also for easier Manipulation of the unattend file. There are several dozen if not hundred other options that i did not include in this basic unattend file.
McoreD,
you got an error with the first line? that is odd... but any case i am getting the same error in VS 2005 or Virtual PC about the Missing wim image, but when i built and actually burned my DVD it worked fine... still trying to figure out why it is happening. My bet is the X drive isn't assigned in WinPE like it noormally is defaulty when you boot into it
#57
Posted 27 June 2006 - 08:45 AM
I looked at it yesterday and it was indeed nice to integrate drivers. The integration of applications (which install from harddisk in the distribution folder - seems nice too) but how to integrate from the install drive, not a unc path or something like this. Any hint for that ?
Greetz
#58
Posted 27 June 2006 - 11:25 AM
[LaunchApp] AppPath = %SYSTEMDRIVE%\windows\system32\cmd.exe [LaunchApps] "%SYSTEMDRIVE%\Program Files\imageX\ImageX.exe",
the file above is a very simple ini file, to kick of the command prompt after winpe starts and start imagex from here you could start the install of programs and such i will try and write up something more detailed a little later on this
#59
Posted 27 June 2006 - 06:33 PM
#60
Posted 28 June 2006 - 12:53 PM



Help

Back to top









