WMI Script to Terminate Suspended Orchestration Instances

Are you tired of having to go into the BizTalk Admin tool to terminate any suspended Orchestration instance before you want to redeploy? Scripting this task is simple using WMI. Just create a file called Terminate.vb and copy in this code:

TerminateAllOrchs

Sub TerminateAllOrchs

  Query = "SELECT * FROM MSBTS_ServiceInstance where ServiceClass = 1"

  Set InstSet = GetObject("Winmgmts:!root\MicrosoftBizTalkServer").ExecQuery(Query)

  For Each Inst In InstSet

    Inst.Terminate

  Next

End Sub

This script will terminate all Orchestrations so please use caution.

It could be further parameterized to only terminate specific Orchestrations. 

The Query would look something like:

  Query = "SELECT * FROM MSBTS_ServiceInstance where ServiceClass = 1 and AssembliName=''"

With  being the Assembly name of the Orchestration.

If you are using a helper .net class in your BizTalk Solution, you can set this up as a pre or post build event so every time you deploy you'll not have to worry about deployment errors due to suspended Orchestration instances. 

To set this up, just put the path to the vb script file in the event text box.

Again, this should only be used in cases that you are sure terminating all Orchestrations is what you really want to do.  But it can be a great time saver for development.

This article is part of the GWB Archives. Original Author: Stephen W. Thomas

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.