
grabben
MemberContent Type
Profiles
Forums
Events
Everything posted by grabben
-
What folders can safetly deleted from WIndows 7 DVD
grabben replied to shon3i's topic in Unattended Windows 7/Server 2008R2
What? Really? Hm so DVD\ *Boot\ *EFI\ Sources\*.clg *Install.wim *Boot.wim *Setup.exe should be kept but everything else can be deleted? -
What folders can safetly deleted from WIndows 7 DVD
grabben replied to shon3i's topic in Unattended Windows 7/Server 2008R2
Deleting what from sources folder? Everything? clg files? -
Custom Vista Install DVD With Latest Updates
grabben replied to Pixels's topic in Unattended Windows Vista/Server 2008
Swsetup folder contains necessary driver and HP software. You should keep it. Extract all your drivers using a software Use windowsupdatesdownloader to download windows updates for vista Use vLite to customize it Create ISO / Burn to dvd -
Add Vista & 7 support to [How To] Multi-boot DVD Guide
grabben replied to andregcasal's topic in Multi-Boot CD/DVDs
Uhm it says he will do it when hes done making an online calculator so whats the problem? -
stefanRTR's Win Integrator
grabben replied to stefanRTR's topic in Unattended Windows 7/Server 2008R2
How about reading? Its been dead for awhile -
RT Seven Lite - RC build 1.7.0 and Beta build 2.6.0
grabben replied to bensam56's topic in Unattended Windows 7/Server 2008R2
Ofcourse the bugs are significant. and important to fix asap. Especially the driver bug. Well hope its fixed soon:) -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
The link is now fixed! coucou: Try edit the unattended file i posted. Just add another <createpartition> or copy/modify one existing. -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
40 gb in VM that was it. You have to create the small then this will work.Currently installing with a 10000 recovery partition which will be big enough to expand the boot.wim there and add a custom install.wim.Now to work out all that stuff.A small systempartition? Hm Ill try it next time I will reinstall Windows. Thanks for your help!.I found a working unattended at technet website which had 3 partitions (recovery, system, windows).Here it is: MS Technet TypeID -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
found thisSet CreatePartition\Type to Primary, and then set TypeID to 0x27Don't think you set a drive letterwill try when I get a chance but messing with integrate sp1 RC right nowI have Dell utility that does this but it was too small at 4gb but my dell recovery was 10Gb untill I accidentally lost itThanks maxXPsoft.Well i set 0x27 I just hope i wrote a zero and not "o" Edit: Hm now i got one working! Creating three partitions etc.. <?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> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <!-- Recovery partition --> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>Primary</Type> <Size>1200</Size> </CreatePartition> <!-- System partition --> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> <Size>300</Size> </CreatePartition> <!-- Windows partition --> <CreatePartition wcm:action="add"> <Order>3</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <!-- Recovery partition --> <ModifyPartition wcm:action="add"> <Order>1</Order> <PartitionID>1</PartitionID> <Label>Recovery</Label> <Format>NTFS</Format> <TypeID>0x27</TypeID> </ModifyPartition> <!-- System partition --> <ModifyPartition wcm:action="add"> <Order>2</Order> <PartitionID>2</PartitionID> <Label>System</Label> <Format>NTFS</Format> <Active>true</Active> </ModifyPartition> <!-- Windows partition --> <ModifyPartition wcm:action="add"> <Order>3</Order> <PartitionID>3</PartitionID> <Label>Windows</Label> <Letter>C</Letter> <Format>NTFS</Format> </ModifyPartition> </ModifyPartitions> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration><ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>3</PartitionID> </InstallTo> </OSImage></ImageInstall> </component> </settings> <cpi:offlineImage cpi:source="catalog:d:/7integrator/dvd/sources/install_windows 7 Homebasic.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /></unattend> -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
That my friend I have been working on and no solution yet here. The OEM reinstall partition Well allright let skip that:) And the other? It is right, right? -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
Forget it.. Yours works fine in VMware but mine doesnt.. All i did was to change to this: <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>12000</Size> <Type>Primary</Type> </CreatePartition> <CreatePartition wcm:action="add"> <Order>2</Order> <Size>300</Size> <Extend>true</Extend> <Type>Primary</Type> </CreatePartition> <CreatePartition wcm:action="add"> <Order>3</Order> <Extend>true</Extend> <Type>Primary</Type> </CreatePartition> </CreatePartitions> And i also made these changes <ModifyPartitions> <ModifyPartition wcm:action="add"> <Format>NTFS</Format> <Label>Recovery</Label> <Letter>R</Letter> <Order>1</Order> <PartitionID>1</PartitionID> <TypeID>0x27</TypeID> </ModifyPartition> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>System</Label> <Letter>S</Letter> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> <ModifyPartition wcm:action="add"> <Format>NTFS</Format> <Label>System</Label> <Letter>W</Letter> <Order>3</Order> <PartitionID>3</PartitionID> </ModifyPartition> </ModifyPartitions> Reason Im asking is beacuse a guy on MDL Forum has made a recovery tool and instead of having to create partitions yourself I/we want the unattended to create them automatically. I have asked in that forumthread but no response yet. I also want the first 12 GB partition to be an OEM Recovery partition with "set id=27" (0x27?) and i want windows to install to the 3rd partition (which has all the remaining space) -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
Thankyou so much max! I will try this in a couple of hours! -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
Thanks for the reply.. I actually succeeded in making one myself completely but it doesnt work:/ [color=#333333][font=Verdana][size=4]<!--?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> <disk wcm:action="add"> <createpartitions> <createpartition wcm:action="add"> <order>1</order> <size>12000</size> <type>Primary</type> </createpartition> <createpartition wcm:action="add"> <order>2</order> <size>300</size> <type>Primary</type> </createpartition> <createpartition wcm:action="add"> <order>3</order> <type>Primary</type> <size>20000</size> </createpartition> </createpartitions> <modifypartitions> <modifypartition wcm:action="add"> <active>false</active> <extend>false</extend> <format>NTFS</format> <label>Recovery</label> <letter>R</letter> <order>1</order> <partitionid>1</partitionid> <typeid>0x27</typeid> </modifypartition> <modifypartition wcm:action="add"> <active>true</active> <extend>false</extend> <format>NTFS</format> <label>System</label> <letter>S</letter> <order>2</order> <partitionid>1</partitionid> <typeid>0x27</typeid> </modifypartition> <modifypartition wcm:action="add"> <active>false</active> <extend>false</extend> <format>NTFS</format> <label>Windows</label> <letter>C</letter> <order>3</order> <partitionid>1</partitionid> <typeid>1</typeid> </modifypartition> </modifypartitions> <willwipedisk>true</willwipedisk> <diskid>0</diskid> </disk> <willshowui>OnError</willshowui> </diskconfiguration> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-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"> <oobe> <hideeulapage>true</hideeulapage> </oobe> </component> </settings> <cpi:offlineimage cpi:source="catalog:d:/7integrator/dvd/sources/install_windows 7 Homebasic.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi"></cpi:offlineimage></unattend>[/size][/font][/color] </settings><div><settings pass="windowsPE"><br></settings></div><div><settings pass="windowsPE"><br></settings></div><div><settings pass="windowsPE">I f. hate msfn's editor.. It doesnt work properly in Chrome....</settings></div><div><settings pass="windowsPE"><br></settings></div> -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
I still hate the this crap. -
Ask your Seven xml ? here
grabben replied to maxXPsoft's topic in Unattended Windows 7/Server 2008R2
hm.. Ive been looking around for myself but i dont seem to be able to find a proper one, or perhaps im alittle dumb;) I want the unattended setup to create three partitions @ different sizes, format as ntfs and assign three different driveletters. How can i do that?