ps/Modules/Alkami.PowerShell.Choco/Public/Install-MicroservicesWithMigrations.ps1

17 lines
477 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Install-MicroservicesWithMigrations {
<#
.SYNOPSIS
Note: Alias of Install-ManualChocoPackages.
This function name was changed because it was a misnomer.
Install-ManualChocoPackages installs both packages with migrations, AND new choco packages.
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$false)]
[string]$commandsPath = "C:/temp/deploy/chocoInstallCommands.ps1"
)
Install-ManualChocoPackages $commandsPath
}