diff --git a/profiles/DerGeret/Windows/Setup.ps1 b/profiles/DerGeret/Windows/Setup.ps1 index 274628de..f89e540b 100644 --- a/profiles/DerGeret/Windows/Setup.ps1 +++ b/profiles/DerGeret/Windows/Setup.ps1 @@ -42,14 +42,9 @@ $Global:SetupConfigPostprocessor = { } # Add space before Windows installation... wha-!? For Linux, ofc! I use Arch Linux, btw. - $size = ($partitionCreationContainer.SelectNodes("./ua:CreatePartition/ua:Size", $namespace) | Select-Object -First 1).CloneNode($true); - $size.InnerText = "$((64 * 1024) - $garbage)"; - $extendTag = $winPartition.RemoveChild($winPartition.SelectSingleNode("./ua:Extend", $namespace)); - $null = $winPartition.AppendChild($size); $newPartition = $winPartition.CloneNode($true); - $newPartition.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex"; - $newPartition.SelectSingleNode("./ua:Size", $namespace).InnerText = "100"; + $newPartition.SelectSingleNode("./ua:Size", $namespace).InnerText = "$(1 * 1024 * 1024)"; $null = $partitionCreationContainer.AppendChild($newPartition); $partitionModificationContainer = $diskConfig.SelectSingleNode("./ua:ModifyPartitions", $namespace); @@ -57,7 +52,6 @@ $Global:SetupConfigPostprocessor = { $newModification = $partitionModifications[2].CloneNode($true); $newModification.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex"; $newModification.SelectSingleNode("./ua:PartitionID", $namespace).InnerText = "$newIndex"; - $null = $newModification.AppendChild($extendTag.CloneNode($true)); foreach ($partition in $partitionModifications) { $partitionID = [int]$partition.SelectSingleNode("./ua:PartitionID", $namespace).InnerText;