Nsis - 更改安装目录
目前我在安装目录中,例如 c:\Program File\My installer。我必须执行存储在其他位置(例如 c:\Program Files\Temp\example.bat)的 demo.bat 文件,我必须执行该文件转到该位置并执行,因为我的 example.bat 有一些仅存储在 Temp 文件夹中的支持文件。
我的问题是如何在编写 nsis 脚本时将安装目录更改为其他目录,执行 demo.bat 文件并返回到原来的安装目录?
Currently I am in my installing directory say c:\Program File\My installer.I have to execute a demo.bat file that is stored at some other location say c:\Program Files\Temp\example.bat,which I have to go at that location and execute coz my example.bat has some support files that are only stored in Temp folder.
My question is how can I change my installing directory to some other directory, execute demo.bat file and come back to my original installing directory while writing an nsis script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当谈论“安装目录”时,我假设您指的是批处理文件上下文中的当前/工作目录。
有多种方法可以执行批处理文件(展开 %comspec% 并将其传递给 Exec/ExecWait,或使用 exec 插件之一(nsExec、ExecDos、ExecCmd))
When talking about "installing directory", I assume you mean current/working directory in the context of a batch file.
There are several ways to execute a batch file (Expand %comspec% and pass it to Exec/ExecWait, or use one of the exec plugins (nsExec,ExecDos,ExecCmd))