使用PowerShell将com +组件添加到现有的空com +应用程序包中?

时间:2014-12-12 11:11:48

标签: powershell powershell-v2.0 com+

我正在尝试尽可能地自动化我的服务器安装。

部分内容包括创建COM +包(我目前使用PS进行创建)。然后我需要向这些空的应用程序包添加组件。这些DLL已经预先注册了RegASM。 目前我正在通过DCOM配置GUI手动添加组件(添加已注册的组件\ 32位组件)。然后,我在每个组件添加后通过属性设置事务支持级别。在具有50多个组件的应用程序上,这可能非常耗时,因此需要自动化。

我找到了一个删除特定组件的脚本......

$comCatalog = New-Object -ComObject COMAdmin.COMAdminCatalog
$appColl = $comCatalog.GetCollection("Applications")
$appColl.Populate()

$app = $appColl | where {$_.Name -eq "COMAPPNAME"}
$compColl = $appColl.GetCollection("Components", $app.Key)
$compColl.Populate()

$index = 0
foreach($component in $compColl) {
if ($component.Name -eq "SOMECOMPONENT.NAME") {
    $compColl.Remove($index)
    $compColl.SaveChanges()
}
$index++
}

...修改上述内容,这是我到目前为止所遇到的错误,其中存在Bitness和Transaction选项。没有这些,它运行没有错误。但是,似乎没有任何事情发生。我的COM +应用程序中没有组件出现。

$comAdmin = New-Object -comobject COMAdmin.COMAdminCatalog
$apps = $comAdmin.GetCollection(“Applications”)
$apps.Populate();
$app = $apps | where {$_.Name -eq "App1"}
$compColl = $apps.GetCollection("Components", $app.Key)
$compColl.Populate()
$component = $compColl.Add
$component.Value(“Bitness”) = 0x1
$component.Value(“Transaction”) = 2
$component.Name -eq "App1.Component1" 
$compColl.SaveChanges()

$comAdmin = New-Object -comobject COMAdmin.COMAdminCatalog
$apps = $comAdmin.GetCollection(“Applications”)
$apps.Populate();
$app = $apps | where {$_.Name -eq "App1"}
$compColl = $apps.GetCollection("Components", $app.Key)
$compColl.Populate()
$component = $compColl.Add
$component.Value(“Bitness”) = 0x1
$component.Value(“Transaction”) = 3
$component.Name -eq "App1.Component2" 
$compColl.SaveChanges()

任何帮助将不胜感激! 谢谢!

1 个答案:

答案 0 :(得分:2)

我找到了合适的解决方案:

$comAdmin = New-Object -comobject COMAdmin.COMAdminCatalog;
$comAdmin.InstallComponent("ApplicationName", [DLL containing components]);

这正是我所需要的。