Roxen.git
/
server
/
etc
/
RoxenUI.wxs
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/etc/RoxenUI.wxs:2:
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi"> <Fragment Id="RoxenUI"> <CustomAction Id="DIRCA_TARGETDIR" Property="TARGETDIR" Value="[ProgramFilesFolder][Manufacturer]\[ProductName]" Execute="firstSequence" /> <CustomAction Id="DONT_INSTALL_SERVICE" Property="INSTALL_SERVICE" Value="0" Execute="firstSequence" /> <CustomAction Id="ERRCA_CANCELNEWERVERSION" Error="[VSDVERSIONMSG]" /> <CustomAction Id="ERRCA_UIANDADVERTISED" Error="[VSDUIANDADVERTISED]" /> <CustomAction Id="CustomTextA_SetProperty_EDIT3" Property="SERVER_PORT" Value="22202" Execute="firstSequence" /> <CustomAction Id="CustomTextA_SetProperty_EDIT2" Property="SERVER_PROTOCOL" Value="https" Execute="firstSequence" /> <CustomAction Id="CustomTextA_SetProperty_EDIT1" Property="SERVER_NAME" Value="Administration Interface" Execute="firstSequence" /> <CustomAction Id="CustomTextA_SetProperty_EDIT4" Property="ADM_USER" Value="administrator" Execute="firstSequence" />
+
<CustomAction Id="Override_CustomTextA_1" Property="Custom2Buttons_NextArgs" Value="[CustomTextA_NextArgs]" Execute="firstSequence" />
+
<CustomAction Id="Override_CustomTextA_2" Property="ConfirmInstallForm_PrevArgs" Value="[CustomTextA_PrevArgs]" Execute="firstSequence" />
<CustomAction Id="VSDCA_FolderForm_AllUsers" Property="FolderForm_AllUsers" Value="ALL" /> <CustomAction Id="SetRemoveOldService" Property="RemoveOldService" Value="[TARGETDIR]" Execute="immediate" /> <CustomAction Id="RemoveOldService" BinaryKey="RoxenInstaller" VBScriptCall="RemoveOldService" Execute="deferred" /> <CustomAction Id="SetCreateConfigInterface" Property="CreateConfigInterface" Value="[SERVERDIR];[SERVER_NAME];[SERVER_PROTOCOL];[SERVER_PORT];[ADM_USER];[ADM_PASS1]" Execute="immediate" /> <CustomAction Id="CreateConfigInterface" BinaryKey="RoxenInstaller"
Roxen.git/server/etc/RoxenUI.wxs:1166:
</AdminExecuteSequence> <InstallExecuteSequence> <Custom Action="ERRCA_CANCELNEWERVERSION" After="FindRelatedProducts"><![CDATA[NEWERPRODUCTFOUND AND NOT Installed]]></Custom> <Custom Action="CustomTextA_SetProperty_EDIT1" After="ValidateProductID" /> <Custom Action="CustomTextA_SetProperty_EDIT2" After="CustomTextA_SetProperty_EDIT1" /> <Custom Action="CustomTextA_SetProperty_EDIT3" After="CustomTextA_SetProperty_EDIT2" /> <Custom Action="CustomTextA_SetProperty_EDIT4" After="CustomTextA_SetProperty_EDIT3" /> <Custom Action="DIRCA_TARGETDIR" After="CustomTextA_SetProperty_EDIT4"><![CDATA[TARGETDIR=""]]></Custom> <Custom Action="DONT_INSTALL_SERVICE" After="DIRCA_TARGETDIR">NOT VersionNT</Custom> <AppSearch After="DONT_INSTALL_SERVICE"/>
+
<Custom Action="Override_CustomTextA_1" After="AppSearch">OLDCONFIGDIR<>""</Custom>
+
<Custom Action="Override_CustomTextA_2" After="Override_CustomTextA_1">OLDCONFIGDIR<>""</Custom>
<RemoveExistingProducts After="InstallInitialize" /> <StopServices Sequence="1900">VersionNT AND INSTALL_SERVICE="1"</StopServices> <DeleteServices Sequence="2000">VersionNT AND INSTALL_SERVICE="1"</DeleteServices> <InstallServices Sequence="5800">VersionNT AND INSTALL_SERVICE="1"</InstallServices> <StartServices Sequence="5900">VersionNT AND INSTALL_SERVICE="1" AND START_SERVER="1"</StartServices> <Custom Action="SetRemoveOldService" After="InstallFiles">REMOVE="" AND INSTALL_SERVICE="1"</Custom> <Custom Action="RemoveOldService" After="SetRemoveOldService">REMOVE="" AND INSTALL_SERVICE="1"</Custom> <Custom Action="SetCreateConfigInterface" Sequence="5100">REMOVE=""</Custom>
-
<Custom Action="CreateConfigInterface" After="SetCreateConfigInterface">REMOVE=""</Custom>
+
<Custom Action="CreateConfigInterface" After="SetCreateConfigInterface">
(
REMOVE=""
) AND (OLDCONFIGDIR="")
</Custom>
<Custom Action="SetCreatePikeLocation" After="CreateConfigInterface">REMOVE=""</Custom> <Custom Action="CreatePikeLocation" After="SetCreatePikeLocation">REMOVE=""</Custom> <Custom Action="ConsoleStartServer" After="StartServices">((NOT VersionNT) OR INSTALL_SERVICE<>"1") AND START_SERVER="1"</Custom> </InstallExecuteSequence> <Binary Id="DefBannerBitmap" src="Banner.bmp" /> <Binary Id="UpFldrBtn" src="UpFldrBtn.icon" /> <Binary Id="NewFldrBtn" src="NewFldrBtn.icon" /> <Binary Id="RoxenInstaller" src="Win32Installer.vbs" /> </Fragment> </Wix>