mirror of https://github.com/sipwise/jitsi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
720 lines
38 KiB
720 lines
38 KiB
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<!--
|
|
Jitsi, the OpenSource Java VoIP and Instant Messaging client.
|
|
|
|
Distributable under LGPL license.
|
|
See terms of license at gnu.org.
|
|
-->
|
|
|
|
<Product
|
|
Id="*"
|
|
Language="1033"
|
|
Codepage='$(var.codepage)'
|
|
Manufacturer="@APP_PUBLISHER@"
|
|
Name="@APP_NAME@"
|
|
UpgradeCode="@WIX_UPGRADE_CODE@"
|
|
Version="@PRODUCTBUILDVERSION@">
|
|
|
|
<!-- in Language we list all languages we support for localize -->
|
|
<Package
|
|
Comments="@PKG_COMMENTS@"
|
|
Compressed="yes"
|
|
Description="@PKG_DESCRIPTION@"
|
|
InstallerVersion="200"
|
|
InstallScope="perMachine"
|
|
Languages="1033,1036"
|
|
Manufacturer="@APP_PUBLISHER@"
|
|
Platform="$(var.Platform)"
|
|
SummaryCodepage='$(var.codepage)' />
|
|
|
|
<Upgrade Id="@WIX_UPGRADE_CODE@">
|
|
<UpgradeVersion
|
|
IncludeMaximum="yes"
|
|
IncludeMinimum="yes"
|
|
Language="1033,1036"
|
|
Maximum="@PRODUCTBUILDVERSION@"
|
|
Minimum="0.0.0.0"
|
|
Property="UPGRADEFOUND" />
|
|
</Upgrade>
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
|
|
<!--
|
|
The 64-bit MSI should default to "Program Files" and not
|
|
"Program Files (x86)".
|
|
-->
|
|
<?ifndef ProgramFilesFolder ?>
|
|
<?if $(var.Platform) = x64 ?>
|
|
<?define ProgramFilesFolder = ProgramFiles64Folder ?>
|
|
<?else ?>
|
|
<?define ProgramFilesFolder = ProgramFilesFolder ?>
|
|
<?endif ?>
|
|
<?endif ?>
|
|
|
|
<Directory Id="$(var.ProgramFilesFolder)" Name="PFiles">
|
|
<Directory Id="INSTALLDIR" Name="@APP_NAME@">
|
|
|
|
<!--
|
|
The variable Win64 which is of YesNoType may be used in
|
|
component-defines.wxi.
|
|
-->
|
|
<?if $(var.Platform) = x64 ?>
|
|
<?define Win64 = yes ?>
|
|
<?else ?>
|
|
<?define Win64 = no ?>
|
|
<?endif ?>
|
|
|
|
<?include component-defines.wxi ?>
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<Directory Id="DesktopFolder" Name="Desktop">
|
|
<Component Id="Component_DesktopShortcut" Guid="49BF78B5-155F-43F2-BCEC-3CABC0D9531E">
|
|
<Condition><![CDATA[CREATE_DESKTOP_SHORTCUT = 1]]></Condition>
|
|
<Shortcut
|
|
Id="Shortcut_Desktop"
|
|
Icon="Icon.ico"
|
|
Name="@APP_NAME@"
|
|
Target="[INSTALLDIR]@APP_LAUNCHER_NAME@.exe"
|
|
WorkingDirectory="INSTALLDIR" />
|
|
<RegistryValue
|
|
Key="Software\Microsoft\@APP_NAME@"
|
|
KeyPath="yes"
|
|
Name="DesktopShortcut"
|
|
Root="HKCU"
|
|
Type="integer"
|
|
Value="1" />
|
|
</Component>
|
|
</Directory>
|
|
<Directory Id="ProgramMenuFolder" Name="Programs">
|
|
<Component Id="Component_StartMenuShortcut" Guid="6B8CDA4E-16C9-4AF4-B338-CBA4775ADD0D">
|
|
<Condition><![CDATA[CREATE_START_MENU_SHORTCUT = 1]]></Condition>
|
|
<Shortcut
|
|
Id="Shortcut_StartMenu"
|
|
Icon="Icon.ico"
|
|
Name="@APP_NAME@"
|
|
Target="[INSTALLDIR]@APP_LAUNCHER_NAME@.exe"
|
|
WorkingDirectory="INSTALLDIR" />
|
|
<RegistryValue
|
|
Key="Software\Microsoft\@APP_NAME@"
|
|
KeyPath="yes"
|
|
Name="StartMenuShortcut"
|
|
Root="HKCU"
|
|
Type="integer"
|
|
Value="1" />
|
|
</Component>
|
|
</Directory>
|
|
<Directory Id="StartupFolder" Name="Startup">
|
|
<Component Id="Component_StartupShortcut" Guid="5059067F-16B1-435A-84B4-FC16CB5CEDA2">
|
|
<Condition><![CDATA[CREATE_STARTUP_SHORTCUT = 1]]></Condition>
|
|
<Shortcut
|
|
Id="Shortcut_Startup"
|
|
Icon="Icon.ico"
|
|
Name="@APP_NAME@"
|
|
Target="[INSTALLDIR]@APP_LAUNCHER_NAME@.exe"
|
|
WorkingDirectory="INSTALLDIR" />
|
|
<RegistryValue
|
|
Key="Software\Microsoft\@APP_NAME@"
|
|
KeyPath="yes"
|
|
Name="StartupShortcut"
|
|
Root="HKCU"
|
|
Type="integer"
|
|
Value="1" />
|
|
</Component>
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<Feature Id="Universe" Level="1" Title="@APP_NAME@">
|
|
<?include component-refs.wxi ?>
|
|
|
|
<ComponentRef Id="Component_DesktopShortcut" />
|
|
<ComponentRef Id="Component_StartMenuShortcut" />
|
|
<ComponentRef Id="Component_StartupShortcut" />
|
|
|
|
<ComponentGroupRef Id="ComponentGroup_RegistryEntries" />
|
|
<ComponentGroupRef Id="ComponentGroup_DefaultOverrides" />
|
|
</Feature>
|
|
|
|
<!--
|
|
If the Media is uncompressed, the (binary) patches on the resulting MSI will
|
|
be smaller in comparison to the case of compressed Media. Of course, if the
|
|
Media is uncompressed, the resulting MSI will be larger. In order to solve the
|
|
latter problem, we will compress the resulting MSI upon embedding it into the
|
|
setup bootstrapper.
|
|
-->
|
|
<Media Id="1" Cabinet="Data1.cab" CompressionLevel="@WIX_COMPRESS_LEVEL@" EmbedCab="yes" />
|
|
|
|
<UI>
|
|
<UIRef Id="WixUI_CInstallDir" />
|
|
|
|
<TextStyle Id="GreyText" Blue="127" FaceName="Ms Shell Dlg" Green="127" Red="127" Size="8" />
|
|
<TextStyle Id="WhiteText" Blue="240" FaceName="Ms Shell Dlg" Green="240" Red="240" Size="9"/>
|
|
|
|
<!-- Modified ExitDialog -->
|
|
<Dialog Id="CExitDialog" Width="370" Height="270" Title="!(loc.ExitDialog_Title)">
|
|
<Control Id="Finish" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUIFinish)" />
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUICancel)" />
|
|
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.ExitDialogBitmap)" />
|
|
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
<Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="40" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogDescription)" />
|
|
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ExitDialogTitle)" />
|
|
<Control Id="OptionalText" Type="Text" X="135" Y="110" Width="220" Height="80" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="[WIXUI_EXITDIALOGOPTIONALTEXT]">
|
|
<Condition Action="show">WIXUI_EXITDIALOGOPTIONALTEXT AND NOT Installed</Condition>
|
|
</Control>
|
|
<Control Id="OptionalCheckBoxText" Type="Text" X="150" Y="190" Width="205" Height="40" Hidden="yes" Transparent="yes" NoPrefix="yes" Text="[WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT]">
|
|
<Condition Action="show">WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT AND NOT Installed</Condition>
|
|
</Control>
|
|
<Control Id="OptionalCheckBox" Type="CheckBox" X="135" Y="190" Width="10" Height="10" Hidden="yes" Property="WIXUI_EXITDIALOGOPTIONALCHECKBOX" CheckBoxValue="1">
|
|
<Condition Action="show">WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT AND NOT Installed</Condition>
|
|
</Control>
|
|
</Dialog>
|
|
|
|
<!-- Modified WelcomeDlg -->
|
|
<Dialog Id="CWelcomeDlg" Width="370" Height="270" Title="!(loc.WelcomeDlg_Title)">
|
|
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" />
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
|
|
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
|
|
</Control>
|
|
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.WelcomeDlgBitmap)" />
|
|
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
<Control Id="WelcomeText1" Type="Text" X="135" Y="155" Width="220" Height="40" Transparent="yes" NoPrefix="yes" Text="!(loc.WelcomeText1)" />
|
|
<Control Id="WelcomeText2" Type="Text" X="135" Y="190" Width="220" Height="30" Transparent="yes" NoPrefix="yes" Text="!(loc.WelcomeText2)" />
|
|
<Control Id="WelcomeText3" Type="Text" X="135" Y="220" Width="220" Height="14" Transparent="yes" NoPrefix="yes" Text="!(loc.WelcomeText3)" />
|
|
<Control Id="Description" Type="Text" X="135" Y="80" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.WelcomeDlgDescription)" />
|
|
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.WelcomeDlgTitle)" />
|
|
</Dialog>
|
|
|
|
<Dialog Id="ShortcutsAndRegistryDlg" Width="370" Height="270" Title="!(loc.ShortcutsAndRegistryDlg_Title)">
|
|
|
|
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.ShortcutsAndRegistryDlgBannerBitmap)" />
|
|
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.ShortcutsAndRegistryDlgTitle)" />
|
|
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.ShortcutsAndRegistryDlgDescription)" />
|
|
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
|
|
|
|
<Control Id="ShortcutGroup" Type="GroupBox" X="20" Y="50" Width="330" Height="50" Text="!(loc.ShortcutsAndRegistryDlg_CreateShortcuts)" />
|
|
<Control Id="StartMenuShortcutCheckBox" Type="CheckBox" X="25" Y="65" Width="320" Height="15" Property="CREATE_START_MENU_SHORTCUT" CheckBoxValue="1" Text="!(loc.ShortcutsAndRegistryDlg_CreateStartMenu)" />
|
|
<Control Id="DesktopShortcutCheckBox" Type="CheckBox" X="25" Y="80" Width="320" Height="15" Property="CREATE_DESKTOP_SHORTCUT" CheckBoxValue="1" Text="!(loc.ShortcutsAndRegistryDlg_CreateDesktop)" />
|
|
|
|
<Control Id="VeriousGroup" Type="GroupBox" X="20" Y="105" Width="330" Height="75" Text="!(loc.ShortcutsAndRegistryDlg_VariousSettings)" />
|
|
<Control Id="StartupShortcutCheckBox" Type="CheckBox" X="25" Y="120" Width="320" Height="15" Property="HAS_STARTUP_REGISTRY" CheckBoxValue="1" Text="!(loc.ShortcutsAndRegistryDlg_CreateAutoStart)" />
|
|
<Control Id="DisableUpdatesCheckCheckBox" Type="CheckBox" X="25" Y="135" Width="320" Height="15" Property="CREATE_DISABLE_UPDATES_CHECK" CheckBoxValue="1" Text="!(loc.ShortcutsAndRegistryDlg_DisableUpdates)" />
|
|
<Control Id="DefaultIMApplicationCheckBox" Type="CheckBox" X="25" Y="150" Width="320" Height="25" Property="SET_DEFAULT_IM_APP" CheckBoxValue="1" Text="!(loc.ShortcutsAndRegistryDlg_DefaultIMApp)" />
|
|
|
|
<Control Id="RegistryGroup" Type="GroupBox" X="20" Y="185" Width="330" Height="45" Text="!(loc.ShortcutsAndRegistryDlg_AssociateProtocols)" />
|
|
<Control Id="SipRegistryEntriesCheckBox" Type="CheckBox" X="25" Y="200" Width="320" Height="15" Property="CREATE_SIP_REGISTRY_ENTRIES" CheckBoxValue="1" Text="&SIP" />
|
|
<Control Id="XmppRegistryEntriesCheckBox" Type="CheckBox" X="25" Y="215" Width="320" Height="15" Property="CREATE_XMPP_REGISTRY_ENTRIES" CheckBoxValue="1" Text="&XMPP" />
|
|
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
|
|
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" />
|
|
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
|
|
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
|
|
</Control>
|
|
</Dialog>
|
|
|
|
<Dialog Id="CleanSweepDlg" Width="370" Height="270" Title="!(loc.CleanSweepDlg_Title)">
|
|
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" />
|
|
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)" />
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
|
|
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
|
|
</Control>
|
|
|
|
<Control Id="Description" Type="Text" X="25" Y="23" Width="280" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.CleanSweepDlgDescription)" />
|
|
<Control Id="Title" Type="Text" X="15" Y="6" Width="200" Height="15" Transparent="yes" NoPrefix="yes" Text="!(loc.CleanSweepDlgTitle)" />
|
|
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.CleanSweepDlgBannerBitmap)" />
|
|
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
|
|
<Control Id="CleanSweepCheckBox" Type="CheckBox" X="20" Y="60" Width="330" Height="15" Property="CLEAN_SWEEP" CheckBoxValue="1" Text="&Remove personal @APP_NAME@ data and preferences" />
|
|
</Dialog>
|
|
|
|
<Publish
|
|
Control="Finish"
|
|
Dialog="CExitDialog"
|
|
Event="DoAction"
|
|
Value="LaunchApplication">
|
|
<![CDATA[WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 AND JRE_VERSION >= "1.5" AND NOT Installed]]>
|
|
</Publish>
|
|
<?ifdef JRESetup ?>
|
|
<Publish
|
|
Control="Finish"
|
|
Dialog="CExitDialog"
|
|
Event="DoAction"
|
|
Value="InstallJRE">
|
|
<![CDATA[WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 AND JRE_VERSION < "1.5" AND NOT Installed]]>
|
|
</Publish>
|
|
<?endif?>
|
|
|
|
<InstallUISequence>
|
|
<Show Dialog="CExitDialog" OnExit="success">
|
|
NOT (IS_AUTOUPDATE = 1)
|
|
</Show>
|
|
<Show Dialog="CWelcomeDlg" Before="CProgressDlg">
|
|
NOT Installed AND NOT (IS_AUTOUPDATE = 1)
|
|
</Show>
|
|
|
|
<Show Dialog="CProgressDlg" Before="ExecuteAction">
|
|
NOT (IS_AUTOUPDATE = 1)
|
|
</Show>
|
|
<Show Dialog="CAutoupdateProgressDlg" Before="ExecuteAction">
|
|
IS_AUTOUPDATE = 1
|
|
</Show>
|
|
|
|
<Custom Action="LaunchApplication" After="ExecuteAction">
|
|
IS_AUTOUPDATE = 1
|
|
</Custom>
|
|
<Custom Action="CleanSweep" After="ExecuteAction">
|
|
<![CDATA[NOT (IS_AUTOUPDATE = 1) AND (CLEAN_SWEEP = 1)]]>
|
|
</Custom>
|
|
|
|
<Custom Action="SetIS_AUTOUPDATE" After="AppSearch">
|
|
<![CDATA[NOT Installed AND SIP_COMMUNICATOR_AUTOUPDATE_INSTALLDIR <> ""]]>
|
|
</Custom>
|
|
<Custom Action="SetINSTALLDIR" After="SetIS_AUTOUPDATE">
|
|
<![CDATA[IS_AUTOUPDATE = 1]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_DESKTOP_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND HAS_DESKTOP_SHORTCUT]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_DESKTOP_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND NOT HAS_DESKTOP_SHORTCUT AND NOT (HAS_DESKTOP_SHORTCUT = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_START_MENU_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND HAS_START_MENU_SHORTCUT]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_START_MENU_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND NOT HAS_START_MENU_SHORTCUT AND NOT (HAS_START_MENU_SHORTCUT = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_STARTUP_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND NOT HAS_STARTUP_SHORTCUT AND NOT (HAS_STARTUP_SHORTCUT = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_STARTUP_REGISTRY" After="SetINSTALLDIR">
|
|
<![CDATA[HAS_STARTUP_REGISTRY OR HAS_STARTUP_SHORTCUT]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_STARTUP_REGISTRY" After="SetINSTALLDIR">
|
|
<![CDATA[NOT HAS_STARTUP_REGISTRY AND NOT (HAS_STARTUP_REGISTRY = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_DISABLE_UPDATES_CHECK" After="SetINSTALLDIR">
|
|
<![CDATA[HAS_DISABLE_UPDATES_CHECK_REGISTRY = "#1"]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_DISABLE_UPDATES_CHECK" After="SetINSTALLDIR">
|
|
<![CDATA[NOT HAS_DISABLE_UPDATES_CHECK_REGISTRY]]>
|
|
</Custom>
|
|
|
|
<?ifdef JRESetup ?>
|
|
<Custom Action="SetWIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" After="AppSearch">
|
|
<![CDATA[JRE_VERSION < "1.5" AND NOT Installed]]>
|
|
</Custom>
|
|
<?endif?>
|
|
</InstallUISequence>
|
|
|
|
<AdminUISequence>
|
|
<Show Dialog="CExitDialog" OnExit="success">
|
|
NOT (IS_AUTOUPDATE = 1)
|
|
</Show>
|
|
</AdminUISequence>
|
|
</UI>
|
|
|
|
<?ifdef JRESetup ?>
|
|
<CustomAction
|
|
Id="InstallJRE"
|
|
BinaryKey="JRESetup"
|
|
ExeCommand=""
|
|
Return="asyncNoWait" />
|
|
<?endif?>
|
|
<CustomAction
|
|
Id="LaunchApplication"
|
|
BinaryKey="WixCA"
|
|
DllEntry="WixShellExec"
|
|
Impersonate="yes" />
|
|
<CustomAction
|
|
Id="SetCREATE_DESKTOP_SHORTCUT"
|
|
Property="CREATE_DESKTOP_SHORTCUT"
|
|
Value="1" />
|
|
<CustomAction
|
|
Id="SetCREATE_START_MENU_SHORTCUT"
|
|
Property="CREATE_START_MENU_SHORTCUT"
|
|
Value="1" />
|
|
<CustomAction
|
|
Id="SetCREATE_STARTUP_REGISTRY"
|
|
Property="CREATE_STARTUP_REGISTRY"
|
|
Value="1" />
|
|
<CustomAction
|
|
Id="SetCREATE_DISABLE_UPDATES_CHECK"
|
|
Property="CREATE_DISABLE_UPDATES_CHECK"
|
|
Value="1" />
|
|
<CustomAction
|
|
Id="UnsetCREATE_DISABLE_UPDATES_CHECK"
|
|
Property="CREATE_DISABLE_UPDATES_CHECK"
|
|
Value="0" />
|
|
<CustomAction
|
|
Id="SetINSTALLDIR"
|
|
Property="INSTALLDIR"
|
|
Value="[SIP_COMMUNICATOR_AUTOUPDATE_INSTALLDIR]" />
|
|
<CustomAction
|
|
Id="SetIS_AUTOUPDATE"
|
|
Property="IS_AUTOUPDATE"
|
|
Value="1" />
|
|
<?ifdef JRESetup ?>
|
|
<CustomAction
|
|
Id="SetWIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT"
|
|
Property="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT"
|
|
Value="Install Java(TM) SE Runtime Environment" />
|
|
<?endif?>
|
|
<CustomAction
|
|
Id="UnsetCREATE_DESKTOP_SHORTCUT"
|
|
Property="CREATE_DESKTOP_SHORTCUT"
|
|
Value="0" />
|
|
<CustomAction
|
|
Id="UnsetCREATE_START_MENU_SHORTCUT"
|
|
Property="CREATE_START_MENU_SHORTCUT"
|
|
Value="0" />
|
|
<CustomAction
|
|
Id="UnsetCREATE_STARTUP_SHORTCUT"
|
|
Property="CREATE_STARTUP_SHORTCUT"
|
|
Value="0" />
|
|
<CustomAction
|
|
Id="UnsetCREATE_STARTUP_REGISTRY"
|
|
Property="CREATE_STARTUP_REGISTRY"
|
|
Value="0" />
|
|
<CustomAction
|
|
BinaryKey="CleanSweepExe"
|
|
ExeCommand=""
|
|
Id="CleanSweep"
|
|
Impersonate="yes"
|
|
Return="ignore" />
|
|
|
|
<InstallExecuteSequence>
|
|
<RemoveExistingProducts Before="InstallInitialize" />
|
|
|
|
<Custom Action="SetIS_AUTOUPDATE" After="AppSearch">
|
|
<![CDATA[NOT Installed AND SIP_COMMUNICATOR_AUTOUPDATE_INSTALLDIR <> ""]]>
|
|
</Custom>
|
|
<Custom Action="SetINSTALLDIR" After="SetIS_AUTOUPDATE">
|
|
<![CDATA[IS_AUTOUPDATE = 1]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_DESKTOP_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND HAS_DESKTOP_SHORTCUT]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_DESKTOP_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND NOT HAS_DESKTOP_SHORTCUT AND NOT (HAS_DESKTOP_SHORTCUT = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_START_MENU_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND HAS_START_MENU_SHORTCUT]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_START_MENU_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND NOT HAS_START_MENU_SHORTCUT AND NOT (HAS_START_MENU_SHORTCUT = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_STARTUP_SHORTCUT" After="SetINSTALLDIR">
|
|
<![CDATA[(IS_AUTOUPDATE = 1) AND NOT HAS_STARTUP_SHORTCUT AND NOT (HAS_STARTUP_SHORTCUT = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_STARTUP_REGISTRY" After="SetINSTALLDIR">
|
|
<![CDATA[HAS_STARTUP_REGISTRY OR HAS_STARTUP_SHORTCUT]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_STARTUP_REGISTRY" After="SetINSTALLDIR">
|
|
<![CDATA[NOT HAS_STARTUP_REGISTRY AND NOT (HAS_STARTUP_REGISTRY = "#1")]]>
|
|
</Custom>
|
|
<Custom Action="SetCREATE_DISABLE_UPDATES_CHECK" After="SetINSTALLDIR">
|
|
<![CDATA[HAS_DISABLE_UPDATES_CHECK_REGISTRY AND HAS_DISABLE_UPDATES_CHECK_REGISTRY = "#1"]]>
|
|
</Custom>
|
|
<Custom Action="UnsetCREATE_DISABLE_UPDATES_CHECK" After="SetINSTALLDIR">
|
|
<![CDATA[NOT HAS_DISABLE_UPDATES_CHECK_REGISTRY]]>
|
|
</Custom>
|
|
|
|
<?ifdef JRESetup ?>
|
|
<Custom Action="SetWIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" After="AppSearch">
|
|
<![CDATA[JRE_VERSION < "1.5" AND NOT Installed]]>
|
|
</Custom>
|
|
<?endif?>
|
|
</InstallExecuteSequence>
|
|
|
|
<Property Id="HAS_DESKTOP_SHORTCUT">
|
|
<RegistrySearch
|
|
Id="RegistrySearch_HasDesktopShortcut"
|
|
Key="Software\Microsoft\@APP_NAME@"
|
|
Name="DesktopShortcut"
|
|
Root="HKCU"
|
|
Type="raw" />
|
|
</Property>
|
|
<Property Id="HAS_START_MENU_SHORTCUT">
|
|
<RegistrySearch
|
|
Id="RegistrySearch_HasStartMenuShortcut"
|
|
Key="Software\Microsoft\@APP_NAME@"
|
|
Name="StartMenuShortcut"
|
|
Root="HKCU"
|
|
Type="raw" />
|
|
</Property>
|
|
<Property Id="HAS_STARTUP_SHORTCUT">
|
|
<RegistrySearch
|
|
Id="RegistrySearch_HasStartupShortcut"
|
|
Key="Software\Microsoft\@APP_NAME@"
|
|
Name="StartupShortcut"
|
|
Root="HKCU"
|
|
Type="raw" />
|
|
</Property>
|
|
<Property Id="HAS_STARTUP_REGISTRY">
|
|
<RegistrySearch
|
|
Id="RegistrySearch_HasStartupRegistry"
|
|
Key="Software\Microsoft\Windows\CurrentVersion\Run"
|
|
Name="@APP_NAME@"
|
|
Root="HKCU"
|
|
Type="raw" />
|
|
</Property>
|
|
<SetProperty Id="HAS_STARTUP_REGISTRY" After="AppSearch" Value="[HAS_STARTUP_SHORTCUT]">
|
|
HAS_STARTUP_SHORTCUT
|
|
</SetProperty>
|
|
<Property Id="HAS_DISABLE_UPDATES_CHECK_REGISTRY" Value="#0">
|
|
<RegistrySearch
|
|
Id="RegistrySearch_HasDisableUpdatesCheckRegistry"
|
|
Key="Software\Microsoft\@APP_NAME@"
|
|
Name="DisableUpdatesCheck"
|
|
Root="HKCU"
|
|
Type="raw" />
|
|
</Property>
|
|
<Property Id="IS_DEFAULT_IM_APP">
|
|
<RegistrySearch
|
|
Id="RegistrySearch_IsDefaultIMApp"
|
|
Key="Software\IM Providers"
|
|
Name="DefaultIMApp"
|
|
Root="HKCU"
|
|
Type="raw" />
|
|
</Property>
|
|
<Property Id="JRE_VERSION">
|
|
<?ifdef JRESetup ?>
|
|
<RegistrySearch
|
|
Id="RegistrySearch_JREVersion"
|
|
Key="Software\JavaSoft\Java Runtime Environment"
|
|
Name="CurrentVersion"
|
|
Root="HKLM"
|
|
Type="raw"
|
|
Win64="@WINDOWS_IS_64@" />
|
|
<?else?>
|
|
1.5
|
|
<?endif?>
|
|
</Property>
|
|
<Property Id="SET_DEFAULT_IM_APP" Value="1" />
|
|
<Property Id="ARPCONTACT" Value="@APP_EMAIL@" />
|
|
<Property Id="ARPHELPLINK" Value="@APP_WEB@" />
|
|
<Property Id="ARPPRODUCTICON" Value="Icon.ico" />
|
|
<Property Id="CLEAN_SWEEP" Secure="yes" />
|
|
<!--
|
|
We've switched the startup from shortcut to registry so we'll always set
|
|
CREATE_STARTUP_SHORTCUT to 0 in order to remove the old shortcut on update.
|
|
-->
|
|
<Property Id="CREATE_STARTUP_SHORTCUT" Value="0" />
|
|
<Property Id="CREATE_MSOFFICECOMM_REGISTRY_ENTRIES" Value="1" />
|
|
<Property Id="CREATE_SIP_REGISTRY_ENTRIES" Value="1" />
|
|
<Property Id="CREATE_XMPP_REGISTRY_ENTRIES" Value="1" />
|
|
<Property Id="IS_AUTOUPDATE" Value="0" Hidden="yes" />
|
|
<Property Id="WixShellExecTarget" Value="[#@APP_LAUNCHER_NAME@.exe]" />
|
|
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1" />
|
|
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="!(loc.ExitDialogOptionaCheckBoxText)" />
|
|
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
|
|
|
|
<?include windows_shortcut_specification.wxi ?>
|
|
|
|
<WixVariable Id="WixUIBannerBmp" Value="wix-banner.jpg" />
|
|
<WixVariable Id="WixUIDialogBmp" Value="wix-dialog.jpg" />
|
|
<WixVariable Id='WixUILicenseRtf' Value="License.rtf" />
|
|
|
|
<Icon Id="Icon.ico" SourceFile="sc-logo.ico" />
|
|
|
|
<?ifdef JRESetup ?>
|
|
<Binary Id="JRESetup" SourceFile="$(var.JRESetup)" />
|
|
<?endif?>
|
|
<Binary Id="CleanSweepExe" SourceFile="cleansweep.exe" />
|
|
|
|
<!-- Includes any default translated Error or ProgressText elements -->
|
|
<UIRef Id="WixUI_ErrorProgressText" />
|
|
|
|
</Product>
|
|
|
|
<!-- Modified ProgressDlg to not include InstallUISequence -->
|
|
<Fragment>
|
|
<UI>
|
|
<Dialog Id="CProgressDlg" Width="370" Height="270" Title="!(loc.ProgressDlg_Title)" Modeless="yes">
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Default="yes" Cancel="yes" Text="!(loc.WixUICancel)">
|
|
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
|
|
</Control>
|
|
<Control Id="BannerBitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="44" TabSkip="no" Text="!(loc.ProgressDlgBannerBitmap)" />
|
|
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
|
|
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUINext)" />
|
|
<Control Id="BannerLine" Type="Line" X="0" Y="44" Width="370" Height="0" />
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
<!-- mutually exclusive title and description strings overlap -->
|
|
<Control Id="TextInstalling" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextInstalling)">
|
|
<Condition Action="show">NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)</Condition>
|
|
</Control>
|
|
<Control Id="TitleInstalling" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleInstalling)">
|
|
<Condition Action="show">NOT Installed OR (Installed AND (RESUME OR Preselected) AND NOT PATCH)</Condition>
|
|
</Control>
|
|
<Control Id="TextChanging" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextChanging)">
|
|
<Condition Action="show">WixUI_InstallMode = "Change"</Condition>
|
|
</Control>
|
|
<Control Id="TitleChanging" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleChanging)">
|
|
<Condition Action="show">WixUI_InstallMode = "Change"</Condition>
|
|
</Control>
|
|
<Control Id="TextRepairing" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextRepairing)">
|
|
<Condition Action="show">WixUI_InstallMode = "Repair"</Condition>
|
|
</Control>
|
|
<Control Id="TitleRepairing" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRepairing)">
|
|
<Condition Action="show">WixUI_InstallMode = "Repair"</Condition>
|
|
</Control>
|
|
<Control Id="TextRemoving" Type="Text" X="20" Y="65" Width="330" Height="35" Hidden="yes" NoPrefix="yes" Text="!(loc.ProgressDlgTextRemoving)">
|
|
<Condition Action="show">WixUI_InstallMode = "Remove"</Condition>
|
|
</Control>
|
|
<Control Id="TitleRemoving" Type="Text" X="20" Y="15" Width="330" Height="15" Transparent="yes" NoPrefix="yes" Hidden="yes" Text="!(loc.ProgressDlgTitleRemoving)">
|
|
<Condition Action="show">WixUI_InstallMode = "Remove"</Condition>
|
|
</Control>
|
|
<Control Id="ActionText" Type="Text" X="70" Y="100" Width="285" Height="10">
|
|
<Subscribe Event="ActionText" Attribute="Text" />
|
|
</Control>
|
|
<Control Id="ProgressBar" Type="ProgressBar" X="20" Y="115" Width="330" Height="10" ProgressBlocks="yes" Text="!(loc.ProgressDlgProgressBar)">
|
|
<Subscribe Event="SetProgress" Attribute="Progress" />
|
|
</Control>
|
|
<Control Id="StatusLabel" Type="Text" X="20" Y="100" Width="50" Height="10" Text="!(loc.ProgressDlgStatusLabel)" />
|
|
</Dialog>
|
|
|
|
<Dialog Id="CAutoupdateProgressDlg" Width="370" Height="65" Title="!(loc.ProgressDlg_Title)" Modeless="yes">
|
|
<Control Id="ActionText" Type="Text" X="70" Y="20" Width="285" Height="10">
|
|
<Subscribe Event="ActionText" Attribute="Text" />
|
|
</Control>
|
|
<Control Id="ProgressBar" Type="ProgressBar" X="20" Y="35" Width="330" Height="10" ProgressBlocks="yes" Text="!(loc.ProgressDlgProgressBar)">
|
|
<Subscribe Event="SetProgress" Attribute="Progress" />
|
|
</Control>
|
|
<Control TabSkip="no" Id="StatusLabel" Type="Text" X="20" Y="20" Width="50" Height="10" Text="!(loc.ProgressDlgStatusLabel)" />
|
|
</Dialog>
|
|
</UI>
|
|
</Fragment>
|
|
|
|
<!-- Modified MaintenanceWelcomeDlg to not reference ProgressDlg -->
|
|
<Fragment>
|
|
<UI>
|
|
<Dialog Id="CMaintenanceWelcomeDlg" Width="370" Height="270" Title="!(loc.MaintenanceWelcomeDlg_Title)">
|
|
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)">
|
|
<Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish>
|
|
</Control>
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
|
|
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
|
|
</Control>
|
|
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.MaintenanceWelcomeDlgBitmap)" />
|
|
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.MaintenanceWelcomeDlgTitle)" />
|
|
<Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.MaintenanceWelcomeDlgDescription)" />
|
|
</Dialog>
|
|
|
|
<InstallUISequence>
|
|
<Show Dialog="CMaintenanceWelcomeDlg" Before="CProgressDlg">Installed AND NOT RESUME AND NOT Preselected</Show>
|
|
</InstallUISequence>
|
|
</UI>
|
|
</Fragment>
|
|
|
|
<!-- Modified ResumeDlg to not reference ProgressDlg -->
|
|
<Fragment>
|
|
<UI>
|
|
<Dialog Id="CResumeDlg" Width="370" Height="270" Title="!(loc.ResumeDlg_Title)">
|
|
<Control Id="Install" Type="PushButton" ElevationShield="yes" X="212" Y="243" Width="80" Height="17" Default="yes" Text="!(loc.ResumeDlgInstall)" Hidden="yes">
|
|
<Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish>
|
|
<Publish Event="EndDialog" Value="Return"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
|
|
<Publish Event="SpawnDialog" Value="OutOfRbDiskDlg">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)</Publish>
|
|
<Publish Event="EndDialog" Value="Return">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
|
|
<Publish Event="EnableRollback" Value="False">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
|
|
<Publish Event="SpawnDialog" Value="OutOfDiskDlg">(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")</Publish>
|
|
<Condition Action="show">ALLUSERS</Condition>
|
|
</Control>
|
|
<Control Id="InstallNoShield" Type="PushButton" ElevationShield="no" X="212" Y="243" Width="80" Height="17" Default="yes" Text="!(loc.ResumeDlgInstall)" Hidden="yes">
|
|
<Publish Event="SpawnWaitDialog" Value="WaitForCostingDlg">CostingComplete = 1</Publish>
|
|
<Publish Event="EndDialog" Value="Return"><![CDATA[OutOfDiskSpace <> 1]]></Publish>
|
|
<Publish Event="SpawnDialog" Value="OutOfRbDiskDlg">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND (PROMPTROLLBACKCOST="P" OR NOT PROMPTROLLBACKCOST)</Publish>
|
|
<Publish Event="EndDialog" Value="Return">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
|
|
<Publish Event="EnableRollback" Value="False">OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 0 AND PROMPTROLLBACKCOST="D"</Publish>
|
|
<Publish Event="SpawnDialog" Value="OutOfDiskDlg">(OutOfDiskSpace = 1 AND OutOfNoRbDiskSpace = 1) OR (OutOfDiskSpace = 1 AND PROMPTROLLBACKCOST="F")</Publish>
|
|
<Condition Action="show">NOT ALLUSERS</Condition>
|
|
</Control>
|
|
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
|
|
<Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
|
|
</Control>
|
|
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.ResumeDlgBitmap)" />
|
|
<Control Id="Back" Type="PushButton" X="156" Y="243" Width="56" Height="17" Disabled="yes" Text="!(loc.WixUIBack)" />
|
|
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
|
|
<Control Id="Description" Type="Text" X="135" Y="80" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ResumeDlgDescription)" />
|
|
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes" Text="!(loc.ResumeDlgTitle)" />
|
|
</Dialog>
|
|
|
|
<InstallUISequence>
|
|
<Show Dialog="CResumeDlg" Before="CProgressDlg">Installed AND (RESUME OR Preselected)</Show>
|
|
</InstallUISequence>
|
|
</UI>
|
|
</Fragment>
|
|
|
|
<!-- Modified WixUI_InstallDir -->
|
|
<Fragment>
|
|
<UI Id="WixUI_CInstallDir">
|
|
<TextStyle Id="WixUI_Font_Normal" FaceName="Ms Shell Dlg" Size="8" />
|
|
<TextStyle Id="WixUI_Font_Bigger" FaceName="Ms Shell Dlg" Size="12" />
|
|
<TextStyle Id="WixUI_Font_Title" FaceName="Ms Shell Dlg" Size="9" Bold="yes" />
|
|
|
|
<Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
|
|
<Property Id="WixUI_Mode" Value="InstallDir" />
|
|
|
|
<DialogRef Id="BrowseDlg" />
|
|
<DialogRef Id="DiskCostDlg" />
|
|
<DialogRef Id="ErrorDlg" />
|
|
<DialogRef Id="FatalError" />
|
|
<DialogRef Id="FilesInUse" />
|
|
<DialogRef Id="MsiRMFilesInUse" />
|
|
<DialogRef Id="PrepareDlg" />
|
|
<DialogRef Id="CProgressDlg" />
|
|
<DialogRef Id="CAutoupdateProgressDlg" />
|
|
<DialogRef Id="CResumeDlg" />
|
|
<DialogRef Id="UserExit" />
|
|
|
|
<Publish Dialog="BrowseDlg" Control="OK" Event="DoAction" Value="WixUIValidatePath" Order="3">1</Publish>
|
|
<Publish Dialog="BrowseDlg" Control="OK" Event="SpawnDialog" Value="InvalidDirDlg" Order="4"><![CDATA[WIXUI_INSTALLDIR_VALID<>"1"]]></Publish>
|
|
|
|
<Publish Dialog="CExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
|
|
|
|
<Publish Dialog="CWelcomeDlg" Control="Next" Event="NewDialog" Value="LicenseAgreementDlg">1</Publish>
|
|
|
|
<Publish Dialog="LicenseAgreementDlg" Control="Back" Event="NewDialog" Value="CWelcomeDlg">1</Publish>
|
|
<Publish Dialog="LicenseAgreementDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg">LicenseAccepted = "1"</Publish>
|
|
|
|
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="LicenseAgreementDlg">1</Publish>
|
|
<Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
|
|
<Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath" Order="2">1</Publish>
|
|
<Publish Dialog="InstallDirDlg" Control="Next" Event="SpawnDialog" Value="InvalidDirDlg" Order="3"><![CDATA[WIXUI_INSTALLDIR_VALID<>"1"]]></Publish>
|
|
<Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="ShortcutsAndRegistryDlg" Order="4"><![CDATA[WIXUI_INSTALLDIR_VALID="1"]]></Publish>
|
|
<Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
|
|
<Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="2">1</Publish>
|
|
|
|
<Publish Dialog="ShortcutsAndRegistryDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg">1</Publish>
|
|
<Publish Dialog="ShortcutsAndRegistryDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
|
|
|
|
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="ShortcutsAndRegistryDlg" Order="1">NOT Installed</Publish>
|
|
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed</Publish>
|
|
|
|
<Publish Dialog="CMaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
|
|
|
|
<Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
|
|
<Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="CleanSweepDlg">1</Publish>
|
|
<Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="CMaintenanceWelcomeDlg">1</Publish>
|
|
|
|
<Publish Dialog="CleanSweepDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
|
|
<Publish Dialog="CleanSweepDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
|
|
|
|
<!-- Property Id="ARPNOMODIFY" Value="1" /-->
|
|
<Property Id="ARPNOREPAIR" Value="1" />
|
|
</UI>
|
|
|
|
<UIRef Id="WixUI_Common" />
|
|
</Fragment>
|
|
|
|
<?include SCRegistrySpec.wxi ?>
|
|
<?include DefaultOverridesProps.wxi ?>
|
|
|
|
</Wix>
|