Public/Install-OriAzBopPrerequisityForce.ps1
<#
.SYNOPSIS Install modules required from PSGallery when force is needed .DESCRIPTION Install modules required from PSGallery when force is needed .PARAMETER Name Specifies the exact names of modules to install from the online gallery. The module name must match the module name in the repository. .PARAMETER RequiredVersion Specifies the exact version of a single module to install. .EXAMPLE Install-OriAzBopPrerequisityForce #> function Install-OriAzBopPrerequisityForce { [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingInvokeExpression', '', Justification = "There's required use the recomanded code.")] [CmdLetBinding()] param () $ErrorActionPreference = 'Stop' Write-Debug "-- Install-OriAzBopPrerequisityForce --" Install-OriAzBopPrerequisiteForce Write-Debug "-- End of Install-OriAzBopPrerequisityForce --" } |