セットを使用してWixUI_Mondo
います。の「CompleteButton」ボタンを変更しましたSetupTypeDlg
:
<Control Id="ServerButton" Type="PushButton" X="40" Y="120" Width="80" Height="17" ToolTip="!(loc.SetupTypeDlgServerButtonTooltip)" Text="!(loc.SetupTypeDlgServerButton)">
<Publish Property="WixUI_InstallMode" Value="InstallServer">1</Publish>
<Publish Property="SERVICE" Value="[SERVSTR]">1</Publish>
<Publish Property="ADDLOCAL" Value="Feature1,Feature2,Feature3">1</Publish>
</Control>
<Property Id="ADDLOCAL" Secure="yes"></Property>
ServerButton
ログをプッシュすると、次のように表示されます。
(CLIENT) MSI (c) (1C:88) [15:28:49:154]: PROPERTY CHANGE: Adding ADDLOCAL property. Its value is 'Feature1,Feature2,Feature3'.
(UNKNOWN) Действие 15:28:49: ServStrDlg. Dialog created
(UNKNOWN) Действие 15:28:53: ShortsDlg. Dialog created
(UNKNOWN) Действие 15:28:55: VerifyReadyDlg. Dialog created
(CLIENT) MSI (c) (1C:88) [15:28:55:966]: Note: 1: 2727 2:
(UNKNOWN) Действие закончено 15:28:56: WelcomeDlg. Код возврата 1.
(CLIENT) MSI (c) (1C:DC) [15:28:56:076]: Doing action: ProgressDlg
(UNKNOWN) Действие 15:28:56: ProgressDlg.
(UNKNOWN) Начало действия 15:28:56: ProgressDlg.
(UNKNOWN) Действие 15:28:56: ProgressDlg. Dialog created
(UNKNOWN) Действие закончено 15:28:56: ProgressDlg. Код возврата 1.
(CLIENT) MSI (c) (1C:DC) [15:28:56:091]: Doing action: ExecuteAction
(UNKNOWN) Действие 15:28:56: ExecuteAction.
(UNKNOWN) Начало действия 15:28:56: ExecuteAction.
(CLIENT) MSI (c) (1C:DC) [15:28:56:091]: PROPERTY CHANGE: Adding SECONDSEQUENCE property. Its value is '1'.
(CLIENT) MSI (c) (1C:DC) [15:28:56:091]: Grabbed execution mutex.
(CLIENT) MSI (c) (1C:DC) [15:28:56:091]: Incrementing counter to disable shutdown. Counter after increment: 0
(CLIENT) MSI (c) (1C:DC) [15:28:56:091]: Switching to server: NETFRAMEWORK40CLIENT="#1"INSTALLLOCATION="some dir" TARGETDIR="C:\"
MANUFACTURERDIR="C:\Program Files\..\" CURRENTDIRECTORY="C:\.." CLIENTUILEVEL="0" CLIENTPROCESSID="6684" USERNAME="User" COMPANYNAME=".."
SOURCEDIR=".." ACTION="INSTALL" EXECUTEACTION="INSTALL" SECONDSEQUENCE="1" ROOTDRIVE="C:\" INSTALLLEVEL="1" ADDLOCAL=Feature4,Feature5,Feature6
Feature1、Feature2、Feature3 のレベルが 3 を超えています。合格の理由がわかりませんINSTALLLEVEL="1"
。
更新:
次の変更を加えましたが、結果は同じです。インストーラーは、クライアント側の INSTALLLEVEL,ADDLOCAL プロパティの値を変更しています。サーバー側: INSTALLLEVEL=11、ADDLOCAL は「レベル」属性が 11 以下の機能で構成されます。
<Control Id="ServerButton" Type="PushButton" X="40" Y="120" Width="80" Height="17" ToolTip="!(loc.SetupTypeDlgServerButtonTooltip)" Text="!(loc.SetupTypeDlgServerButton)">
<Publish Property="WixUI_InstallMode" Value="InstallServer">1</Publish>
<Publish Event="SetInstallLevel" Value="11">1</Publish>
<Publish Property="SERVICE" Value="[SERVSTR]">1</Publish>
<Publish Property="ADDLOCAL" Value="Feature1,Feature2,Feature3">1</Publish>
</Control>