BizTalk 2006 and BizTalk 2006 R2

How to tell 2 versions separately by looking only at their settings?

0


source to share


4 answers


If you open the properties of the BTSNTSvc.exe file (located in C: \ Program Files \ Microsoft BizTalk Server 2006 by default), go to the versions tab and look at the product name. If it's R2, he'll say so. If not, it will just say Microsoft BizTalk Server 2006.



Hope it helps!

+3


source


You can look in the registry HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ BizTalk Server \ 3.0 and find the ProductCode_R2 key



Going by name, I suspect it is an R2-specific key.

+3


source


In the admin console (Platform Settings -> Adapters). If you see any WCF adapters you have R2 ...

+2


source


There is a table in BizTalkMgmtDB - BizTalkDBVersion. If v3.6.x is BTS2006R2, otherwise v3.5.x is BTS2006.

Or you can use the registry - in HKLM \ SOFTWARE \ Microsoft \ BizTalk Server \ 3.0, there is a ProductVersionKey. Again, the v3.6.x value tells us that this is BTS2006R2.

Note. Version numbers are in the .NET standard Major.minor.build.revision format, and build and revision are determined by SPs and cumulative updates.

0


source







All Articles