首先,这与所解决的问题Custom Action in C# used via WiX fails with error 1154非常相似
然而,在我的情况下,我无法辨别出解决问题的具体步骤。希望有人能给我指明正确的方向。
在我的例子中,我使用Wise Installation Studio7.0来执行我编写的C#自定义操作,以启动Server2008 R2和更新版本上的.Net Framework3.5 SP1的服务器管理器功能。
我在visual studio 2010中将自定义操作创建为标准的.Net 2.0类库。
我的猜测是,我需要在这里做一些不同的事情--这需要编译成比托管DLL更好的东西。我使用的代码非常简单……取自flexera论坛,其他人在Server2008 R2上发布了.Net Framework3.5 SP1问题的解决方案。
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using Common_Functions;
namespace ActivateDotNetFramework
{
/**
* @brief helper library to activate .Net Framework on certain operating systems
*
* @args None
*
*
* @author Daniel Lee
* @date Jan 17,2012
* @version 1.0
* @bug 6540 Role Management tool required for 2008R2 to install .NET 3.5 SP1
**/
class ActivateDotNetFramework
{
static void Main(string[] args)
{
string logFile = "ActivateDotNetFeatures.log";
WriteToLog logWriter = null;
Process p = null;
ProcessStartInfo startInfo = null;
try
{
logWriter = new WriteToLog(logFile, "");
logWriter.UpdateLog("AMAZINGCHARTS! ActivateDotNetFramework Custom Action");
//open powershell process to activate the .net framework feature. See:
//http://community.flexerasoftware.com/archive/index.php?t-182914.html
startInfo = new ProcessStartInfo();
startInfo.FileName = "powershell.exe";
startInfo.Arguments = "Import-Module ServerManager ; Add-WindowsFeature as-net-framework";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.UseShellExecute = true;
string sLogMsg = "";
p = new Process();
p.StartInfo = startInfo;
sLogMsg = "ProcessStartInfo Data ... ";
logWriter.UpdateLog(sLogMsg);
sLogMsg = "FileName: " + p.StartInfo.FileName + "\n Arguments:" + p.StartInfo.Arguments;
logWriter.UpdateLog(sLogMsg);
p.Start();
p.WaitForExit();
sLogMsg = "ActivateDotNetFramework Custom Action Return Code: " + p.ExitCode.ToString();
logWriter.UpdateLog(sLogMsg);
}
catch (Exception)
{
throw;
}
finally
{
}
}
}
}
关于如何在VS2010中处理这个问题,您有什么建议吗?或者问题出在我的Wise Installation Studio软件包CA配置中?据我所知,VS2010只构建托管ActivateDotNetFramework.dll文件,而不构建其他文件。我将此文件添加到wise包中的资源中,并将函数名列为ActivateDotNetFramework。
我已经在这个问题上转来转去一天多了。任何帮助都是非常感谢的。谢谢。
丹·李AmazingCharts!发布工程师
发布于 2012-01-19 21:43:10
该代码应编译为EXE,并作为EXE自定义操作运行。但我更大的问题是,为什么要费心呢?要在Windows中安装功能,只需调用:
dism /online /Enable-Feature FeatureName
有关功能名称的列表,请键入:
dism /online /Get-功能
https://stackoverflow.com/questions/8919654
复制相似问题