将 .bat 文件添加到 Visual Studio 中的 wix 安装项目

发布于 2024-11-03 11:44:47 字数 476 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

⒈起吃苦の倖褔 2024-11-10 11:44:47

我明白了这一点。文件的编码是 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.

陌伤ぢ 2024-11-10 11:44:47

这只是一个猜测,但“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文