list orchestrations belonging to an assembly..

Home Page Forums BizTalk 2004 – BizTalk 2010 list orchestrations belonging to an assembly..

Viewing 1 reply thread
  • Author
    Posts
    • #14157

      Hi all..sorry to ask u this newbie question….but is it possible to commandline or retrieve by vbs script or something…the orchestrations belonging to an assembly file?

      We are scripting the deployment of a custom BTS installation and we would love to automate it….

      any suggestions??

    • #14156

      I think you could do this with WMI in a VB Script
      Need help with WMI? Get the Microsoft Tool WMICreator available on the MSFT site. Or see the Admin Folder in the SDK.

      It would look something like:
      [code:1:19306f39ac]
      AllOrchs
      Sub AllOrchs
      Query = \"SELECT * FROM MSBTS_ServiceInstance where ServiceClass = 1 and Assembly = YourName\"
      Set InstSet = GetObject(\"Winmgmts:!root\\MicrosoftBizTalkServer\").ExecQuery(Query)

      // Need code here to write it out
      End Sub
      [/code:1:19306f39ac]

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.