web-dev-qa-db-ja.com

WiX3が私を夢中にさせる-デスクトップショートカットを作成しようとしています

WiX 3でインストールされているアプリがあります-インストールのほとんどは今では正常に機能しますが、デスクトップショートカットを機能させようとすると、頭が痛くなるようです...

アプリをインストールしていて、スタートメニューフォルダーにショートカットがあります。問題なく動作します。しかし、どうすればデスクトップショートカットを起動して実行できますか?

<Product Id="*" Name="....." UpgradeCode="MY-GUID">
  <Package Id="*" InstallerVersion="200" Compressed="yes" />
    <Media Id="1" Cabinet="foobar.cab" EmbedCab="yes" />
    <Property Id="ALLUSERS">1</Property>

    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="ProgramMenuFolder">
        <Directory Id="ApplicationProgramsFolder" Name="FooBar"/>
      </Directory>
      <Directory Id="DesktopFolder"  SourceName="Desktop"/>
      <Directory Id="ProgramFilesFolder">
         <Directory Id="FoobarDir" Name="FOOBAR">
            <Directory Id="INSTALLLOCATION" Name="FooApp">
              <Component Id="MainFiles" Guid=".....">
                <File Id="FooMainApp" Source="FooMainApp.exe" />
              </Component>
            </Directory>
         </Directory>
      </Directory>
    </Directory>
    ....
    <!-- this shortcut here works just fine ... -->
    <DirectoryRef Id="ApplicationProgramsFolder">
      <Component Id="AppShortcut" Guid="...">
         <Shortcut Id="ApplicationStartMenuShortcut"
                   Name="FooBarApp" Description="..."
                   Target="[INSTALLLOCATION]FooMainApp.exe"
                   WorkingDirectory="INSTALLLOCATION"/>
      </Component>
    </DirectoryRef>
    <!-- but this shortcut here never seems to work .. ... -->
    <DirectoryRef Id="DesktopFolder">
       <Component Id="DesktopShortcut" Guid="....." >
          <Shortcut Id="DesktopAppShortcut"
                    Advertise="no"
                    Name="FooBarApp"  Description="...."
                    Target="[INSTALLLOCATION]FooMainApp.exe"
                    WorkingDirectory="INSTALLLOCATION"/>
       </Component>
    </DirectoryRef>

私が繰り返し発生するエラーは次のとおりです。

ICE18:コンポーネントのKeyPath: 'DesktopShortcut'はディレクトリ: 'DesktopFolder'です。ディレクトリ/コンポーネントのペアは、CreateFoldersテーブルにリストされている必要があります。
ICE38:コンポーネントDesktopShortcutがユーザープロファイルにインストールされます。キーパスとして、ファイルではなく、HKCUの下のレジストリキーを使用する必要があります。
ICE43:コンポーネントDesktopShortcutにはアドバタイズされていないショートカットがあります。キーパスとして、ファイルではなく、HKCUの下のレジストリキーを使用する必要があります。

WiX 3/Windowsインストーラーがここで何を教えようとしているのかわかりません。

AppShortcutDesktopShortcutの両方のコンポーネントは、実際には「メイン」機能の一部です。問題はありません。ここで一体何が間違っているのか理解できません。

更新:わかりました。デスクトップショートカットにレジストリキーを追加しました。

<Component Id="DesktopShortcut" Guid="BF3587B4-F52E-411E-8814-CFCBF8201C0D">
    <RegistryKey Root="HKCU" Key="Software\Foo Inc\FooBarApp\Installed" 
                 Action="createAndRemoveOnUninstall">
       <RegistryValue Name="DTSC" Value="1" Type="integer" KeyPath="yes"/>
    </RegistryKey>
    <Shortcut Id="DesktopShortcut" Directory="DesktopFolder"
              Name="FooBar" WorkingDirectory="INSTALLLOCATION"
              Icon="foobar.ico" 
              Target="[INSTALLOCATION]FooMainApp.exe"/>
</Component>

これでICEメッセージは消えましたが、アプリをインストールしようとすると、エラー1909が発生します-ターゲットフォルダーが存在しないか、それに書き込む権限がありません(またはそのようなもの)

更新2:上記のサンプルコードはWin XPで機能しますが、Win Server2003では失敗し続けます:-(他にアイデアはありますか??

22
marc_s

これが私たちのライブプロダクションコードからの実用的な例です...

<Fragment>
    <Component Id="DesktopShortcut" Directory="APPLICATIONFOLDER" Guid="*">
        <RegistryValue Id="RegShortcutDesktop" Root="HKCU" 
                Key="SOFTWARE\ACME\settings" Name="DesktopSC" Value="1" 
                Type="integer" KeyPath="yes" />
        <Shortcut Id="desktopSC" Target="[APPLICATIONFOLDER]MyApp.exe"
                Directory="DesktopFolder" Name="My Application" 
                Icon="$(var.product).ico" IconIndex="0"
                WorkingDirectory="APPLICATIONFOLDER" Advertise="no"/>
    </Component>
</Fragment>
19
saschabeaumont

これは@saschabeaumontの回答に基づいていますが、WiXの初心者にとって役立つヒントがいくつかあることを願っています(誰もが学ぶのは悪夢ですか?)。

まず、ショートカットの詳細自体を含むフラグメントを作成します。

<Fragment>
<Component Id="DesktopShortcut" Directory="INSTALLFOLDER" Guid="*">
    <RegistryValue Id="RegShortcutDesktop" 
            Root="HKCU" 
            Key="Software\Company\ApplicationName"
            Name="DesktopSC"
            Value="1" 
            Type="integer"
            KeyPath="yes" />

    <Shortcut Id="desktopSC" 
            Target="[INSTALLFOLDER]ApplicationName.exe"
            WorkingDirectory="INSTALLFOLDER"
            Icon="icon.ico"
            Directory="DesktopFolder" 
            Name="ApplicationName" 
            Advertise="no"/>
</Component>
</Fragment>

次に、このフラグメントは次のようにProduct elementに含める必要があることに注意してください。

<Feature Id="ProductFeature" Title="Your Application Title" Level="1">
    ...
    <ComponentRef Id="DesktopShortcut" />
</Feature>

ProductFeatureには、ファイルなどの他のフラグメントや、プログラムメニューのショートカットフラグメントが含まれている可能性があります。

また、DesktopFolderにはTARGETDIR directory element内の参照が必要です(必要に応じてProgramMenuFolderなどの他のフォルダーが含まれる可能性が非常に高いです)。

<Directory Id="TARGETDIR" Name="SourceDir">
    ...
    <Directory Id="DesktopFolder" Name="Desktop"/>
</Directory>
8
noelicus

これらの各 [〜#〜] ice [〜#〜] メッセージは、基本的に同じことについて不平を言っています。ショートカットをインストールするコンポーネントには、 keypath としてレジストリエントリが必要です。 。これを修正するには、次のようなものをコンポーネントに追加します。

<RegistryValue Root="HKCU" Key="Software\MyCompany\MyApplicationName" 
    Name="desktopShortcut" Type="integer" Value="1" KeyPath="yes"/>

スタートメニューのショートカットをインストールするコンポーネントについても同じことが言えます。関連する ショートカットの作成に関するwixドキュメントのサンプル をご覧ください。

6
Wim Coenen

私の目的は、インターネットショートカットリンクを作成してデスクトップに配置することです。これが私のために働くコードです:

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.Microsoft.com/wix/2006/wi" xmlns:util="http://schemas.Microsoft.com/wix/UtilExtension">
    <Product Id="09F1B63D-FB03-43FD-A326-FD49F93D00C8" Name="TestProduct" Language="1033" Version="0.0.0.1" Manufacturer="WixEdit" UpgradeCode="6B2F9AB4-73A6-45CB-9EC4-590D1AAA6779">
        <Package Description="Test file in a Product" Comments="Simple test" InstallerVersion="200" Compressed="yes" />
        <Media Id="1" Cabinet="simple.cab" EmbedCab="yes" />
        <Directory Id="TARGETDIR" Name="SourceDir">
            <Directory Id="ProgramFilesFolder" Name="PFiles">
                <Directory Name="AAAA" Id="AAABBB">
                    <Component Id="AAAA">
                        <File Id="AAAA.EXE" Name="AAAA.exe" Source="U:\web\bin\x86\Release\AAAA.exe" />
                    </Component>
                </Directory>
            </Directory>
            <Directory Id="DesktopFolder">
                    <Component Id="StartMenuShortcuts" Guid="E8EDD7BC-9762-4C3D-8341-FAEC983D318A">
                        <RemoveFolder Id="ProgramMenuDir" On="uninstall" />
                        <RegistryValue Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Type="string" Value="" />
                        <util:InternetShortcut Id="WebsiteShortcut" Name="AAAA Website" Target="http://www.AAAA.com" />
                    </Component>
            </Directory>
        </Directory>
        <Feature Id="DefaultFeature" Title="Main Feature" Level="1">
            <ComponentRef Id="StartMenuShortcuts" />
            <ComponentRef Id="AAAA" />
        </Feature>
        <UI />
    </Product>
</Wix>

注:キャンドルおよびライトコマンドラインに以下を追加する必要があります:-ext WiXUtilExtension

2
Mason Zhang

これが2010年に利用可能であったかどうかはわかりませんが、これがWiX3.7での方法です。

<Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="DesktopFolder" SourceName="Desktop" />
  <Directory Id="MergeRedirectFolder">
    <Component Id="MyExeComponent" Guid="{PUT-GUID-HERE}">
      <File Id="MyExeFile" Source="$(var.ExeSourcePath)" KeyPath="yes">
        <Shortcut
          Id="DesktopShortcut"
          Directory="DesktopFolder"
          Name="$(var.ShortcutName)"
          WorkingDirectory="MergeRedirectFolder" />
      </File>
    </Component>
  </Directory>
</Directory>
0
Sean Hall