Sep 11, 2026
2 min read

BC Friday Tips #81 Keep BCContainerHelper Up to Date

Keep BCContainerHelper current to pick up performance improvements and bug fixes.
Share:
BC Friday Tips #81 Keep BCContainerHelper Up to Date

#BCFridayTips is here for #msdyn365bc developers!

💡 Did you know you should always use the latest version of BCContainerHelper?

New releases can improve performance and fix bugs in your container workflows.

Update it with:

Update-Module -Name BCContainerHelper

You can remove older installed versions with:

Get-InstalledModule | ForEach-Object {
    $latestVersion = $PSItem.Version
Write-Host "$($PSItem.Name) - $($PSItem.Version)" -ForegroundColor Green
Get-InstalledModule $PSItem.Name -AllVersions |
    Where-Object Version -NE $latestVersion |
    ForEach-Object {
        Write-Host "- Uninstalling version $($PSItem.Version)..." -ForegroundColor Magenta -NoNewline
        $PSItem | Uninstall-Module -Force
        Write-Host "done"
    }
}

Why?

✅ Get the latest fixes and improvements

Update your BCContainerHelper version before troubleshooting a strange container issue. It might already be fixed.

Share to help others ♻️ and follow for more tips! 🚀

Related Posts