x64.nsh 不工作

发布于 2024-10-22 06:50:55 字数 291 浏览 5 评论 0原文

我在网上遇到了一段代码...
我的机器中有 64.nsh,作为示例,我在代码中包含以下内容:

${If} ${RunningX64}  
MessageBox MB_OK "running on x64"  
${EndIf}  

它返回:

!插入宏:
_If !insertmacro: 宏“_If”需要 4 个参数,传递了 2 个!

你能帮忙吗?
提前致谢!

I have encountered a piece of code in the web...
I have 64.nsh in my machine and as an example I have included in my code the following:

${If} ${RunningX64}  
MessageBox MB_OK "running on x64"  
${EndIf}  

And it returns:

!insertmacro:
_If  !insertmacro: macro "_If" requires 4 parameter(s), passed 2!

Could you help?
Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

苏璃陌 2024-10-29 06:50:55

将文件放在系统上还不够,您需要在代码中包含该文件:

!include "x64.nsh"
${If} ${RunningX64}
MessageBox MB_OK "running on x64"
${EndIf} 

Having the file on your system is not enough, you need to include the file in your code:

!include "x64.nsh"
${If} ${RunningX64}
MessageBox MB_OK "running on x64"
${EndIf} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文