BizTalk Assessment: PowerShell to check what BizTalk Server 2016 Feature Packs are installed in your Servers got updated

  • Sandro Pereira
  • Nov 14, 2018
  • 3 min read

In the past, I released this PowerShell so that any BizTalk Administrator to check and control which BizTalk Server Feature Pack was installed in their BizTalk environment. However, recently Niclas Öberg, another fellow “BizTalker” that I met in the London Integrate event warn me that my script didn’t recognize the existence of FP3… and he was correct

📝 One-Minute Brief

The post clarifies the technical and functional differences between Distinguished Fields and Promoted Properties in BizTalk Server. While Distinguished Fields are lightweight and ideal for internal orchestration logic (with no 256-character limit), Promoted Properties are essential for message routing, correlation, and tracking, despite their higher performance overhead and size constraints.

An alternative was to use BHM, but the current version of BHM is also not checking for FP3 (only 1 or 2 – this limitation, for sur,e will be fixed in the next versions of BHM), you may get a warning message saying that no CU or FP is installed, or you may get an FP2 warning message like me:

BizTalk Server 2016 Feature Packs: BHM

Nevertheless, I have installed FP3 in my environment.

Of course, once again, you can easily check this manually in the “Control Panel\Programs\Programs and Features” and then view the “View Installed Updates”, although this can be a very annoying task.

So, I decided to fix my PowerShell script and release a new version that will solve this problem. Now, if you run the script, you will be able to receive the following output describing what FP was or is installed in your environment:

Microsoft BizTalk Server 2016 Feature Pack 1 is installed
Microsoft BizTalk Server 2016 Feature Update 2 with CU3 [KB4054819]LDR is installed
Microsoft BizTalk Server 2016 Feature Update 2 with CU4 [KB4077058]LDR is installed
Microsoft BizTalk Server 2016 Feature Update 3 [KB4103503]LDR is installed

The beauty of this script is that it is now prepared for detecting any other future PF that may be released by Microsoft, without the need for you to change the script.

...
    foreach ($Property in $key.Property)
    {
        if ($Property -like '*Microsoft BizTalk Server 2016 Feature Update *')
        {
            $findF2 = 1
            Write-Host "$($Property) is installed"
        }
    }
...

This script follows the sequence of scripts that I released in the past to check what Cumulative Updates were installed in the machines.

Download

THIS POWERSHELL SCRIPT IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND.

Check which BizTalk Server 2016 Feature Packs installed with PowerShellCheck which BizTalk Server 2016 Feature Packs installed with PowerShell (2 KB)
Microsoft | TechNet Gallery

Thanks for Buying me a coffe
Author: Sandro Pereira

Sandro Pereira lives in Portugal and works as a consultant at DevScope. In the past years, he has been working on implementing Integration scenarios both on-premises and cloud for various clients, each with different scenarios from a technical point of view, size, and criticality, using Microsoft Azure, Microsoft BizTalk Server and different technologies like AS2, EDI, RosettaNet, SAP, TIBCO etc. He is a regular blogger, international speaker, and technical reviewer of several BizTalk books all focused on Integration. He is also the author of the book “BizTalk Mapping Patterns & Best Practices”. He has been awarded MVP since 2011 for his contributions to the integration community.

Leave a Reply

Your email address will not be published. Required fields are marked *

The Ultimate Cloud
Management Platform for Azure

Supercharge your Azure Cost Saving

Learn More
Turbo360 Widget

Back to Top