I have made a console with a number of features regarding applications, ports and so forth.
I am using the Microsoft.BizTalk.ExplorerOM assembly as an interface for the biztalk database.

The point is that the assembly seems slightly "incomplete" since i dont find any way to remove assemblies(or resources as they are called in administration console) from an application.

Is there anyone out there who has the solution for this? (Preferably without doing any manual database hacks)

Ive been searching around for a bit both on google and here but im surprized nobody else seems to have this problem.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Use the RemoveResource command provided by btstask.exe. Example:

BTSTask RemoveResource /ApplicationName:MyApplication /Luid:"MyApp.Orchestrations, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0123456789ABCDEF"

For programmatic invocation of btstask.exe:

var p = new Process();
p.StartInfo = new ProcessStartInfo("btstask.exe", "RemoveResource /ApplicationName:" +     application + " /Luid:\"" + assemblyPath + "\"");
p.Start();
p.WaitForExit();

Beware using the MSBTS_DeploymentService WMI class, which was commonly used in BizTalk 2004 for doing what you are trying to achieve, as it does not support the concept of an Application container.

link|improve this answer
Ahh, didn´t think about invoking another program. Though it would certainly be nicer if microsoft could keep it all in one place... Thanks a lot! – DOOMDUDEMX Feb 27 at 7:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.