Ensure proper XML elements are evaluated
This commit is contained in:
parent
2559625dcb
commit
cb1a0a8e4b
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ $Global:SetupConfigPostprocessor = {
|
|||
$newIndex = [int]$installationPartition.InnerText;
|
||||
$installationPartition.InnerText = "$($newIndex + 1)";
|
||||
$partitionCreations = $diskConfig.SelectSingleNode("./ua:CreatePartitions", $namespace);
|
||||
$newPartition = $partitionCreations.FirstChild.CloneNode($true);
|
||||
$newPartition = $partitionCreations.SelectNodes("./ua:CreatePartition", $namespace)[0].CloneNode($true);
|
||||
$newPartition.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex";
|
||||
$newPartition.SelectSingleNode("./ua:Size", $namespace).InnerText = "65536"; # For testing purposes
|
||||
|
||||
|
@ -30,7 +30,7 @@ $Global:SetupConfigPostprocessor = {
|
|||
$partitionCreations.AppendChild($newPartition);
|
||||
|
||||
$partitionModifications = $diskConfig.SelectSingleNode("./ua:ModifyPartitions", $namespace);
|
||||
$newModification = $diskConfig.ChildNodes[2].CloneNode($true);
|
||||
$newModification = $diskConfig.SelectNodes("./ua:ModifyPartition", $namespace)[2].CloneNode($true);
|
||||
$newModification.SelectSingleNode("./ua:Order", $namespace).InnerText = "$newIndex";
|
||||
$newModification.SelectSingleNode("./ua:PartitionID", $namespace).InnerText = "$newIndex";
|
||||
|
||||
|
|
Loading…
Reference in a new issue