Skip to content

Commit

Permalink
Fix XML path
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronparker committed Jun 29, 2024
1 parent 701f605 commit 70cd5d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions New-Microsoft365AppsPackage.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ process {
[System.String] $ProductID = ""
switch ($Xml.Configuration.Add.Product.ID) {
"O365ProPlusRetail" {
$ProductID += "Microsoft 365 apps for enterprise, "
$ProductID += "Microsoft 365 Apps for enterprise, "
}
"O365BusinessRetail" {
$ProductID += "Microsoft 365 apps for business, "
$ProductID += "Microsoft 365 Apps for business, "
}
"VisioProRetail" {
$ProductID += "Visio, "
Expand Down
2 changes: 1 addition & 1 deletion New-Microsoft365AppsPackageNoPsadt.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ process {

#region Update the configuration.xml
try {
$InstallXml = "$OutputPath\Install-Microsoft365Apps.xml"
$InstallXml = "$OutputPath\source\Install-Microsoft365Apps.xml"
Write-Msg -Msg "Read configuration file: $InstallXml."
[System.Xml.XmlDocument]$Xml = Get-Content -Path $InstallXml

Expand Down

0 comments on commit 70cd5d3

Please sign in to comment.