维克斯工具集:在创建磁盘根目录下(系统盘或C:\\)和内复制文件(Wix toolset: crea

2019-08-21 05:14发布

我知道里面计算器类似的问题:

维克斯:在WixUI_InstallDir默认目录 ,

WIX安装根目录和版本 ,

是否有可能在维克斯两根目录 ,

将文件复制到定制目录在另一个分区 ,

如何创建在维克斯目录?

然而,没有人给出了一个简单和直接的代码来创建一个文件夹内部C:\文件夹中(不硬编码的,但应该是根磁盘或系统磁盘或任何你调用一个包含Windows文件夹的磁盘),以及复制文件在里面。

换句话说如何维克斯创建C:\ MynewDir \ example.jar文件夹?

下面是我的尝试:

<?xml version="1.0" encoding="UTF-8"?>
<!-- WiX installer MyProgram by Mark Seuffert -->
<?define ProductVersion = "13.1.2.3"?>
<?define ProductUpgradeCode = "12345678-1234-1234-1234-111111111112"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="*" UpgradeCode="$(var.ProductUpgradeCode)" Name="MyProgram" Version="$(var.ProductVersion)" Manufacturer="COMPANY" Language="1033">
        <Package InstallerVersion="200" Compressed="yes" Comments="Windows Installer Package" />
        <Media Id="1" Cabinet="product.cab" EmbedCab="yes" />

        <Directory Id="TARGETDIR" Name="SourceDir">
            <Directory Id="ProgramFilesFolder">
                <Directory Id="INSTALLDIR" Name="MyProgram">
                    <Component Id="ApplicationFiles" Guid="12345678-1234-1234-1234-222222222222">
                        <File Id="ApplicationFile1" Source="C:\Users\user\Desktop\myprogram.exe" />
                    </Component>
                </Directory>
            </Directory>

            <Directory Id="ANOTHERLOCATION" FileSource="C:\MynewDir">
            </Directory> 
        </Directory>

        <DirectoryRef Id="ANOTHERLOCATION" FileSource="C:\MynewDir">
          <Component Id="ApplicationFiles2" Guid="12345678-1234-1234-1235-111111111111">
                    <File Id="ApplicationFile2" Source="C:\Users\user\Desktop\InstallerFiles_13_4_9_3\myprogramLauncher.jar" />
                    <CreateFolder />
            </Component>
        </DirectoryRef>

        <InstallExecuteSequence>
            <RemoveExistingProducts After="InstallValidate" />
        </InstallExecuteSequence>
        <Feature Id="DefaultFeature" Level="1">
            <ComponentRef Id="ApplicationFiles2" />
            <ComponentRef Id="ApplicationFiles" />
        </Feature>
    </Product>
</Wix>

编辑1:闫斯克利亚连科刚刚找到了我一直在寻找,这就是WindowsVolume(我不知道我怎么错过了它里面http://msdn.microsoft.com/en-us/library/windows/desktop/aa370905%28v = vs.85%29.aspx#system_folder_properties微软文件)。

与FileSource = “[WindowsVolume] MynewDir” ???:然而如何更换FileSource = “\ MynewDir C” 因为很显然,即使WINDOWSVOLUME选择所产生的音量始终是d:\我的电脑拥有更多的可用空间:(

编辑2我更新使用颜斯克利亚连科的第二个样品我的代码(@@@@ newpart的@@@@标识了代码不同部分),但是行为还是一样,安装程序将会有更多自由空间的磁盘(d:在\我情况下),而不是C:\其中窗口是..

<?xml version="1.0" encoding="UTF-8"?>
<!-- WiX installer MyProgram by Mark Seuffert -->
<?define ProductVersion = "13.1.2.3"?>
<?define ProductUpgradeCode = "12345678-1234-1234-1234-111111111112"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
    <Product Id="*" UpgradeCode="$(var.ProductUpgradeCode)" Name="MyProgram" Version="$(var.ProductVersion)" Manufacturer="COMPANY" Language="1033">
        <Package InstallerVersion="200" Compressed="yes" Comments="Windows Installer Package" />
        <Media Id="1" Cabinet="product.cab" EmbedCab="yes" />

        <Directory Id="TARGETDIR" Name="SourceDir">
            <Directory Id="ProgramFilesFolder">
                <Directory Id="INSTALLDIR" Name="MyProgram">
                    <Component Id="ApplicationFiles" Guid="12345678-1234-1234-1234-222222222222">
                        <File Id="ApplicationFile1" Source="C:\Users\user\Desktop\myprogram.exe" />
                    </Component>
                </Directory>
            </Directory>

            <Directory Id="ANOTHERLOCATION" FileSource="C:\MynewDir">
             @@@@newpart@@@@<Component Id="ApplicationFiles2" Guid="12345678-1234-1234-1235-111111111111">
                    <File Id="ApplicationFile2" Source="C:\Users\user\Desktop\InstallerFiles_13_4_9_3\myprogramLauncher.jar" />
                    <CreateFolder />
               </Component>
            </Directory> 
        </Directory>

        @@@@newpart@@@@<SetDirectory Id="ANOTHERLOCATION" Value="[WINDOWSVOLUME]" />

        <InstallExecuteSequence>
            <RemoveExistingProducts After="InstallValidate" />
        </InstallExecuteSequence>
        <Feature Id="DefaultFeature" Level="1">
            <ComponentRef Id="ApplicationFiles2" />
            <ComponentRef Id="ApplicationFiles" />
        </Feature>
    </Product>
</Wix>

EDIT 3的最后一个代码段以上然而应该工作WINDOWSVOLUME的壳体变为WindowsVolume的建议。

Answer 1:

这是根据您的验证码。(请注意在代码中的注释)一个完整的工作方案:

<?define ProductVersion = "13.1.2.3"?>
<?define ProductUpgradeCode = "12345678-1234-1234-1234-111111111112"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" UpgradeCode="$(var.ProductUpgradeCode)" Name="MyProgram"
         Version="$(var.ProductVersion)" Manufacturer="COMPANY" Language="1033">
    <Package InstallerVersion="200" Compressed="yes" />
    <Media Id="1" Cabinet="product.cab" EmbedCab="yes" />

    <Directory Id="TARGETDIR" Name="SourceDir">
        <Directory Id="ProgramFilesFolder">
            <Directory Id="INSTALLDIR" Name="MyProgram" />
           <Directory Id="ANOTHERLOCATION" />
        </Directory>
    </Directory>

    <!-- The casing of 'ANOTHERLOCATION' and 'WindowsVolume' is very important here.
         Replace 'MyNewDir' with the correct name of the folder you want on
         WindowsVolume.
    -->
    <SetDirectory Id="ANOTHERLOCATION" Value="[WindowsVolume]MyNewDir" />


    <Feature Id="DefaultFeature" Level="1">
      <Component Directory="INSTALLDIR">
        <File Id="ApplicationFile1" Source="C:\Users\user\Desktop\myprogram.exe" />
      </Component>
      <Component Directory="ANOTHERLOCATION">
        <File Id="ApplicationFile2" Source="C:\Users\user\Desktop\InstallerFiles_13_4_9_3\myprogramLauncher.jar" />
      </Component>
    </Feature>
</Product>
</Wix>


Answer 2:

好吧,你可以这样做:

<Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="WindowsVolume">
    <Directory Id="MyNewDirId" Name="MyNewDir">
      <Component Id="SampleComponent" Guid="...">
        <File Id="SampleFile" Source="..." KeyPath="yes" />
      </Component>
    </Directory>
  </Directory>
</Directory>

这将安装文件到Windows驱动器上的文件夹MyNewDir(C:在我的情况)。 但是,它会抱怨使用WindowsVolume以这种方式可能有意想不到的副作用。

为了满足这一验证,可以改变样品到:

<Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="MyNewDirId" Name="MyNewDir">
    <Component Id="SampleComponent" Guid="...">
      <File Id="SampleFile" Source="..." KeyPath="yes" />
    </Component>
  </Directory>
</Directory>

<SetDirectory Id="MyNewDirId" Value="[WindowsVolume]MyNewDir" />

这看起来更像是一个黑客,但结果是一样的。 说实话,我不明白那些“意想不到的副作用”可能是什么。 也许,Windows安装程序大师可以在此提供一些线索。

希望这可以帮助。



文章来源: Wix toolset: create directory in root disk (system disk or c:\\) and copy files inside