gpt4 book ai didi

c# - 使用带参数的自定义操作时,MSI 安装程序找不到 InstallState

转载 作者:可可西里 更新时间:2023-11-01 07:45:31 26 4
gpt4 key购买 nike

首先,是的,我知道 VS 安装项目是邪恶的。这是我必须与之合作的。我也看到了几个相关的问题,但它们要么没有得到回答,要么与我的情况不相符,以至于答案无法奏效(或者他们喋喋不休地谈论 VS 安装项目的弊端和 WiX 的奇迹)。

我的应用程序有一个安装项目。复制文件效果很好,但我需要在复制文件后执行两个自定义操作。我创建了一个安装程序类并将其设置为安装项目中的自定义操作,它的框架(不起作用,只是显示一个对话框以便我可以附加调试器并四处查看)工作得很好。然后,我发现我需要将参数从 MSI 传递到我的自定义操作,以便我可以通过安装程序类的上下文属性访问它们。

这是安装程序类的当前代码(一些名称已更改以保护无辜者)。它基本上什么都不做,只是在正确的时间显示一个对话框(在复制文件之后但在提交安装之前):

namespace MyApp.Install.CustomSetup
{
[RunInstaller(true)]
public partial class MyAppCustomInstallActions : System.Configuration.Install.Installer
{
public MyAppCustomInstallActions()
{
InitializeComponent();
}

protected override void OnAfterInstall(IDictionary savedState)
{
try
{
base.OnAfterInstall(savedState);
if (MessageBox.Show(
"Custom Action OnAfterInstall successfully integrated. You can attach a debugger if desired. Do you wish to perform the custom actions?",
"DEBUG", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return;

SetEditablePermissionOnFolder(savedState);
SetApplicationSettingsFromWizard(savedState);
}
catch (Exception ex)
{
Context.LogMessage(ex.ToString());
throw;
}
}

private void SetApplicationSettingsFromWizard(IDictionary savedState)
{
//TODO: Implement
}

private void SetEditablePermissionOnViewerFolder(IDictionary savedState)
{
//TODO: Implement
}
}
}

计划是让自定义操作起作用,然后取出对话框并执行它。

这是安装项目自定义操作的安装操作的 CustomActionData 字符串:

/phonenumber=[phonenumber] /thirdpartyinstallpath1="[thirdpartyinstallpath1]\" /thirdpartyinstallpath2="[thirdpartyinstallpath2]\" /thirdpartyinstallpath3="[thirdpartyinstallpath3]\"

如果我不使用这个参数字符串也可以,但是我没有参数。如果我确实指定了这个字符串,安装程序会在我自己的对话框出现之前失败,并出现两个错误:"Exception occurred while initializing the installation: Could not load file or assembly 'file:///C:\Windows\SysWOW64\Files' 或其依赖项之一。系统找不到指定的文件“”和 “错误 1001。找不到文件 C:\Program Files (x86)\MyCompany\MyApp\MyApp。安装.CustomSetup.InstallState”

我做错了什么?我做错了什么吗?有没有不需要我使用一些不同的框架重新创建安装程序的解决方案?

编辑:我发现删除除电话号码参数以外的所有内容,并将 [PHONENUMBER] 放在引号中,允许传递该参数。但是,我无法传递任何目录路径;我尝试使用 [INSTALLDIR] 完全按照几个博客和演练所说的去做,没有骰子。

最佳答案

我遇到了类似的问题并通过以下方式解决了:

在自定义操作的属性上将 InstallerClass 设置为 false。

关于c# - 使用带参数的自定义操作时,MSI 安装程序找不到 InstallState,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5008675/

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