Silence unnecessary output

This commit is contained in:
Manuel Thalmann 2023-07-09 00:02:56 +02:00
parent 78cdec4929
commit b62fe5d614

View file

@ -46,7 +46,7 @@ $Global:SetupConfigPostprocessor = {
$size = $winPartition.OwnerDocument.CreateElement("Size"); $size = $winPartition.OwnerDocument.CreateElement("Size");
$size.InnerText = "$((1 * 1024 * 1024) - $garbage)"; $size.InnerText = "$((1 * 1024 * 1024) - $garbage)";
$winPartition.RemoveChild($winPartition.SelectSingleNode("./ua:Extend", $namespace)); $winPartition.RemoveChild($winPartition.SelectSingleNode("./ua:Extend", $namespace));
$winPartition.AppendChild($size); $null = $winPartition.AppendChild($size);
$newPartition.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex"; $newPartition.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex";
$null = $partitionCreationContainer.AppendChild($newPartition); $null = $partitionCreationContainer.AppendChild($newPartition);