BizTalk 2006 和 BizTalk 2006 R2
如何仅通过查看安装来区分这两个版本?
How do I tell the 2 versions apart by looking only at their installations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何仅通过查看安装来区分这两个版本?
How do I tell the 2 versions apart by looking only at their installations?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
如果打开 BTSNTSvc.exe 文件的属性(默认情况下位于 C:\Program Files\Microsoft BizTalk Server 2006),请转到版本选项卡并查看产品名称。 如果是R2,那里会这样说。 如果没有,它只会显示 Microsoft BizTalk Server 2006。
希望有帮助!
If you open up the properties of the BTSNTSvc.exe file (by default located in C:\Program Files\Microsoft BizTalk Server 2006), go to the version tab and look at the Product Name. If it's R2, it will say so there. If not, it will just say Microsoft BizTalk Server 2006.
Hope that helps!
你可以在注册表中查看
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\BizTalk Server\3.0
并查找 ProductCode_R2 键
根据名称,我怀疑这是特定于 R2 的键。
You can look in the registry
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\BizTalk Server\3.0
and look for the ProductCode_R2 key
Going by the name, I would suspect that is a keykey specific to R2.
从管理控制台(平台设置 -> 适配器)。 如果您可以看到任何 WCF 适配器,则您拥有 R2...
From the Admin Console (Platform Settings -> Adapters). If you can see any WCF adapters, you have R2...
BizTalkMgmtDB 中有一个表 - BizTalkDBVersion。 如果值为 v3.6.x,则为 BTS2006R2,否则 v3.5.x 为 BTS2006。
或者你可以使用注册表——在HKLM\SOFTWARE\Microsoft\BizTalk Server\3.0中,有一个ProductVersionKey。 同样,v3.6.x 的值告诉我们它是 BTS2006R2。
注意:版本号采用标准 .NET 格式 Major.minor.build.revision,构建和修订版本由 SP 和累积更新确定。
There is a table in the BizTalkMgmtDB - BizTalkDBVersion. If the value is v3.6.x then it is BTS2006R2, else v3.5.x is BTS2006.
Or you can use the registry - in HKLM\SOFTWARE\Microsoft\BizTalk Server\3.0, there is a ProductVersionKey. Again, a value of v3.6.x tells us it is BTS2006R2.
Note: The version numbers are in the standard .NET format Major.minor.build.revision, and the build and revision are determined by SPs and cumulative updates.