Installshield 2009 安装程序拒绝为第二个用户进行配置(直到最近才工作)
多年来我们使用 installshield 来交付我们的软件。自我们软件的最新版本以来,会发生以下情况:
为“所有用户”安装程序后,当受限用户登录时,他会在桌面上看到我们的应用程序图标。第一次双击时,会出现“配置”对话框。在最近的版本中,一段时间后对话框消失,我们的程序开始运行。现在,该过程中止并显示一条消息:“该功能托管在不可用的网络资源上”。我们的程序没有启动。但是当我们手动创建 .exe 文件的快捷方式时,一切都很好。
我们最近没有对安装程序项目进行任何修改(除了更改版本号)。我们还拒绝安装更新。
问题:
- 可能是什么问题?
- 如何调试安装程序?
Since years we use installshield to deliver our software. Since the last Version of our software the following happens:
After installing the program for "all users", when a restricted user logs in, he sees our applications Icon on the desktop. When double clicking it the first time a dialog appears "Configuring ". In recent versions after a while the dialog disappeared and our program stared. Now the process is aborted with a message: "The function is hosted on a unavailable network resource". Our program does not start. But when we create a shortcut to the .exe file by hand everything's fine.
We did not make any modifications to the installer project recently (besides changing the Version number). We also denied to install updates.
Questions:
- What can the problem be?
- How can i debug a installer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不太确定 Installshield(我使用 Wise),但您应该检查以下内容:
在 MSI 数据库的“属性”表中将 MSI 属性“ALLUSERS”设置为 1。有关更多详细信息,请参阅 Windows Installer SDK 文档。这可确保所有用户获得启动应用程序的快捷方式。
致电您的安装人员
MSIEXEC.EXE /v MyInstall.MSI
来自命令行的
(这会将日志记录设置为详细) - 可能会有所帮助!利亚姆
Not so sure about Installshield (I use Wise) but you should check the following:
Set the MSI Property "ALLUSERS" to 1 in the "Property" table of the MSI database. See Windows Installer SDK documentation for more details. This ensures that all users get a shortcut for launching the application.
Call your installer with
MSIEXEC.EXE /v MyInstall.MSI
from the command line (this sets the logging to verbose) - might help!
Liam