我有一个运行CustomAction的安装程序,它运行嵌入式PowerShell脚本来测试各种所需Windows功能的安装状态。这样可以正常工作,但完成起来非常慢。
是否有其他方法可以测试此类功能?我希望每个功能和子功能都有一些注册表键,但我没有找到关于这个主题的任何文档。
答案 0 :(得分:4)
在其中一个安装项目中,我们使用dism.exe来启用所需的Windows功能。
例如,在IIS 8中启用ASP.NET是通过以下自定义操作完成的:
<!-- 32-bit edition of Windows knows where to find dism.exe -->
<Property Id="DISMEXEPATH" Value="dism.exe" />
<!-- 64-bit edition of Windows requires this workaround to get proper dism.exe version -->
<SetProperty Id="DISMEXEPATH" Value="[WindowsFolder]Sysnative\dism.exe" After="AppSearch">VersionNT64</SetProperty>
<!-- And the CA to do the job (with the help of [quiet execution CA][2]) -->
<CustomAction Id="SetForEnableAspNetIIS8" Property="EnableAspNetIIS8" Value=""[DISMEXEPATH]" /norestart /quiet /online /enable-feature /featurename:IIS-ApplicationDevelopment /featurename:IIS-ASPNET45 /featurename:IIS-NetFxExtensibility45 /featurename:NetFx4Extended-ASPNET45 /featurename:IIS-ISAPIExtensions /featurename:IIS-ISAPIFilter" />
<CustomAction Id="EnableAspNetIIS8" BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="deferred" Return="check"/>
这似乎不是一个好习惯,但它适用于该项目。
答案 1 :(得分:2)
我最终使用(现已删除)建议使用托管DTF自定义操作来查询C#中的服务器功能。
[CustomAction]
public static ActionResult CheckFeatures(Session session)
{
SelectQuery q = new SelectQuery("Win32_ServerFeature");
ManagementObjectSearcher s = new ManagementObjectSearcher(q);
foreach (ManagementObject e in s.Get())
{
if((UInt32)e["ID"] == FeatureId)
{
session["FeatureIsSet"] = "1";
}
}
}
<CustomAction Id="CACheck" BinaryKey="CA" DllEntry="CheckFeatures"
Execute="immediate" Return="check" />
<Binary Id="CA" SourceFile="path/to/bin" />