将 .bat 文件添加到 Visual Studio 中的 wix 安装项目
我正在使用 wix 安装项目来安装我的 asp.net 应用程序。我在安装项目中放置了一个简单的 .bat 文件,它可以帮助我在目标计算机上进行安装。
.bat 文件非常简单,只需调用 msiexec 然后暂停即可。
每当我构建安装项目时,.bat 文件似乎都会损坏。例如,如果我尝试运行 bat 文件,它会显示以下内容:
D:\Temp\MySetupProject\bin\Debug>n++msiexec /i MySetupProject.msi /l*vx Install.txt “n++msiexec”不被识别为内部或外部命令, 可运行的程序或批处理文件。
D:\Temp\MySetupProject\bin\Debug>pause 按任意键继续。 。 。
有谁知道为什么“n++”出现在 msiexec 命令之前?
I'm using a wix setup project to install my asp.net application. I put a simple .bat file in the setup project that helps me to install on destination machines.
The .bat file is very simple with just a call to msiexec and then a pause.
Whenever I build my setup project, the .bat file seems to get corrupted. For example, if I try to run the bat file, it says the following:
D:\Temp\MySetupProject\bin\Debug>n++msiexec /i MySetupProject.msi /l*vx Install.txt
'n++msiexec' is not recognized as an internal or external command,
operable program or batch file.
D:\Temp\MySetupProject\bin\Debug>pause
Press any key to continue . . .
Does anyone know why the "n++" is showing up before the msiexec command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我明白了这一点。文件的编码是 UTF-8 加签名,而不仅仅是 UTF-8。改变这个解决了这个问题。
I figured this out. The encoding on the file was UTF-8 plus signature rather than just UTF-8. Changing this fixed the issue.
这只是一个猜测,但“msiexec”可能被视为保留字(因为,据推测,您正在让 msi 调用mis)。如果是这样,您可能会发现是否需要转义字符来指示这一点,或者代码是否需要其他方法来进行此类冗余调用。
This is only a guess, but "msiexec" might be being treated as a reserved word (since, preseumably, you are having msi call mis). If so, you might have find if escape characters are required to indicate this, or if some other method is required for the code to make such redundant calls.