BcContainerHelper.ps1
param( [switch] $Silent, [switch] $ExportTelemetryFunctions, [string[]] $bcContainerHelperConfigFile = @()) Get-ChildItem -Path $PSScriptRoot -Recurse | % { Unblock-File -Path $_.FullName } Remove-Module NavContainerHelper -ErrorAction Ignore Remove-Module BcContainerHelper -ErrorAction Ignore $modulePath = Join-Path $PSScriptRoot "BcContainerHelper.psm1" Import-Module $modulePath -DisableNameChecking -ArgumentList $Silent, $ExportTelemetryFunctions, $bcContainerHelperConfigFile |