如何使用 msilib 在目录 MSI 表中添加变量
我想在我使用 Python msilib 设计的设置应用程序中使用路径编辑控件。但我在 MSI 中收到错误消息:
The specified path is unavailable.
有人可以帮我找到这个原因吗?我认为我没有在目录表中添加任何可能导致错误的条目。我该如何使用 msilib 来做到这一点?
I want to use a path edit control in my setup application I am designing using Python msilib. But I am getting an error in the MSI saying:
The specified path is unavailable.
Can somebody help me find the reason for this? I think I haven't made any entry in the Directory table which can cause the error. How can I do it using msilib?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 MSI 错误:1314 http://msdn。 microsoft.com/en-us/library/aa372835(v=vs.85).aspx
如果您指定的路径无效,则可能会发生这种情况(也许您的名称中有一个空格,例如 C:\Program Files,并且应该将其括在引号中,例如“C:\Program Files”),或者如果您指定的路径已存在,也可能会发生此错误。
This is MSI error: 1314 http://msdn.microsoft.com/en-us/library/aa372835(v=vs.85).aspx
This can happen if the path that you've specified is invalid (perhaps you have a space in the name like C:\Program Files and should enclose it in quotes like "C:\Program Files") or this error can also happen if you are specifying a path that already exists.