如何获取 WiX 脚本中文件的位置
如何在命令行上创建引用文件的自定义操作?
我有正确访问 MYSQL 属性的自定义操作,但我还没有弄清楚访问已安装 sql 脚本的路径的咒语。
以下是 WiX 脚本的相关部分。 我正在尝试获取自定义操作来引用 MYSQL_SCRIPTS 文件的路径。
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLLOCATION" Name="MyProgram">
<Directory Id="DbSetupDir" Name="DbSetup">
<Component Id="SqlScripts" Guid="MYGUID">
<File Id="MYSQL_EXE" Source="mysql.exe" Vital="yes" />
<File Id="MYSQL_SCRIPTS" Source="MYSQL_SCRIPTS.sql" Vital="yes" />
</Component>
</Directory>
</Directory>
</Directory>
...
<CustomAction Id='LaunchFile'
FileKey='MYSQL_EXE'
ExeCommand='--host=[MYSQL_SERVER]
-u [MYSQL_USERNAME]
-P [MYSQL_PORT]
--password=[MYSQL_PASSWORD]
-e [DbSetupDir]\ALS_Scripts.sql'
Return='check'/>
How do I make a custom action that references a file on the command line?
I have the custom action accessing the MYSQL properties correctly, but I haven't figured out the incantation to access the path to the installed sql script.
Below are the relevant sections of the WiX script. I am trying to get the custom action to reference the path to MYSQL_SCRIPTS file.
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLLOCATION" Name="MyProgram">
<Directory Id="DbSetupDir" Name="DbSetup">
<Component Id="SqlScripts" Guid="MYGUID">
<File Id="MYSQL_EXE" Source="mysql.exe" Vital="yes" />
<File Id="MYSQL_SCRIPTS" Source="MYSQL_SCRIPTS.sql" Vital="yes" />
</Component>
</Directory>
</Directory>
</Directory>
...
<CustomAction Id='LaunchFile'
FileKey='MYSQL_EXE'
ExeCommand='--host=[MYSQL_SERVER]
-u [MYSQL_USERNAME]
-P [MYSQL_PORT]
--password=[MYSQL_PASSWORD]
-e [DbSetupDir]\ALS_Scripts.sql'
Return='check'/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 [#MYSQL_SCRIPTS] 转换,此将在安装时转换为这些文件的完整路径。
Use the [#MYSQL_SCRIPTS] conversion, this will translate to the full path of those files at setup time.