English 中文(简体)
扩大后的信息社会世界首脑会议原始目录
原标题:Extended NSIS plugins directory
  • 时间:2012-05-17 21:10:18
  •  标签:
  • nsis

我正在为2010年全球疫苗倡议建设一个美好的国家,我热爱建立该项目,以便从简单的NSI档案中自动建立试验。

除我外,所有似乎都是罚款的,但我可以说明,如何使国家信息社会首脑会议在我的项目产出夹中寻找我所花的金,而不是<代码>C:Program 文件(x86)NSISPlugins*.dll。

我是否可以在我的国家倡议书中提出任何指令,使国家峰会能够看一看我在“标准皮条块”之外建造的新鲜花? 在我每次要测试时,必须复制我的《刑法》似乎是很奇怪的。

感谢任何帮助。

最佳回答

您可使用!addplugindir号指令,见

问题回答

正如其他人提到的那样,!addplugindir Directive in their NSI script file will do the trick,而且你可以界定一个变量,通过/D的指挥线指令。

关于在贵国国家情报和安全局档案中加入该法典的问题,你需要这样的内容:

!ifdef EXTRANSISPLUGINSFOLDER
  !addplugindir "${EXTRANSISPLUGINSFOLDER}"
!endif

在指挥线上,你可以这样说:

makensis.exe /DEXTRANSISPLUGINSFOLDER=C:somefoldermoreplugins YourInstallerScript.nsi

在界定额外文件时,你可能发现,在双轨道路上有任何空间会造成问题,而使用环绕道路的引言则无助于解决问题。 为此,在Windows码头使用dir /x的指挥系统,将8.3份监督事务司名称标明有空间的夹名。 这将有助于你建立包含空间的双管齐下的道路。 (例如C:Program文档常常从C根中填入<编码>dir /x时成为C:PROGRA~1:

May have missed the point here but could you not have used an XCOPY post build event to copy the output to the NSIS plugins directory?





相关问题
NSIS Vs WiX Vs AnyOther Installation Package

Need to create a Installation Package that would need to a) install a Database, b) create database and tables, c) installed already created installable in Visual Studio, d) create ODBC datasource, ...

how to create a SETUP.EXE wrapper for an MSI file using NSIS

I want to wrap a existing msi installer file into NSIS installer executable. Because there is not any option to change the icon of the msi file. I just want to customize the icon of the output setup....

Adding custom pages to uninstaller

I am creating a custom page in my uninstaller as follows: UninstPage custom mypageCreate ..... ..... ..... Function mypageCreate ;call nsDialogs or InstallOptions functions here FunctionEnd ...

Writing upgradeable msi packages using WiX

I am writing a installer for an existing product, for which an earlier installer was written in NSIS (Nullsoft Scriptable Install System). I have to write an msi based installer for this product using ...

热门标签