关于这个主题有很多问题,我尝试了所有解决方案,但没有任何方法可以帮助我。
问题在于它的确如此。在安装了visual studio的机器上工作,但在其他电脑上不起作用..使调试变得非常困难。
自定义操作代码为:
[CustomAction]
public static ActionResult EnumerateSqlServers(Session session)
{
MessageBox.Show("start EnumerateSQLServers"); // the message is not showing.
ActionResult result;
DataTable dt = SmoApplication.EnumAvailableSqlServers(false);
DataRow[] rows = dt.Select(string.Empty);//, "IsLocal desc, Name asc");
result = EnumSqlServersIntoComboBox(session, rows);
return result;
}
日志文件显示:
MSI (c) (2C:1C) [11:16:42:338]: Doing action: EnumerateSqlServersAction
Action 11:16:42: EnumerateSqlServersAction.
Action start 11:16:42: EnumerateSqlServersAction.
MSI (c) (2C:34) [11:16:42:385]: Invoking remote custom action. DLL: C:\Users\Test\AppData\Local\Temp\MSI9328.tmp, Entrypoint: EnumerateSqlServers
MSI (c) (2C:E8) [11:16:42:385]: Cloaking enabled.
MSI (c) (2C:E8) [11:16:42:385]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (2C:E8) [11:16:42:385]: Connected to service for CA interface.
Action ended 11:16:42: EnumerateSqlServersAction. Return value 3.
DEBUG: Error 2896: Executing action EnumerateSqlServersAction failed.
The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2896. The arguments are: EnumerateSqlServersAction, ,
Action ended 11:16:42: WelcomeDlg. Return value 3.
MSI (c) (2C:44) [11:16:42:635]: Doing action: FatalError
Action 11:16:42: FatalError.
Action start 11:16:42: FatalError.
Action 11:16:42: FatalError. Dialog created
Action ended 11:16:43: FatalError. Return value 2.
Action ended 11:16:43: INSTALL. Return value 3.
MSI (c) (2C:44) [11:16:43:370]: Destroying RemoteAPI object.
MSI (c) (2C:E8) [11:16:43:385]: Custom Action Manager thread ending.
我确实尝试过这样的空行动:
[CustomAction]
public static ActionResult CustomAction1(Session session)
{
MessageBox.Show("");
return ActionResult.Success;
}
该行动有效!它显示一个空的消息框。
编辑:经过大量测试后,我发现问题出在enumSQLServer上,当我评论这条线路时它是否有效。
SmoApplication.EnumAvailableSqlServers(false);
答案 0 :(得分:2)
使用详细(/ l * v)设置记录安装程序。我希望看到更多,包括.NET错误堆栈跟踪。您可能错过了Visual Studio计算机上的依赖关系,而不是您的清洁测试计算机。
最可能缺少的依赖项是Microsoft.SqlServer.Smo.dll。在自定义操作项目中,检查此引用是否设置为CopyLocal = true,如果不是则设置它。
答案 1 :(得分:0)
您是否已尝试使用提升权限运行设置(右键单击设置并选择“以管理员身份运行”)?
据我所知,SmoApplication.EnumAvailableSqlServers(false)需要提升权限。
还要检查.wxs文件中“产品”节点中自定义操作的定义。
以下定义应该有效:
<CustomAction
Id="EnumerateSqlServers"
BinaryKey="YOUR BINARY KEY"
DllEntry="EnumerateSqlServers"
Execute="immediate"
Return="check"/>
还可以尝试以下测试目的:
<InstallUISequence>
<Custom Action="EnumerateSqlServers"
Before="ExecuteAction"
Overridable="yes">NOT Installed</Custom>
</InstallUISequence>
答案 2 :(得分:0)
就我而言,这是在安装和卸载时发生的。
我们正在做的是加密作为参数传入的连接字符串。
安装强>
此操作失败,因为我无权访问我们仍在处理的已安装配置文件。 我希望WiX更易于使用或拥有更好的文档。
卸载强>
因为我们没有自定义操作的任何条件,所以它在卸载期间也在运行,并且在尝试加载不再存在的配置文件时失败。
解决方案:使用NOT Installed AND NOT REMOVE
。 How to execute custom action only in install (not uninstall)