Prevent unnecessary console output
This commit is contained in:
parent
347f1ae462
commit
0617938d3c
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ $Global:SetupConfigPostprocessor = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$partitionCreations.AppendChild($newPartition);
|
$null = $partitionCreations.AppendChild($newPartition);
|
||||||
|
|
||||||
$partitionModifications = $diskConfig.SelectSingleNode("./ua:ModifyPartitions", $namespace);
|
$partitionModifications = $diskConfig.SelectSingleNode("./ua:ModifyPartitions", $namespace);
|
||||||
$newModification = $partitionModifications.SelectNodes("./ua:ModifyPartition", $namespace)[2].CloneNode($true);
|
$newModification = $partitionModifications.SelectNodes("./ua:ModifyPartition", $namespace)[2].CloneNode($true);
|
||||||
|
@ -44,7 +44,7 @@ $Global:SetupConfigPostprocessor = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$partitionModifications.AppendChild($newModification);
|
$null = $partitionModifications.AppendChild($newModification);
|
||||||
}
|
}
|
||||||
|
|
||||||
. "$PSScriptRoot/../../../scripts/Windows/OS/Setup.ps1";
|
. "$PSScriptRoot/../../../scripts/Windows/OS/Setup.ps1";
|
||||||
|
|
Loading…
Reference in a new issue