On Enlistment in BizTalk 2004 the WMI process is using more than the default memory quota of 128MB...

This one will get you when you start working with large schema's like XCBL... http://www.xcb.org don't get me started on those recursive imports... Windows WMI is used to enlist orchestrations when you use the BizTalk administration window on a server or a Nant build thanks Scott Colestock http://www.gotdotnet.com/workspaces/workspace.aspx?id=d66e1651-98e5-4ef4-9158-ac030a9b8a32... By defalult WMI is set to use a memory quota of 128MB and when you try to enlist an orchestration that uses more memory than this “Ka Boom” you will not be able to deploy your solution on the server ever again! OK so it's not that bad here is the solution....

  1. Run "wbemtest" on cmd prompt
  2. Connect to the "root" namespace (not "root\default", just "root")
  3. Select Open Instance, and specify "__ProviderHostQuotaConfiguration=@"
  4. Check "Local Only" for easier readability and you will see the threshold values
  5. Change the MemoryPerHost value to something greater - eg. Double it (256 MB)
  6. Save Property
  7. Save Object
  8. Exit

And to be on the safe side - restart :)

This article is part of the GWB Archives. Original Author: Nigel Parker

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.