Skip to content

Commit

Permalink
Microsoft Office LTSC 2024 Preview
Browse files Browse the repository at this point in the history
  • Loading branch information
farag2 committed May 30, 2024
1 parent 121746d commit b2da5d5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
1 change: 0 additions & 1 deletion Default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<ExcludeApp ID="Outlook" />
<ExcludeApp ID="PowerPoint" />
<ExcludeApp ID="Publisher" />
<ExcludeApp ID="Teams" />
<ExcludeApp ID="Word" />
</Product>
<Product ID="ProofingTools">
Expand Down
28 changes: 16 additions & 12 deletions Download.ps1
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<#
.SYNOPSIS
Download Office 2019, 2021, and 365
Download Office 2019, 2021, 2024, and 365
.PARAMETER Branch
Choose Office branch: 2019, 2021, and 365
Choose Office branch: 2019, 2021, 2024, and 365
.PARAMETER Channel
Choose Office channel: 2019, 2021, and 365
Choose Office channel: 2019, 2021, 2024, and 365
.PARAMETER Components
Choose Office components: Access, OneDrive, Outlook, Word, Excel, PowerPoint, Teams
Expand All @@ -17,11 +17,11 @@
.EXAMPLE Download Office 2021 with the Excel, Word components
Download.ps1 -Branch ProPlus2021Volume -Channel PerpetualVL2021 -Components Excel, Word
.EXAMPLE Download Office 365 with the Excel, Word, PowerPoint components
Download.ps1 -Branch O365ProPlusRetail -Channel SemiAnnual -Components Excel, OneDrive, Outlook, PowerPoint, Teams, Word
.EXAMPLE Download Office 2024 with the Excel, Word components
Download.ps1 -Branch ProPlus2021Volume -Channel PerpetualVL2024 -Components Excel, Word
.EXAMPLE Download Office 365 with the Excel, Word components using Beta channel
Download.ps1 -Branch O365ProPlusRetail -Channel BetaChannel -Components Excel, Word
.EXAMPLE Download Office 365 with the Excel, Word, PowerPoint components
Download.ps1 -Branch O365ProPlusRetail -Channel Current -Components Excel, OneDrive, Outlook, PowerPoint, Teams, Word
.LINK
https://config.office.com/deploymentsettings
Expand All @@ -41,7 +41,7 @@ param
$Branch,

[Parameter(Mandatory = $true)]
[ValidateSet("BetaChannel", "Current", "PerpetualVL2021", "SemiAnnual")]
[ValidateSet("Current", "PerpetualVL2021", "PerpetualVL2024", "SemiAnnual")]
[string]
$Channel,

Expand Down Expand Up @@ -78,6 +78,10 @@ switch ($Branch)
{
($Config.Configuration.Add.Product | Where-Object -FilterScript {$_.ID -eq ""}).ID = "ProPlus2021Volume"
}
ProPlus2024Volume
{
($Config.Configuration.Add.Product | Where-Object -FilterScript {$_.ID -eq ""}).ID = "ProPlus2024Volume"
}
O365ProPlusRetail
{
($Config.Configuration.Add.Product | Where-Object -FilterScript {$_.ID -eq ""}).ID = "O365ProPlusRetail"
Expand All @@ -86,10 +90,6 @@ switch ($Branch)

switch ($Channel)
{
BetaChannel
{
($Config.Configuration.Add | Where-Object -FilterScript {$_.Channel -eq ""}).Channel = "BetaChannel"
}
Current
{
($Config.Configuration.Add | Where-Object -FilterScript {$_.Channel -eq ""}).Channel = "Current"
Expand All @@ -98,6 +98,10 @@ switch ($Channel)
{
($Config.Configuration.Add | Where-Object -FilterScript {$_.Channel -eq ""}).Channel = "PerpetualVL2021"
}
PerpetualVL2024
{
($Config.Configuration.Add | Where-Object -FilterScript {$_.Channel -eq ""}).Channel = "PerpetualVL2021"
}
SemiAnnual
{
($Config.Configuration.Add | Where-Object -FilterScript {$_.Channel -eq ""}).Channel = "SemiAnnual"
Expand Down

0 comments on commit b2da5d5

Please sign in to comment.