我正在electron-builder
为我的电子应用程序创建 NSIS Windows 安装程序。在安装过程中,我需要运行包含DPInst.exe
的以确保安装驱动程序。
我可以说electron-builder
我包含了一个自定义脚本:
"nsis": {
"include": "build/installer.nsh"
}
但我不知道应该在installer.nsh
文档说我需要类似的东西:
!macro customInstall
!system "echo '' > ${BUILD_RESOURCES_DIR}/customInstall"
!macroend
而且我已经看到了一些 NSIS 命令可以运行DPInst.exe
ExecWait '"$INSTDIR\resources\DPInst.exe" /sw'
但我不确定如何组合它们,因为我无法计算出语法!