Relocate windows installation partition

This commit is contained in:
Manuel Thalmann 2023-07-04 14:23:35 +02:00
parent f81ccaff85
commit 52af691573

View file

@ -30,7 +30,7 @@ $Global:SetupConfigPostprocessor = {
}
# Add 1 TB space before Windows installation... wha-!? For Linux, ofc! I use Arch Linux, btw.
$newPartition.SelectSingleNode("./ua:Size", $namespace).InnerText = "$((1 * 1024 * 1024) - $offset)";
$newPartition.SelectSingleNode("./ua:Size", $namespace).InnerText = "$((64 * 1024) - $offset)";
$newPartition.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex";
$null = $partitionCreations.AppendChild($newPartition);