gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 23:44:52 25 4
gpt4 key购买 nike

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

其中的一部分包括创建COM +程序包(我目前正在使用PS)。然后,我需要向这些空的应用程序包中添加组件。 DLL已预注册到RegASM。
目前,我正在通过DCOM config GUI手动添加组件(添加已经注册的组件\ 32bit组件)。然后,在添加每个属性后,我通过属性为每个组件设置事务支持级别。在具有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++
}

...修改以上内容,这是我到目前为止所拥有的内容,但是它存在“位数”和“交易”选项的错误。没有这些,它运行就不会出错。但是,似乎什么都没有发生。我的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()

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

最佳答案

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

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

这正是我需要的。

关于powershell - 使用Powershell将com +组件添加到现有的空com +应用程序包中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27442421/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com