自动设置控制台 xy 位置
java程序需要显示才能工作,因此可能无法使用sw_hide或任何隐藏命令,如何将控制台的位置偏移到屏幕之外? NSIS 能做到吗?
The java program need to be display for it to work, so may not use sw_hide or any hide command, how do I offset the position of the console out of the screen? Is NSIS is able to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 nsExec::Exec 而不是 ExecWait。它将隐藏控制台输出。您还可以使用 nsExec::ExecToLog 将输出直接打印到 NSIS 日志中。
其他替代方案是 ExecCmd 和 ExecDos 插件。 nsExec 与 NSIS 捆绑在一起。
Use nsExec::Exec instead of ExecWait. It will hide the console output. You can also use nsExec::ExecToLog to get the output printed directly into the NSIS log.
Other alternatives are the ExecCmd and ExecDos plug-ins. nsExec is bundled with NSIS.