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 }