3

下面的 xml 在 C:\Programfiles 下创建指定的文件夹,但我想在 D:\MySetupFolder\ 中创建 (SomeFolder\MyApp) 文件夹,如何使用 WIX 创建它?

<Directory Id="TARGETDIR" Name="SourceDir">
**<Directory Id="$(var.PlatformProgramFilesFolder)">**      
        <Directory Id="INSTALLFOLDERLOCATION" Name="SomeFolder">
                <Directory Id="INSTALLLOCATION" Name="MyApp">
</Directory>
</Directory>
</Directory>
4

1 回答 1

2

将rootdrive的值设置为您想要的驱动器

<CustomAction Id='SetRootDrive' Property='ROOTDRIVE' Value='[%SystemDrive]\'/>

默认情况下,系统驱动器将是操作系统使用的默认驱动器

添加了调用“SetRootDrive”操作的代码:您需要从 InstallUISequence 调用它

<InstallUISequence>
  <Show Dialog="MyWelcomeDlg" Before="CostFinalize">NOT Installed</Show>
  <!-- App search is what does FindInstallLocation, and it is dependent on FindRelatedProducts -->
  <AppSearch After="FindRelatedProducts"/>
  <Custom Action="SetRootDrive" Before="CostInitialize"></Custom>
</InstallUISequence>
于 2013-01-16T17:40:33.660 回答