Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Evergreen/Evergreen.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Author = 'Aaron Parker'
CompanyName = 'stealthpuppy'

# Copyright statement for this module
Copyright = '(c) 2025 stealthpuppy, EUC Pilots. All rights reserved.'
Copyright = '(c) 2026 stealthpuppy, EUC Pilots. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Create evergreen Windows image builds with the latest versions of applications. Evergreen is a simple PowerShell module that retrieves the latest version numbers and download URLs for various software products directly from the vendor source.'
Description = 'Create evergreen Windows image builds with the latest versions of applications. Evergreen is a PowerShell module that retrieves the latest version numbers and download URLs for various software products directly from the vendor source.'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '4.0'
Expand Down
6 changes: 6 additions & 0 deletions Evergreen/Private/Get-InstallerType.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ function Get-InstallerType {
)

switch -Regex ($String.ToLower()) {
"admin" { $Type = "Admin"; break }
"airgap" { $Type = "Airgap"; break }
"classic" { $Type = "Classic"; break }
"debug" { $Type = "Debug"; break }
"grouppolicy" { $Type = "GroupPolicy"; break }
"legacy" { $Type = "Legacy"; break }
"light" { $Type = "Light"; break }
"minimalist" { $Type = "Minimal"; break }
"ndm" { $Type = "NonDarkMode"; break }
"no-installer" { $Type = "Portable"; break }
"noadmin" { $Type = "NoAdmin"; break }
"portable" { $Type = "Portable"; break }
"plus" { $Type = "Plus"; break }
"premium" { $Type = "Premium"; break }
"standalone" { $Type = "Standalone"; break }
"qt5" { $Type = "Qt5"; break }
"qt6" { $Type = "Qt6"; break }
"user" { $Type = "User"; break }
Expand Down
Loading