pmcsharry Posted November 2, 2005 Posted November 2, 2005 Hello everyone.I haven't created an unattend.txt for a while. I have got my file working nicely except for the following.I would like to build a system, with 3 partitions. Limiting the system partition to 10GB. I don`t believe its possible to customer the partitioning info. Just all or nothing. Any ideas?
cluberti Posted November 2, 2005 Posted November 2, 2005 (edited) [Data]Autopartition = 0[unattended]Repartition = NoWindows should then prompt you to partition during the installation. Edited November 2, 2005 by cluberti
tguy Posted November 3, 2005 Posted November 3, 2005 Look into Microsoft's diskpart.exe utility. You can use it to create and size all sizes and types of partitions for your installation. It is free, there is lots of stuff on the web on how to use it.
tkmadison Posted December 20, 2005 Posted December 20, 2005 (edited) Hello everyone.I haven't created an unattend.txt for a while. I have got my file working nicely except for the following.I would like to build a system, with 3 partitions. Limiting the system partition to 10GB. I don`t believe its possible to customer the partitioning info. Just all or nothing. Any ideas?It is indeed possible...found a good explanation on the forum here once, but you won't have a lot of luck using the forum's integrated search...use the google search instead...Anyway, as for autopartitioning your hard drive with winnt.sif...here's a quick starter...[Data]Autopartition = 1MsDosInitiated = 0UnattendedInstall = YesOemDrivers = OemInfFiles[Unattended]UnattendMode = DefaultHideUnattendSwitch = NoOemPreinstall = YesOemSkipEula = YesRepartition = YesWaitForReboot = NoNoWaitAfterTextMode = 1NoWaitAfterGUIMode = 1DriverSigningPolicy = IgnoreNonDriverSigningPolicy = Ignore[DiskConfig]Disk1 = "Disk1.config"[Disk1.config]Size1 = "*"PartitionType1 = "primary"FileSystem1 = "ntfs"Quickformat1 = "yes"Notice under Disk1.config you have Size1.Leaving it as an asterix means it will reformat the entire hard drive and use it as a single partition.You can specify the size here (in MB) of the partition size you'd like. So in your case it would beSize1="10000"As for adding other paritions, I think that you would have to do something like this...[DiskConfig]Disk1 = "Disk1.config"Disk2 = "Disk2.config"Disk3 = "Disk3.config"[Disk1.config]Size1 = "10000"PartitionType1 = "primary"FileSystem1 = "ntfs"Quickformat1 = "yes"[Disk2.config]Size2 = "10000"PartitionType2 = "logical"FileSystem2 = "ntfs"Quickformat2 = "yes"If at all possible, I would test this with Virtual PC or VMWare before potentially screwing up your system.I know that the first part is right for autopartitioning, but I'm not entirely sure whether or not i have the code right for adding more partitions. Edited December 20, 2005 by tkmadison
Ashimema Posted December 26, 2005 Posted December 26, 2005 Wow, i've been looking for somthing as easy as this for years!I did manage to do it manually a long time ago, but have forgotten how now. I hope the above works.If anyone knows where that orginal post thats mentioned is, please post a link, i can't find it for looking!CheersAshimema
dahvaio Posted December 27, 2005 Posted December 27, 2005 I tried the above but it did not work for me...I wish it would have worked... I will have to go back to the drawing board.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now