WiX を使用して、Windows の [スタート] メニューにサブ フォルダー (複数レベルの深さ) を作成するにはどうすればよいですか?
現在、ショートカットを [スタート] メニューに配置できますが、プログラムのすぐ下のフォルダー ([スタート]、[プログラム]、[MyFolder]) にのみ配置できますが、ショートカットをより深くネストしたい ([スタート]、[プログラム]、[MyPlatform]、[MyProduct] など)。いろいろな組み合わせを試しましたが、残念です。
<DirectoryRef Id="StartMenuMyProduct">
<Component Id="ApplicationShortcut" Guid="{PUT-SOME-GUID-HERE}">
<Shortcut Id="ApplicationStartMenuShortcut"
Name="Configure My Product"
Description="Add or remove this and that"
Target="[MYPRODUCTDIR]ConfigureMyProduct.exe"
WorkingDirectory="MYPRODUCTDIR"/>
<RemoveFolder Id="StartMenuMyProduct"
On="uninstall"/>
<RemoveFolder Id="StartMenuMyPlatform"
On="uninstall"/>
<RegistryValue Root="HKCU"
Key="SOFTWARE\MyCompany\MyPlatform\My Product"
Name="Installed"
Type="integer"
Value="1"
KeyPath="yes"/>
</Component>
</DirectoryRef>
<!-- Shortcut to the configuration utility in the Windows Start menu -->
<Directory Id="ProgramMenuFolder">
<!--<Directory Id="StartMenuMyPlatform" Name="MyPlatform">-->
<Directory Id="StartMenuMyProduct" Name="My Product" />
<!--</Directory>-->
</Directory>