Chocolatey Parameters

chocoParams

These are optional parameters that are specifically used for choco install. Not all scenarios are created equal and some environments/packages require these in order to successfully deploy.

Params

These are parameters that are specific to the package. They are unique to each package and optional.

@{
    'office365business-slow' = @{
        Name        = 'office365business'
        Ensure      = 'Present'
        chocoParams = '--execution-timeout 0'
    }
    'firefox'                = @{
        Name   = 'firefox'
        Ensure = 'Present'
        Params = '/NoAutoUpdate /l:en-GB'
    }
}

Last updated

Was this helpful?