;Copyright 2007-2015 John T. Haller of PortableApps.com ;Website: http://PortableApps.com/ ;This software is OSI Certified Open Source Software. ;OSI Certified is a certification mark of the Open Source Initiative. ;This program is free software; you can redistribute it and/or ;modify it under the terms of the GNU General Public License ;as published by the Free Software Foundation; either version 2 ;of the License, or (at your option) any later version. ;This program is distributed in the hope that it will be useful, ;but WITHOUT ANY WARRANTY; without even the implied warranty of ;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;GNU General Public License for more details. ;You should have received a copy of the GNU General Public License ;along with this program; if not, write to the Free Software ;Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ;EXCEPTION: The PortableApps.com Installer can be used with open source ;applications licensed under OSI-approved licenses as well as freeware provided ;it is unmodified and it adheres to the current PortableApps.com Format Specification ;as published at PortableApps.com/development. It may also be used with commercial ;software by contacting PortableApps.com. !define PORTABLEAPPSINSTALLERVERSION "3.0.19.0" !define PORTABLEAPPS.COMFORMATVERSION "3.0.19" !if ${__FILE__} == "PortableApps.comInstallerPlugin.nsi" !include PortableApps.comInstallerPluginConfig.nsh !define PLUGININSTALLER !else !include PortableApps.comInstallerConfig.nsh !endif # MANiFEST !define RequestLevel USER !define ResHacker `${NSISDIR}\Contrib\Manifests\ResHacker.exe` !define ManifDir `${NSISDIR}\Contrib\Manifests` !define Manifest `NSIS_2.46_Win8` !packhdr `$%TEMP%\exehead.tmp` `"${Reshacker}" -addoverwrite "%TEMP%\exehead.tmp", "%TEMP%\exehead.tmp", "${ManifDir}\${Manifest}_${RequestLevel}.manifest", 24,1,1033` # iNCLUDE (moved here so it's easier to see) ;!define Include_x64.nsh !define Include_WinVer.nsh ;!define Include_GetBetween.nsh ;!define Include_ReplaceInFileWithTextReplace.nsh ;!define Include_LineWrite.nsh # TESTiNG ;!define NOCOMPRESSION # DEFiNE !define BUILD 0.0.0.0 !define APP PartitionMaster !define FULLNAME `EaseUS Partition Master Technician` !define APPDIR `$INSTDIR\App\${APP}` !define APPNAME `${APP}Portable` !define APPINFO `$INSTDIR\App\AppInfo` !define LAUNCHER `${APPINFO}\Launcher` !define DATA `$INSTDIR\Data` !define DEFDATA `$INSTDIR\App\DefaultData` !define DEFSET `${DEFDATA}\settings` !define SET `$INSTDIR\Data\settings` !define OTHER `$INSTDIR\Other` !define BRANDING EaseUS !define BRANDING2 `CHENGDU YIWO Tech Development Co., Ltd` !define EXE `$INSTDIR\${APPNAME}.exe` !define LEGAL `Copyright (c) 2004-2015 CHENGDU YIWO Tech Development Co., Ltd.` !define INI `$INSTDIR\Backup_log.ini` !define INS `${APPINFO}\installer.ini` # VARiABLE var ADDITIONALPARAMETERS var RUNLOCALLY var CMD # SECTiON !define MAINSECTIONIDX 0 !ifdef MAINSECTIONTITLE !define SECTION_ON ${SF_SELECTED} !include Sections.nsh !define OPTIONALSECTION1 1 !define OPTIONALSECTION2 2 !endif # SPECiFiCATIONS Name "${PORTABLEAPPNAME}" "${PORTABLEAPPNAMEDOUBLEDAMPERSANDS}" OutFile "..\..\..\${FILENAME}.paf.exe" !ifdef COMMONFILESPLUGIN InstallDir "\CommonFiles\${APPID}" !else InstallDir "\${APPID}" !endif Caption `${FULLNAME}` VIProductVersion `${BUILD}` VIAddVersionKey ProductName `${FULLNAME}` VIAddVersionKey Comments http://portablewares.blogspot.com/ VIAddVersionKey CompanyName `${BRANDING}` VIAddVersionKey LegalCopyright `${LEGAL}` VIAddVersionKey FileDescription `${FULLNAME}` VIAddVersionKey FileVersion `${BUILD}` VIAddVersionKey ProductVersion Portable VIAddVersionKey InternalName `${PORTABLEAPPNAME}` ;VIAddVersionKey LegalTrademarks VIAddVersionKey OriginalFilename `${FILENAME}.paf.exe` VIAddVersionKey PortableApps.comInstallerVersion "${PORTABLEAPPSINSTALLERVERSION}" VIAddVersionKey PortableApps.comFormatVersion "${PORTABLEAPPS.COMFORMATVERSION}" VIAddVersionKey PortableApps.comAppID "${APPID}" !ifdef DownloadURL ;advertise the needed bits to the PA.c Updater VIAddVersionKey PortableApps.comDownloadURL "${DownloadURL}" VIAddVersionKey PortableApps.comDownloadKnockURL "${DownloadKnockURL}" VIAddVersionKey PortableApps.comDownloadName "${DownloadName}" VIAddVersionKey PortableApps.comDownloadFileName "${DownloadFileName}" VIAddVersionKey PortableApps.comDownloadMD5 "${DownloadMD5}" !endif !ifdef NOCOMPRESSION SetCompress off !else SetCompress Auto SetCompressor /SOLID lzma SetCompressorDictSize 32 SetDatablockOptimize On !endif CRCCheck on AutoCloseWindow True RequestExecutionLevel user AllowRootDirInstall true ;=== Include !include MUI2.nsh !include FileFunc.nsh !include LogicLib.nsh !ifdef PRESERVEFILE1 !include PortableApps.comInstallerMoveFiles.nsh !endif !ifdef COPYLOCALFILES !include Registry.nsh !endif !include TextFunc.nsh !include WordFunc.nsh !include PortableApps.comInstallerDriveFreeSpaceCustom.nsh !include PortableApps.comInstallerDumpLogToFile.nsh !include PortableApps.comInstallerTBProgress.nsh ;=== CUSTOM iNCLUDES !ifdef Include_x64.nsh !include x64.nsh !endif !ifdef Include_WinVer.nsh !include WinVer.nsh !endif !ifdef Include_GetBetween.nsh !include GetBetween.nsh !endif !ifdef Include_ReplaceInFileWithTextReplace.nsh !include ReplaceInFileWithTextReplace.nsh !endif !ifdef Include_LineWrite.nsh !include LineWrite.nsh !endif ;=== Program Icon Icon "PortableApps.comInstaller.ico" !define MUI_ICON "PortableApps.comInstaller.ico" !define MUI_UNICON "PortableApps.comInstaller.ico" !define MUI_HEADERIMAGE !define MUI_HEADERIMAGE_BITMAP "PortableApps.comInstallerHeader.bmp" !define MUI_HEADERIMAGE_BITMAP_RTL "PortableApps.comInstallerHeaderRTL.bmp" !define MUI_HEADERIMAGE_RIGHT ;=== Icon & Stye === BrandingText "Copyright (c) 2004-2015 YIWO Tech Ltd. | Technician" ;=== Pages !ifdef COPYLOCALFILES !define MUI_CUSTOMFUNCTION_ABORT CustomAbortFunction !endif !define MUI_LANGDLL_WINDOWTITLE "${PORTABLEAPPNAME}" !define MUI_LANGDLL_INFO "Please select language:" !define MUI_WELCOMEFINISHPAGE_BITMAP "PortableApps.comInstaller.bmp" !ifdef PLUGINNAME !define MUI_WELCOMEPAGE_TITLE "${PORTABLEAPPNAMEDOUBLEDAMPERSANDS}" !else !define MUI_WELCOMEPAGE_TITLE "${PORTABLEAPPNAMEDOUBLEDAMPERSANDS}" !endif !define MUI_WELCOMEPAGE_TEXT "$(welcome)" !define MUI_PAGE_CUSTOMFUNCTION_PRE PreWelcome !define MUI_COMPONENTSPAGE_SMALLDESC !insertmacro MUI_PAGE_WELCOME !ifdef LICENSEAGREEMENT ;!define MUI_LICENSEPAGE_CHECKBOX !define MUI_PAGE_CUSTOMFUNCTION_PRE PreLicense !define MUI_PAGE_CUSTOMFUNCTION_SHOW ShowLicense !define MUI_PAGE_CUSTOMFUNCTION_LEAVE LeaveLicense !insertmacro MUI_PAGE_LICENSE "..\..\App\AppInfo\${LICENSEAGREEMENT}" !endif !ifdef MAINSECTIONTITLE !define MUI_PAGE_CUSTOMFUNCTION_PRE PreComponents !insertmacro MUI_PAGE_COMPONENTS !endif !define MUI_DIRECTORYPAGE_VERIFYONLEAVE !define MUI_PAGE_CUSTOMFUNCTION_PRE PreDirectory !define MUI_PAGE_CUSTOMFUNCTION_LEAVE LeaveDirectory !insertmacro MUI_PAGE_DIRECTORY !define MUI_PAGE_CUSTOMFUNCTION_SHOW ShowInstFiles !insertmacro MUI_PAGE_INSTFILES !define MUI_FINISHPAGE_TEXT "$(finish)" !define MUI_PAGE_CUSTOMFUNCTION_PRE PreFinish !define MUI_FINISHPAGE_TITLE_3LINES ;!define MUI_FINISHPAGE_CANCEL_ENABLED ;Disabled due to bug in MUI2 ;!ifndef PLUGINNAME ; !define MUI_FINISHPAGE_RUN_NOTCHECKED ; !define MUI_FINISHPAGE_RUN "$INSTDIR\${FINISHPAGERUN}" ;!endif !insertmacro MUI_PAGE_FINISH ;=== Languages !ifndef INSTALLERMULTILINGUAL !insertmacro MUI_LANGUAGE "${INSTALLERLANGUAGE}" !include PortableApps.comInstallerLanguages\${INSTALLERLANGUAGE}.nsh !else !tempfile LangAutoDetectFile !macro IncludeLang _LANG_NAME ; !ifdef USES_${_LANG_NAME} !insertmacro MUI_LANGUAGE "${_LANG_NAME}" !include PortableApps.comInstallerLanguages\${_LANG_NAME}.nsh !appendfile "${LangAutoDetectFile}" "${Case} ${LANG_${_LANG_NAME}}$\n" ; !endif !macroend !define IncludeLang "!insertmacro IncludeLang" ${IncludeLang} ENGLISH ${IncludeLang} FRENCH ${IncludeLang} GERMAN ${IncludeLang} JAPANESE ${IncludeLang} POLISH ${IncludeLang} PORTUGUESE ${IncludeLang} SPANISH !insertmacro MUI_RESERVEFILE_LANGDLL !endif ;=== Macros LangString u ${LANG_ENGLISH} `Unpacking ${FULLNAME}` LangString u ${LANG_FRENCH} `${FULLNAME} Déballage` LangString u ${LANG_GERMAN} `Auspacken ${FULLNAME}` LangString u ${LANG_JAPANESE} `開梱${FULLNAME}` LangString u ${LANG_POLISH} `Rozpakowanie ${FULLNAME}` LangString u ${LANG_PORTUGUESE} `${FULLNAME} Desembalagem` LangString u ${LANG_SPANISH} `${FULLNAME} Desembalaje` !macro _ReDef _NAME _VAL !ifdef ${_NAME} !undef ${_NAME} !endif !define ${_NAME} `${_VAL}` !macroend !define ReDef "!insertmacro _ReDef " Function GetAfterChar !macro _GetAfterChar _STR _CHAR _RET Push `${_STR}` Push `${_CHAR}` Call GetAfterChar Pop `${_RET}` !macroend !define GetAfterChar "!insertmacro _GetAfterChar" Exch $0 Exch Exch $1 Push $2 Push $3 StrCpy $2 0 IntOp $2 $2 - 1 StrCpy $3 $1 1 $2 StrCmp $3 "" 0 +3 StrCpy $0 "" Goto +5 StrCmp $3 $0 +2 Goto -6 IntOp $2 $2 + 1 StrCpy $0 $1 "" $2 Pop $3 Pop $2 Pop $1 Exch $0 FunctionEnd Function RelGotoPage IntCmp $R9 0 0 Move Move StrCmp $R9 "X" 0 Move StrCpy $R9 "120" Move: SendMessage $HWNDPARENT "0x408" "$R9" "" FunctionEnd !define CABW CabinetWClass Function Close !macro _Close _CLASS _TITLE Push `${_TITLE}` Push `${_CLASS}` Call Close !macroend !define Close `!insertmacro _Close` Exch $R2 Exch Exch $R1 Push $R0 Search: FindWindow $R0 `$R2` `$R1` IntCmp $R0 0 END 0 0 IsWindow $R0 0 END System::Call `user32::PostMessage(i,i,i,i) i($R0,0x0010,0,0)` Sleep 100 Goto Search END: Pop $R0 Pop $R1 Pop $R2 FunctionEnd !macro !insertmacro1-10 _m !insertmacro ${_m} 1 !insertmacro ${_m} 2 !insertmacro ${_m} 3 !insertmacro ${_m} 4 !insertmacro ${_m} 5 !insertmacro ${_m} 6 !insertmacro ${_m} 7 !insertmacro ${_m} 8 !insertmacro ${_m} 9 !insertmacro ${_m} 10 !macroend !define !insertmacro1-10 "!insertmacro !insertmacro1-10" ;=== Variables Var FOUNDPORTABLEAPPSPATH !ifdef MAINSECTIONTITLE ; Var OPTIONAL1DONE !endif Var AUTOMATEDINSTALL Var AUTOCLOSE Var SILENTLANGUAGEMODE Var HIDEINSTALLER Var MINIMIZEINSTALLER !ifdef LICENSEAGREEMENT Var EULAVERSIONMATCH !endif !ifdef COPYLOCALFILES Var CopyLocalFilesFrom Var CopyLocalFilesTo Var MISSINGFILEORPATH !endif !ifdef DOWNLOADURL Var MD5MISMATCH Var DOWNLOADRESULT Var DOWNLOADEDFILE Var DOWNLOADALREADYEXISTED Var SECONDDOWNLOADATTEMPT Var DownloadURLActual !endif Var INTERNALEULAVERSION Var InstallingStatusString Var bolAppUpgrade Var bolLogFile Var PAcLocaleID Var strLastDirectory Var strTimeStore ;=== Custom Code !ifdef USESCUSTOMCODE !if ${__FILE__} == "PortableApps.comInstallerPlugin.nsi" !include PortableApps.comInstallerPluginCustom.nsh !else !include PortableApps.comInstallerCustom.nsh !endif !endif !ifdef INSTALLERMULTILINGUAL !macro CaseLang _LANG_NAME _LANG_ID !ifdef USES_${_LANG_NAME} ${Case} ${_LANG_ID} !endif !macroend !define CaseLang "!insertmacro CaseLang" !endif Function .onInit ; SectionSetSize 1 ${OPTIONALSECTION1SIZE} ; SectionSetSize 2 ${OPTIONALSECTION2SIZE} ${GetParameters} $0 ClearErrors ${GetOptions} $0 -x $1 IfErrors +2 StrCpy $CMD 1 ClearErrors ${GetOptions} $0 /x $1 IfErrors +2 StrCpy $CMD 1 SetSilent normal !ifdef DownloadURL StrCpy $R0 $EXEFILE "" -15 ${If} $R0 != "_online.paf.exe" ${AndIf} $R0 != "line.paf[1].exe" ;Handle IE's renaming of files when run directly from a download ${AndIf} $R0 != "line.paf[2].exe" ${AndIf} $R0 != "line.paf[3].exe" ${AndIf} $R0 != "line.paf[4].exe" ${AndIf} $R0 != "line.paf[5].exe" ${AndIf} $R0 != "line.paf[6].exe" ${AndIf} $R0 != "line.paf[7].exe" ${AndIf} $R0 != "line.paf[8].exe" ${AndIf} $R0 != "line.paf[9].exe" MessageBox MB_OK|MB_ICONSTOP `PortableApps.com Installers that download files must end with "_online.paf.exe". This is to ensure that users always know that an installer downloads files before it is run. Please rename the file to end in _online.paf.exe before running.` Abort ${EndIf} !endif InitPluginsDir !ifdef INSTALLERMULTILINGUAL ReadEnvStr $PAcLocaleID "PortableApps.comLocaleID" ${Switch} $PAcLocaleID ; Use the Case statements formed earlier. !include "${LangAutoDetectFile}" !delfile "${LangAutoDetectFile}" !undef LangAutoDetectFile StrCpy $LANGUAGE $PAcLocaleID ${Break} ${Default} ${GetOptions} $CMDLINE "/DESTINATION=" $0 ${IfNot} ${Errors} ${AndIf} ${FileExists} `$0\PortableApps.com\PortableAppsPlatform.exe` ;Automated platform install but doesn't support the exact language ;Language Fallbacks, if none, then English ${If} $PAcLocaleID == 3082 ;SpanishInternational ${AndIf} ${USES_SPANISH} == "true" StrCpy $LANGUAGE 1034 ;Spanish ${Else} ${If} $PAcLocaleID == 1034 ;Spanish ${AndIf} ${USES_SPANISHINTERNATIONAL} == "true" StrCpy $LANGUAGE 3082 ;SpanishInternational ${Else} ${If} $PAcLocaleID == 1046 ;PortugueseBR ${AndIf} ${USES_PORTUGUESE} == "true" StrCpy $LANGUAGE 2070 ;Portuguese ${Else} ${If} $PAcLocaleID == 2070 ;Portuguese ${AndIf} ${USES_PORTUGUESEBR} == "true" StrCpy $LANGUAGE 1046 ;PortugueseBR ${Else} StrCpy $LANGUAGE 1033 ;English as last fallback ${EndIf} ${EndIf} ${EndIf} ${EndIf} ${Else} !insertmacro MUI_LANGDLL_DISPLAY ${EndIf} ${EndSwitch} !endif ;=== Check for logging mode ${GetOptions} $CMDLINE "/LOG=" $0 ${IfNot} ${Errors} ${AndIf} $0 == "true" StrCpy $bolLogFile true ${Else} ClearErrors ${EndIf} ;=== Check for a specified installation directory ${GetOptions} $CMDLINE "/DESTINATION=" $0 ${IfNot} ${Errors} !ifdef COMMONFILESPLUGIN StrCpy $INSTDIR "$0CommonFiles\${APPID}" !else ${GetOptions} $CMDLINE "/COPYNUMBER=" $1 ${IfNot} ${Errors} StrCpy $INSTDIR "$0${APPID}_Copy_$1" ${Else} StrCpy $INSTDIR "$0${APPID}" ${EndIf} !endif !ifdef LICENSEAGREEMENT !ifndef EULAVERSION StrCpy $INTERNALEULAVERSION "1" !else StrCpy $INTERNALEULAVERSION ${EULAVERSION} !endif ${If} ${FileExists} "$INSTDIR\Data\PortableApps.comInstaller\license.ini" ReadINIStr $0 "$INSTDIR\Data\PortableApps.comInstaller\license.ini" "PortableApps.comInstaller" "EULAVersion" ClearErrors ${If} $0 == $INTERNALEULAVERSION StrCpy $EULAVERSIONMATCH "true" ${EndIf} ${EndIf} !endif ;=== Check for PortableApps.com Platform ${GetParent} $INSTDIR $0 !ifdef COMMONFILESPLUGIN ${GetParent} $0 $0 !endif ;=== Check that it exists at the right location DetailPrint '$(checkforplatform)' ${If} ${FileExists} `$0\PortableApps.com\PortableAppsPlatform.exe` ;=== Check that it's the real deal MoreInfo::GetProductName `$0\PortableApps.com\PortableAppsPlatform.exe` Pop $1 ${If} $1 == "PortableApps.com Platform" MoreInfo::GetCompanyName `$0\PortableApps.com\PortableAppsPlatform.exe` Pop $1 ${If} $1 == "PortableApps.com" ;=== Check that it's running FindProcDLL::FindProc "PortableAppsPlatform.exe" ${If} $R0 == 1 ;=== Do a partially automated install StrCpy $AUTOMATEDINSTALL "true" ClearErrors ${GetOptions} $CMDLINE "/AUTOCLOSE=" $R0 ${IfNot} ${Errors} ${AndIf} $R0 == "true" StrCpy $AUTOCLOSE "true" ${EndIf} ClearErrors ${GetOptions} $CMDLINE "/HIDEINSTALLER=" $R0 ${IfNot} ${Errors} ${AndIf} $R0 == "true" StrCpy $HIDEINSTALLER "true" ${EndIf} ClearErrors ${GetOptions} $CMDLINE "/MINIMIZEINSTALLER=" $R0 ${IfNot} ${Errors} ${AndIf} $R0 == "true" StrCpy $MINIMIZEINSTALLER "true" ${EndIf} ClearErrors ${GetOptions} $CMDLINE "/SILENT=" $R0 ${IfNot} ${Errors} ${AndIf} $R0 == "true" ;Duplicate of the size calculation code, to be functionalized later SectionGetSize ${MAINSECTIONIDX} $1 ;=== Space Required for App !ifdef MAINSECTIONTITLE SectionGetFlags ${OPTIONALSECTIONIDX} $9 IntOp $9 $9 & ${SF_SELECTED} ${If} $9 >= ${SF_SELECTED} SectionGetSize ${OPTIONALSECTIONIDX} $2 ;=== Space Required for App IntOp $1 $1 + $2 ${EndIf} !endif ${GetRoot} $INSTDIR $2 ;${DriveSpace} `$2\` "/D=F /S=M" $3 ;=== Space Free on Device ${DriveFreeSpaceCustom} "$2\" $3 ;Convert app size to MB from KB IntOp $1 $1 / 1024 ${If} $1 == 0 ;If less than 1MB, round to 1MB StrCpy $1 1 ${EndIf} ${If} $3 <= $1 IntOp $1 $1 * 1024 IntOp $3 $3 * 1024 !ifndef PLUGININSTALLER ;=== If not a plugin installer, add the current install size to free space ${If} ${FileExists} $INSTDIR ${GetSize} `$INSTDIR` "/M=*.* /S=0K /G=0" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Root Install Size ${GetSize} `$INSTDIR\App` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current App Install Size ${GetSize} `$INSTDIR\Other` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Other Install Size ${If} `${ADDONSDIRECTORYPRESERVE}` != "NONE" ${AndIf} ${FileExists} `$INSTDIR\${ADDONSDIRECTORYPRESERVE}` ${GetSize} `$INSTDIR\${ADDONSDIRECTORYPRESERVE}` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Size of Data directory IntOp $3 $3 - $4 ;=== Remove the plugins directory from the free space calculation ${EndIf} ${EndIf} !else !ifdef COMMONFILESPLUGIN ;Duplicate code for now, to do above for CommonFiles as well ${If} ${FileExists} $INSTDIR ${GetSize} `$INSTDIR` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Install Size ${EndIf} !endif !endif ${If} $3 <= $1 MessageBox MB_OK|MB_ICONEXCLAMATION "$(notenoughspace)" Abort ${EndIf} ${EndIf} !ifdef LICENSEAGREEMENT ${If} $EULAVERSIONMATCH == "true" SetSilent silent ${EndIf} !else SetSilent silent !endif ${EndIf} ClearErrors ${GetOptions} $CMDLINE "/SILENTLANGUAGEMODE=" $R0 ${IfNot} ${Errors} ${If} $R0 == "auto" ${OrIf} $R0 == "never" ${OrIf} $R0 == "always" StrCpy $SILENTLANGUAGEMODE $R0 ${Else} StrCpy $SILENTLANGUAGEMODE "auto" ${EndIf} ${Else} StrCpy $SILENTLANGUAGEMODE "auto" ${EndIf} ${EndIf} ${EndIf} ${EndIf} ${EndIf} ${Else} ClearErrors ;=== Check legacy location ${GetOptions} $CMDLINE "-o" $R0 ${IfNot} ${Errors} !ifdef COMMONFILESPLUGIN StrCpy $INSTDIR "$R0CommonFiles\${APPID}" !else StrCpy $INSTDIR "$R0${APPID}" !endif ${Else} ;=== No installation directory found ClearErrors ${If} ${FileExists} "$PROFILE\PortableApps\*.*" StrCpy $FOUNDPORTABLEAPPSPATH "$Profile\PortableApps" ${Else} ${GetDrives} "HDD+FDD" GetDrivesCallBack ${EndIf} ${If} $FOUNDPORTABLEAPPSPATH != "" !ifdef COMMONFILESPLUGIN StrCpy $INSTDIR "$FOUNDPORTABLEAPPSPATH\CommonFiles\${APPID}" !else StrCpy $INSTDIR "$FOUNDPORTABLEAPPSPATH\${APPID}" !endif ${Else} ;If within Program Files, TEMP or IE Cache, no default install path ${WordFind} "$EXEDIR\" "$PROGRAMFILES\" "*" $R0 ${WordFind} "$EXEDIR\" "$PROGRAMFILES64\" "*" $R1 ${WordFind} "$EXEDIR\" "$INTERNET_CACHE\" "*" $R2 ${WordFind} "$EXEDIR\" "$TEMP\" "*" $R3 ${If} $R0 > 0 ${OrIf} $R1 > 0 ${OrIf} $R2 > 0 ${OrIf} $R3 > 0 StrCpy $INSTDIR "" ${Else} !ifdef COMMONFILESPLUGIN StrCpy $INSTDIR "$EXEDIR\CommonFiles\${APPID}" !else StrCpy $INSTDIR "$EXEDIR\${APPID}" !endif ${EndIf} ${EndIf} ${EndIf} ${EndIf} !ifdef MAINSECTIONTITLE !ifdef OPTIONALSECTIONPRESELECTEDIFNONENGLISHINSTALL ;=== If it's not English, select the optional component (languages) by default ${IfThen} $LANGUAGE != 1033 ${|} SectionSetFlags 1 ${OPTIONALSECTIONIDX} ${|} !endif ${If} ${Silent} ${If} "${OPTIONALSECTIONINSTALLEDWHENSILENT}" == "true" SectionSetFlags 1 ${OPTIONALSECTIONIDX} ${ElseIf} "${OptionalSectionSelectedInstallType}" == "Multilingual" ${If} $SILENTLANGUAGEMODE != "never" ${If} $SILENTLANGUAGEMODE == "always" SectionSetFlags 1 ${OPTIONALSECTIONIDX} ${Else} ${IfThen} $LANGUAGE != 1033 ${|} SectionSetFlags 1 ${OPTIONALSECTIONIDX} ${|} ${EndIf} ${EndIf} ${EndIf} ${EndIf} !endif !ifdef COPYLOCALFILES StrCpy $CopyLocalFilesFrom "" ${If} "${CopyFromRegPath}" != "" ${registry::Read} "${CopyFromRegPath}" "${CopyFromRegKey}" $R0 $R1 ${If} $R0 != "" ;Strip trailing slash if there StrCpy $1 $R0 "" -1 ${If} $1 == "\" StrCpy $R0 $R0 -1 ${EndIf} ;Go up directories if needed ${If} "${CopyFromRegRemoveDirectories}" != "" StrCpy $1 1 ${Do} ${GetParent} $R0 $R0 IntOp $1 $1 + 1 ${LoopUntil} $1 > "${CopyFromRegRemoveDirectories}" ${EndIf} ;Check for existence ${If} ${FileExists} "$R0\*.*" StrCpy $CopyLocalFilesFrom $R0 ${EndIf} ${EndIf} ${EndIf} ;Fallback to direct entry ${If} $CopyLocalFilesFrom == "" ${AndIf} "${CopyFromDirectory}" != "" StrCpy $CopyLocalFilesFrom "${CopyFromDirectory}" ${WordReplace} $CopyLocalFilesFrom "%PROGRAMFILES%" $PROGRAMFILES + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%PROGRAMFILES32%" $PROGRAMFILES32 + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%PROGRAMFILES64%" $PROGRAMFILES64 + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%COMMONFILES%" $COMMONFILES + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%COMMONFILES32%" $COMMONFILES32 + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%COMMONFILES64%" $COMMONFILES64 + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%DESKTOP%" $DESKTOP + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%WINDIR%" $WINDIR + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%SYSDIR%" $SYSDIR + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%APPDATA%" $APPDATA + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%LOCALAPPDATA%" $LOCALAPPDATA + $CopyLocalFilesFrom ${WordReplace} $CopyLocalFilesFrom "%TEMP%" $TEMP + $CopyLocalFilesFrom ${EndIf} ${If} ${FileExists} "$CopyLocalFilesFrom\*.*" SectionGetSize ${MAINSECTIONIDX} $0 ${GetSize} $CopyLocalFilesFrom "/M=*.* /S=0K /G=1" $1 $2 $3 IntOp $0 $0 + $1 SectionSetSize ${MAINSECTIONIDX} $0 ${EndIf} !endif !ifdef AdditionalInstallSize SectionGetSize ${MAINSECTIONIDX} $0 IntOp $0 $0 + ${AdditionalInstallSize} SectionSetSize ${MAINSECTIONIDX} $0 !endif !ifdef DEFAULTSIZE SectionSetSize ${MAINSECTIONIDX} `${DEFAULTSIZE}` !endif ${If} "${CHECKRUNNING}" != "NONE" ;=== Check if app is running? RunningTryAgain: FindProcDLL::FindProc "${CHECKRUNNING}" ${If} $R0 == 1 MessageBox MB_OKCANCEL|MB_ICONINFORMATION $(runwarning) IDOK RunningTryAgain IDCANCEL RunningCancel RunningCancel: Abort ${EndIf} ${EndIf} FunctionEnd Function PreWelcome ${IfThen} $AUTOMATEDINSTALL == "true" ${|} Abort ${|} FunctionEnd !ifdef LICENSEAGREEMENT Function PreLicense ${If} $AUTOMATEDINSTALL == "true" ${AndIf} $EULAVERSIONMATCH == "true" Abort ${EndIf} !ifndef EULAVERSION StrCpy $INTERNALEULAVERSION "1" !else StrCpy $INTERNALEULAVERSION "${EULAVERSION}" !endif ${If} ${FileExists} "$INSTDIR\Data\PortableApps.comInstaller\license.ini" ReadINIStr $0 "$INSTDIR\Data\PortableApps.comInstaller\license.ini" "PortableApps.comInstaller" "EULAVersion" ClearErrors ${If} $0 == $INTERNALEULAVERSION ${AndIf} $AUTOMATEDINSTALL == "true" Abort ${EndIf} ${EndIf} FunctionEnd Function ShowLicense ${If} $AUTOMATEDINSTALL == "true" ${TBProgress} 20 ${TBProgress_State} Paused ${EndIf} FunctionEnd Function LeaveLicense ${If} $AUTOMATEDINSTALL == "true" ${TBProgress_State} NoProgress ${EndIf} FunctionEnd !endif Function ShowInstFiles ${If} ${IsNT} ${IfNot} ${AtLeastWinXP} MessageBox MB_YESNO|MB_ICONQUESTION|MB_TOPMOST `${PORTABLEAPPNAME} requires Windows XP or newer, continue anyway?` IDYES +3 IDNO 0 Call .onInstFailed Quit ${EndIf} ${Else} MessageBox MB_YESNO|MB_ICONQUESTION|MB_TOPMOST `${PORTABLEAPPNAME} requires Windows XP or newer, continue anyway?` IDYES +3 IDNO 0 Call .onInstFailed Quit ${EndIf} ${If} ${FileExists} `$INSTDIR\${APPNAME}.exe` MoreInfo::GetCompanyName `$INSTDIR\${APPNAME}.exe` Pop $0 ${Select} $0 ${Case2} `${BRANDING}` `${BRANDING2}` ${CaseElse} MESSAGEBOX MB_OKCANCEL|MB_ICONINFORMATION|MB_TOPMOST `A previous version of ${PORTABLEAPPNAME}, designed by a different developer has been detected. If you continue, settings will be reset to prevent conflicts.` IDOK +3 IDCANCEL 0 Call .onInstFailed Quit ${EndSelect} ${EndIf} w7tbp::Start FunctionEnd !ifdef MAINSECTIONTITLE Function PreComponents ${If} $AUTOCLOSE != "true" ${OrIfNot} ${FileExists} "$INSTDIR\App\AppInfo\appinfo.ini" Return ${EndIf} ReadINIStr $0 "$INSTDIR\App\AppInfo\appinfo.ini" "Details" "InstallType" ClearErrors ${If} $0 == "${OPTIONALSECTIONSELECTEDINSTALLTYPE}" SectionSetFlags 1 ${OPTIONALSECTIONIDX} Abort ${EndIf} ;=== Check not selected ${If} $0 == "${OPTIONALSECTIONNOTSELECTEDINSTALLTYPE}" SectionSetFlags 0 ${OPTIONALSECTIONIDX} Abort ${EndIf} FunctionEnd !endif Function PreDirectory ${IfThen} $AUTOMATEDINSTALL != "true" ${|} Return ${|} SectionGetSize ${MAINSECTIONIDX} $1 ;=== Space Required for App !ifdef MAINSECTIONTITLE SectionGetFlags ${OPTIONALSECTIONIDX} $9 IntOp $9 $9 & ${SF_SELECTED} ${If} $9 >= ${SF_SELECTED} SectionGetSize ${OPTIONALSECTIONIDX} $2 ;=== Space Required for App IntOp $1 $1 + $2 ${EndIf} !endif ${GetRoot} $INSTDIR $2 ;${DriveSpace} `$2\` "/D=F /S=M" $3 ;=== Space Free on Device ${DriveFreeSpaceCustom} "$2\" $3 IntOp $1 $1 / 1024 ${If} $3 <= $1 IntOp $1 $1 * 1024 IntOp $3 $3 * 1024 !ifndef PLUGININSTALLER ;=== If not a plugin installer, add the current install size to free space ${If} ${FileExists} $INSTDIR ${GetSize} $INSTDIR "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Install Size ${If} ${FileExists} `$INSTDIR\Data` ${GetSize} `$INSTDIR\Data` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Size of Data directory IntOp $3 $3 - $4 ;=== Remove the data directory from the free space calculation ${EndIf} ${If} `${ADDONSDIRECTORYPRESERVE}` != "NONE" ${AndIf} ${FileExists} `$INSTDIR\${ADDONSDIRECTORYPRESERVE}` ${GetSize} `$INSTDIR\${ADDONSDIRECTORYPRESERVE}` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Size of Data directory IntOp $3 $3 - $4 ;=== Remove the plugins directory from the free space calculation ${EndIf} ${EndIf} !else !ifdef COMMONFILESPLUGIN ;Duplicate code for now, to do above for CommonFiles as well ${If} ${FileExists} $INSTDIR ${GetSize} `$INSTDIR` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Install Size ${EndIf} !endif !endif ${If} $3 <= $1 MessageBox MB_OK|MB_ICONEXCLAMATION "$(notenoughspace)" Return ${EndIf} ${EndIf} ;=== Check if app is running? ${IfThen} "${CHECKRUNNING}" == "NONE" ${|} Abort ${|} FindProcDLL::FindProc "${CHECKRUNNING}" ${IfThen} $R0 != "1" ${|} Abort ${|} MessageBox MB_OK|MB_ICONINFORMATION $(runwarning) FunctionEnd Function LeaveDirectory ;=== Prevent destination string changes without user verification ${GetTime} "" "LS" $0 $1 $2 $3 $4 $5 $6 ${If} $strTimeStore == "$0 $1 $2 $3 $4 $5 $6" ${GetParent} $INSTDIR $0 ${GetParent} $0 $0 StrCpy $1 $0 3 -6 StrCpy $2 $0 1 -2 ${If} $2 == "e" ${AndIf} $1 == "ber" Abort ${EndIf} ${EndIf} GetInstDirError $0 ;=== Does it already exist? (upgrade) ${If} ${FileExists} $INSTDIR ${AndIf} "${CHECKRUNNING}" != "NONE" ;=== Check if app is running? FindProcDLL::FindProc "${CHECKRUNNING}" ${If} $R0 = 1 MessageBox MB_OK|MB_ICONINFORMATION $(runwarning) Abort ${EndIf} ${EndIf} ; 0 is valid, enough space, all fine ${Select} $0 ${Case} 1 MessageBox MB_OK|MB_ICONINFORMATION $(invaliddirectory) Abort ${Case} 2 ${IfNot} ${FileExists} $INSTDIR ;=== Is upgrade MessageBox MB_OK|MB_ICONEXCLAMATION $(notenoughspace) Abort ${EndIf} SectionGetSize ${MAINSECTIONIDX} $1 ;=== Space Required for App !ifdef MAINSECTIONTITLE SectionGetFlags ${OPTIONALSECTIONIDX} $9 IntOp $9 $9 & ${SF_SELECTED} ${If} $9 >= ${SF_SELECTED} SectionGetSize ${OPTIONALSECTIONIDX} $2 ;=== Space Required for App IntOp $1 $1 + $2 ${EndIf} !endif ${GetRoot} $INSTDIR $2 ;${DriveSpace} `$2\` "/D=F /S=K" $3 ;=== Space Free on Device ${DriveFreeSpaceCustom} "$2\" $3 !ifndef PLUGININSTALLER ;=== If not a plugin installer, add the current install size to free space ${GetSize} `$INSTDIR` "/M=*.* /S=0K /G=0" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Root Install Size ${GetSize} `$INSTDIR\App` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current App Install Size ${GetSize} `$INSTDIR\Other` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Other Install Size ${If} `${ADDONSDIRECTORYPRESERVE}` != "NONE" ${AndIf} ${FileExists} `$INSTDIR\${ADDONSDIRECTORYPRESERVE}` ${GetSize} `$INSTDIR\${ADDONSDIRECTORYPRESERVE}` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Size of Data directory IntOp $3 $3 - $4 ;=== Remove the plugins directory from the free space calculation ${EndIf} !else !ifdef COMMONFILESPLUGIN ;Duplicate code for now, to do above for CommonFiles as well ${GetSize} `$INSTDIR` "/M=*.* /S=0K /G=1" $4 $5 $6 ;=== Current installation size IntOp $3 $3 + $4 ;=== Space Free + Current Install Size !endif !endif ${If} $3 <= $1 MessageBox MB_OK|MB_ICONEXCLAMATION "$(notenoughspace)" Abort ${EndIf} ${EndSelect} ;Check for Program Files ReadEnvStr $0 IPromiseNotToComplainWhenPortableAppsDontWorkRightInProgramFiles ${If} $0 != "I understand that this may not work and that I can not ask for help with any of my apps when operating in this fashion." ${WordFind} "$INSTDIR\" "$PROGRAMFILES\" "*" $R0 ${If} $R0 > 0 MessageBox MB_OK|MB_ICONINFORMATION "$(invaliddirectory) [$PROGRAMFILES or sub-directories]" Abort ${EndIf} ${WordFind} "$INSTDIR\" "$PROGRAMFILES64\" "*" $R0 ${If} $R0 > 0 MessageBox MB_OK|MB_ICONINFORMATION "$(invaliddirectory) [$PROGRAMFILES64 or sub-directories]" Abort ${EndIf} ${EndIf} FunctionEnd Function .onVerifyInstDir ${If} $INSTDIR != "" ${AndIf} $strLastDirectory != "" StrLen $0 $INSTDIR StrLen $1 $strLastDirectory IntOp $2 $1 + 2 IntOp $3 $1 - 2 ${If} $0 > $2 ${OrIf} $0 < $3 ${GetTime} "" "LS" $0 $1 $2 $3 $4 $5 $6 StrCpy $strTimeStore "$0 $1 $2 $3 $4 $5 $6" ${EndIf} ${EndIf} StrCpy $strLastDirectory $INSTDIR FunctionEnd !ifndef SC_CLOSE !define SC_CLOSE 0xF060 !endif Function PreFinish ${IfThen} $AUTOCLOSE == "true" ${|} Abort ${|} ;Fix for bug in MUI2 with MUI_FINISHPAGE_CANCEL_ENABLED EnableWindow $mui.Button.Cancel 1 System::Call 'USER32::GetSystemMenu(i $hwndparent,i0)i.s' System::Call 'USER32::EnableMenuItem(is,i${SC_CLOSE},i0)' FunctionEnd Function GetDrivesCallBack ;=== Skip usual floppy letters ${If} $8 == "FDD" ${If} $9 == "A:\" ${OrIf} $9 == "B:\" Push $0 Return ${EndIf} ${EndIf} ${If} ${FileExists} $9PortableApps StrCpy $FOUNDPORTABLEAPPSPATH $9PortableApps ${EndIf} Push $0 FunctionEnd Section "-${MAINSECTIONTITLE}" ${If} $MINIMIZEINSTALLER == "true" ShowWindow $HWNDPARENT ${SW_MINIMIZE} ${EndIf} ${If} $HIDEINSTALLER == "true" ShowWindow $HWNDPARENT ${SW_HIDE} ${EndIf} ${If} ${FileExists} "$INSTDIR\*.*" StrCpy $bolAppUpgrade true ${EndIf} ${If} $(installingstatus) != "" StrCpy $InstallingStatusString "$(installingstatus)" ${Else} StrCpy $InstallingStatusString "$(MUI_TEXT_INSTALLING_TITLE)" ${EndIf} SectionIn RO SetOutPath $INSTDIR ${If} $bolAppUpgrade == true ${If} $(prepareupgrade) == "" DetailPrint $InstallingStatusString ${Else} DetailPrint $(prepareupgrade) ${EndIf} ${Else} DetailPrint $InstallingStatusString ${EndIf} SetDetailsPrint ListOnly ############## # POST INSTALL ############## ${If} ${FileExists} `$INSTDIR\${APPNAME}.exe` MoreInfo::GetCompanyName `$INSTDIR\${APPNAME}.exe` Pop $0 ${Select} $0 ${Case2} `${BRANDING}` `${BRANDING2}` ${CaseElse} RMDIR /r `$INSTDIR\Data` Delete `$INSTDIR\*.*` ${EndSelect} ${EndIf} ${If} $CMD != 1 StrCpy $0 1 ${Do} ClearErrors ReadINIStr $1 `${INS}` FilesToPreserve PreserveFile$0 ${IfThen} ${Errors} ${|} ${ExitDo} ${|} WriteINIStr `${INI}` FilesToPreserve PreserveFile$0 `$1` ${If} ${FileExists} `$INSTDIR\$1` ${GetFileName} `$1` `$2` Rename `$INSTDIR\$1` `$INSTDIR\~$0$2` ${EndIf} IntOp $0 $0 + 1 ${Loop} StrCpy $0 1 ${Do} ClearErrors ReadINIStr $1 `${INS}` DirectoriesToPreserve PreserveDirectory$0 ${IfThen} ${Errors} ${|} ${ExitDo} ${|} WriteINIStr `${INI}` DirectoriesToPreserve PreserveDirectory$0 `$1` ${If} ${FileExists} `$INSTDIR\$1` ${GetAfterChar} `$1` `\` `$2` Rename `$INSTDIR\$1` `$INSTDIR\~$0$2` ${EndIf} IntOp $0 $0 + 1 ${Loop} ${EndIf} ${If} ${FileExists} `$INSTDIR\${APPNAME}.ini` ${ConfigRead} `$INSTDIR\${APPNAME}.ini` AdditionalParameters= $ADDITIONALPARAMETERS ${ConfigRead} `$INSTDIR\${APPNAME}.ini` RunLocally= $RUNLOCALLY ${EndIf} ClearErrors RMDir /r `$INSTDIR\App` ${If} ${Errors} ${Close} `${CABW}` "" RMDir /r `$INSTDIR\App` ${EndIf} ClearErrors RMDir /r `${OTHER}` ${If} ${Errors} ${Close} `${CABW}` "" RMDir /r `${OTHER}` ${EndIf} ${If} $bolAppUpgrade == true SetDetailsPrint both DetailPrint $InstallingStatusString SetDetailsPrint ListOnly ${EndIf} SetOutPath `$INSTDIR` File /x thumbs.db `..\..\*.exe` SetOutPath `$INSTDIR\App` File /r /x thumbs.db `..\..\App\*.*` SetOutPath `${OTHER}` File /x thumbs.db `..\..\Other\*.*` StrCmp $CMD 1 OFFLINE !define FILE1 epm_trial.exe !define SETOUTDIR `$PLUGINSDIR\Downloaded` SetOutPath `${SETOUTDIR}` File `${NSISDIR}\..\7zip\innounp.exe` File `${NSISDIR}\..\7zip\7z.dll` File `${NSISDIR}\..\7zip\7z.exe` ${ReDef} DownloadName `${FULLNAME}` ${ReDef} DownloadFilename `${FILE1}` ${If} ${FileExists} `$EXEDIR\${FILE1}` StrCpy $DOWNLOADEDFILE `$EXEDIR\${FILE1}` ${Else} StrCpy $DOWNLOADEDFILE `${SETOUTDIR}\${FILE1}` StrCpy $DownloadURLActual http://download.easeus.com/trial/epm_trial.exe CreateDirectory `${SETOUTDIR}` DOWNLOAD: SetDetailsPrint both ${If} $(downloading) != "" DetailPrint $(downloading) ${Else} DetailPrint "Downloading ${FULLNAME}..." ${EndIf} SetDetailsPrint none Delete "$DOWNLOADEDFILE" ${If} $(downloading) != "" inetc::get /CONNECTTIMEOUT 30 /NOCOOKIES /TRANSLATE $(downloading) $(downloadconnecting) $(downloadsecond) $(downloadminute) $(downloadhour) $(downloadplural) "%dkB (%d%%) of %dkB @ %d.%01dkB/s" " (%d %s%s $(downloadremaining))" "$DownloadURLActual" "$DOWNLOADEDFILE" /END ${Else} inetc::get /CONNECTTIMEOUT 30 /NOCOOKIES /TRANSLATE "Downloading %s..." "Connecting..." second minute hour s "%dkB (%d%%) of %dkB @ %d.%01dkB/s" " (%d %s%s remaining)" "$DownloadURLActual" "$DOWNLOADEDFILE" /END ${EndIf} SetDetailsPrint both DetailPrint $InstallingStatusString SetDetailsPrint ListOnly Pop $DOWNLOADRESULT ${If} $DOWNLOADRESULT != OK Delete "$DOWNLOADEDFILE" ${If} $SECONDDOWNLOADATTEMPT != true ${AndIf} $DOWNLOADRESULT != Cancelled StrCpy $SECONDDOWNLOADATTEMPT true Goto DOWNLOAD ${EndIf} SetDetailsPrint textonly DetailPrint "" SetDetailsPrint listonly ${TBProgress_State} Error ${If} $(downloadfailed) != "" MessageBox MB_ICONEXCLAMATION|MB_TOPMOST $(downloadfailed) DetailPrint $(downloadfailed) ${Else} MessageBox MB_ICONEXCLAMATION|MB_TOPMOST `The installer was unable to download ${FULLNAME}. The installation of the portable app will be incomplete without it. Please try installing again. (ERROR: $DOWNLOADRESULT)` DetailPrint `The installer was unable to download ${FULLNAME}. The installation of the portable app will be incomplete without it. Please try installing again. (ERROR: $DOWNLOADRESULT)` ${EndIf} ${TBProgress_State} NoProgress Goto OFFLINE ${EndIf} ${EndIf} ${If} ${FileExists} `$DOWNLOADEDFILE` ClearErrors RMDir /r `${APPDIR}` ${If} ${Errors} ${Close} `${CABW}` "" RMDir /r `${APPDIR}` ${EndIf} SetDetailsPrint both DetailPrint $(u) SetDetailsPrint none CreateDirectory `$INSTDIR\TEMP` nsExec::ExecToStack `"${SETOUTDIR}\innounp.exe" -x "$DOWNLOADEDFILE" -d"$INSTDIR\TEMP"` Rename `$INSTDIR\TEMP\{app}` `${APPDIR}` Rename `$INSTDIR\TEMP\{win}\system32` `${DEFDATA}\SysDir` RMDir /r `$INSTDIR\TEMP` Delete `${APPDIR}\bin\DataMana,1.dll` Rename `${APPDIR}\bin\DataMana,2.dll` `${APPDIR}\bin\DataMana.dll` Delete `${APPDIR}\bin\DevCtrl,1.dll` Rename `${APPDIR}\bin\DevCtrl,2.dll` `${APPDIR}\bin\DevCtrl.dll` Delete `${APPDIR}\bin\FatLib,1.dll` Rename `${APPDIR}\bin\FatLib,2.dll` `${APPDIR}\bin\FatLib.dll` Delete `${APPDIR}\bin\GetDriverInfo,1.dll` Rename `${APPDIR}\bin\GetDriverInfo,2.dll` `${APPDIR}\bin\GetDriverInfo.dll` Delete `${APPDIR}\bin\GetDriverInfo,1.dll` Rename `${APPDIR}\bin\GetDriverInfo,2.dll` `${APPDIR}\bin\GetDriverInfo.dll` Delete `${APPDIR}\bin\license.rtf` Delete `${APPDIR}\bin\LicenseMgr.dll` Delete `${APPDIR}\bin\Microsoft.VC90.CRT,1.manifest` Rename `${APPDIR}\bin\Microsoft.VC90.CRT,2.manifest` `${APPDIR}\bin\Microsoft.VC90.CRT.manifest` Delete `${APPDIR}\bin\msvcm90,1.dll` Rename `${APPDIR}\bin\msvcm90,2.dll` `${APPDIR}\bin\msvcm90.dll` Delete `${APPDIR}\bin\msvcp90,1.dll` Rename `${APPDIR}\bin\msvcp90,2.dll` `${APPDIR}\bin\msvcp90.dll` Delete `${APPDIR}\bin\msvcr90,1.dll` Rename `${APPDIR}\bin\msvcr90,2.dll` `${APPDIR}\bin\msvcr90.dll` Delete `${APPDIR}\bin\RecLib,1.dll` Rename `${APPDIR}\bin\RecLib,2.dll` `${APPDIR}\bin\RecLib.dll` Delete `${APPDIR}\bin\MSVCP60,1.DLL` Rename `${APPDIR}\bin\MSVCP60,2.DLL` `${APPDIR}\bin\MSVCP60.DLL` CreateDirectory `${DEFDATA}\Languages\English` CreateDirectory `${DEFDATA}\Languages\French` CreateDirectory `${DEFDATA}\Languages\German` CreateDirectory `${DEFDATA}\Languages\Japanese` CreateDirectory `${DEFDATA}\Languages\Polish` CreateDirectory `${DEFDATA}\Languages\Portuguese` CreateDirectory `${DEFDATA}\Languages\Spanish` ;=== language.ini Rename `${APPDIR}\bin\language,1.ini` `${DEFDATA}\Languages\English\language.ini` Rename `${APPDIR}\bin\language,2.ini` `${DEFDATA}\Languages\German\language.ini` Rename `${APPDIR}\bin\language,3.ini` `${DEFDATA}\Languages\French\language.ini` Rename `${APPDIR}\bin\language,4.ini` `${DEFDATA}\Languages\Spanish\language.ini` Rename `${APPDIR}\bin\language,5.ini` `${DEFDATA}\Languages\Portuguese\language.ini` Rename `${APPDIR}\bin\language,6.ini` `${DEFDATA}\Languages\Polish\language.ini` Rename `${APPDIR}\bin\language,7.ini` `${DEFDATA}\Languages\Japanese\language.ini` ;=== start.ini Rename `${APPDIR}\bin\start,1.ini` `${DEFDATA}\Languages\English\start.ini` Rename `${APPDIR}\bin\start,2.ini` `${DEFDATA}\Languages\German\start.ini` Rename `${APPDIR}\bin\start,3.ini` `${DEFDATA}\Languages\French\start.ini` Rename `${APPDIR}\bin\start,4.ini` `${DEFDATA}\Languages\Spanish\start.ini` Rename `${APPDIR}\bin\start,5.ini` `${DEFDATA}\Languages\Portuguese\start.ini` Rename `${APPDIR}\bin\start,6.ini` `${DEFDATA}\Languages\Polish\start.ini` Rename `${APPDIR}\bin\start,7.ini` `${DEFDATA}\Languages\Japanese\start.ini` ;=== UIConfigAdd.ini Rename `${APPDIR}\bin\UIConfigAdd,1.ini` `${DEFDATA}\Languages\English\UIConfigAdd.ini` Rename `${APPDIR}\bin\UIConfigAdd,2.ini` `${DEFDATA}\Languages\German\UIConfigAdd.ini` Rename `${APPDIR}\bin\UIConfigAdd,3.ini` `${DEFDATA}\Languages\French\UIConfigAdd.ini` Rename `${APPDIR}\bin\UIConfigAdd,4.ini` `${DEFDATA}\Languages\Spanish\UIConfigAdd.ini` Rename `${APPDIR}\bin\UIConfigAdd,5.ini` `${DEFDATA}\Languages\Portuguese\UIConfigAdd.ini` Rename `${APPDIR}\bin\UIConfigAdd,6.ini` `${DEFDATA}\Languages\Polish\UIConfigAdd.ini` Rename `${APPDIR}\bin\UIConfigAdd,7.ini` `${DEFDATA}\Languages\Japanese\UIConfigAdd.ini` ;=== ENGLISH CopyFiles /SILENT `${APPDIR}\res\16_16_8.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\16_16_32.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\32_32_8.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\32_32_32.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\48_48_8.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\48_48_32.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\help-icon16.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\icon2.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\main16.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\main32.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\record.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\winpe.ico` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\1.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\2.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\3.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\4.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\5.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\6.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\7.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\8.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-disabled.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-hover.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-normal.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\cd-16px.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\DiskCopyMainIco.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\DRW-disabled.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\DRW-hover.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\DRW-normal.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-disabled.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-hover.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-image.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-normal.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\EPM_Help.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpHover.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpPress.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\EPM_LOGO.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\EPM_Success.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\EPM_WinPE_LOGO.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\errorIcon.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\freeware.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\Helpicon.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\helptool_opendir.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\Home_background.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\line.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\logo.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\logo_hover.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\logo_press.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\mark.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\new.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\questionIcon.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\success_b.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_left.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_mid.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_right.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_left.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_mid.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_right.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_left.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_mid.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tab_btn_right.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\tip.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\todo-disabled.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\todo-hover.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\todo-normal.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_select.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_unselect.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_select.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_unselect.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\UnconnectServer.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-disable.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-normal.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-press.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\warnIcon.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\hand.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\helptool_closedir.png` `${DEFDATA}\Languages\English` CopyFiles /SILENT `${APPDIR}\res\helptool_file.png` `${DEFDATA}\Languages\English` ;=== GERMAN CopyFiles /SILENT `${APPDIR}\res\16_16_8.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\16_16_32.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\32_32_8.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\32_32_32.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\48_48_8.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\48_48_32.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\help-icon16.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\icon2.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\main16.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\main32.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\record.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\winpe.ico` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\1.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\2.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\3.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\4.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\5.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\6.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\7.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\8.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-disabled.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-hover.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-normal.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\cd-16px.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\DiskCopyMainIco.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\DRW-disabled.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\DRW-hover.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\DRW-normal.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-disabled.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-hover.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-image.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-normal.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\EPM_Help.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpHover.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpPress.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\EPM_LOGO.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\EPM_Success.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\EPM_WinPE_LOGO.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\errorIcon.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\freeware.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\Helpicon.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\helptool_opendir.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\Home_background.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\line.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\logo.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\logo_hover.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\logo_press.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\mark.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\new.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\questionIcon.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\success_b.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_left.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_mid.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_right.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_left.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_mid.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_right.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_left.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_mid.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tab_btn_right.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\tip.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\todo-disabled.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\todo-hover.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\todo-normal.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_select.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_unselect.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_select.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_unselect.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\UnconnectServer.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-disable.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-normal.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-press.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\warnIcon.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\hand.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\helptool_closedir.png` `${DEFDATA}\Languages\German` CopyFiles /SILENT `${APPDIR}\res\helptool_file.png` `${DEFDATA}\Languages\German` ;=== FRENCH CopyFiles /SILENT `${APPDIR}\res\16_16_8.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\16_16_32.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\32_32_8.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\32_32_32.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\48_48_8.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\48_48_32.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\help-icon16.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\icon2.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\main16.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\main32.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\record.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\winpe.ico` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\1.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\2.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\3.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\4.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\5.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\6.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\7.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\8.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-disabled.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-hover.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-normal.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\cd-16px.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\DiskCopyMainIco.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\DRW-disabled.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\DRW-hover.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\DRW-normal.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-disabled.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-hover.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-image.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-normal.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\EPM_Help.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpHover.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpPress.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\EPM_LOGO.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\EPM_Success.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\EPM_WinPE_LOGO.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\errorIcon.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\freeware.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\Helpicon.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\helptool_opendir.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\Home_background.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\line.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\logo.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\logo_hover.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\logo_press.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\mark.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\new.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\questionIcon.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\success_b.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_left.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_mid.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_right.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_left.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_mid.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_right.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_left.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_mid.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tab_btn_right.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\tip.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\todo-disabled.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\todo-hover.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\todo-normal.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_select.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_unselect.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_select.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_unselect.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\UnconnectServer.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-disable.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-normal.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-press.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\warnIcon.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\hand.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\helptool_closedir.png` `${DEFDATA}\Languages\French` CopyFiles /SILENT `${APPDIR}\res\helptool_file.png` `${DEFDATA}\Languages\French` ;=== Spanish CopyFiles /SILENT `${APPDIR}\res\16_16_8.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\16_16_32.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\32_32_8.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\32_32_32.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\48_48_8.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\48_48_32.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\help-icon16.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\icon2.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\main16.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\main32.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\record.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\winpe.ico` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\1.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\2.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\3.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\4.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\5.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\6.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\7.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\8.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-disabled.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-hover.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-normal.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\cd-16px.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\DiskCopyMainIco.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\DRW-disabled.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\DRW-hover.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\DRW-normal.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-disabled.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-hover.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-image.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-normal.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\EPM_Help.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpHover.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpPress.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\EPM_LOGO.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\EPM_Success.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\EPM_WinPE_LOGO.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\errorIcon.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\freeware.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\Helpicon.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\helptool_opendir.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\Home_background.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\line.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\logo.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\logo_hover.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\logo_press.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\mark.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\new.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\questionIcon.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\success_b.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_left.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_mid.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_right.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_left.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_mid.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_right.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_left.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_mid.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_right.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\tip.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\todo-disabled.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\todo-hover.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\todo-normal.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_select.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_unselect.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_select.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_unselect.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\UnconnectServer.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-disable.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-normal.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-press.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\warnIcon.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\hand.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\helptool_closedir.png` `${DEFDATA}\Languages\Spanish` CopyFiles /SILENT `${APPDIR}\res\helptool_file.png` `${DEFDATA}\Languages\Spanish` ;=== Portuguese CopyFiles /SILENT `${APPDIR}\res\16_16_8.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\16_16_32.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\32_32_8.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\32_32_32.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\48_48_8.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\48_48_32.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\help-icon16.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\icon2.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\main16.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\main32.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\record.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\winpe.ico` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\1.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\2.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\3.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\4.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\5.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\6.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\7.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\8.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-disabled.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-hover.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-normal.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\cd-16px.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\DiskCopyMainIco.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\DRW-disabled.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\DRW-hover.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\DRW-normal.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-disabled.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-hover.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-image.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-normal.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\EPM_Help.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpHover.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpPress.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\EPM_LOGO.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\EPM_Success.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\EPM_WinPE_LOGO.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\errorIcon.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\freeware.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\Helpicon.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\helptool_opendir.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\Home_background.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\line.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\logo.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\logo_hover.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\logo_press.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\mark.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\new.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\questionIcon.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\success_b.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_left.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_mid.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_right.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_left.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_mid.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_right.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_left.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_mid.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_right.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\tip.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\todo-disabled.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\todo-hover.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\todo-normal.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_select.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_unselect.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_select.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_unselect.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\UnconnectServer.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-disable.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-normal.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-press.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\warnIcon.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\hand.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\helptool_closedir.png` `${DEFDATA}\Languages\Portuguese` CopyFiles /SILENT `${APPDIR}\res\helptool_file.png` `${DEFDATA}\Languages\Portuguese` ;=== Polish CopyFiles /SILENT `${APPDIR}\res\16_16_8.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\16_16_32.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\32_32_8.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\32_32_32.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\48_48_8.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\48_48_32.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\help-icon16.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\icon2.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\main16.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\main32.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\record.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\winpe.ico` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\1.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\2.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\3.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\4.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\5.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\6.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\7.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\8.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-disabled.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-hover.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-normal.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\cd-16px.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\DiskCopyMainIco.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\DRW-disabled.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\DRW-hover.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\DRW-normal.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-disabled.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-hover.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-image.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-normal.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\EPM_Help.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpHover.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpPress.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\EPM_LOGO.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\EPM_Success.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\EPM_WinPE_LOGO.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\errorIcon.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\freeware.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\Helpicon.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\helptool_opendir.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\Home_background.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\line.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\logo.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\logo_hover.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\logo_press.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\mark.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\new.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\questionIcon.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\success_b.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_left.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_mid.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_right.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_left.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_mid.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_right.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_left.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_mid.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tab_btn_right.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\tip.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\todo-disabled.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\todo-hover.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\todo-normal.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_select.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_unselect.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_select.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_unselect.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\UnconnectServer.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-disable.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-normal.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-press.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\warnIcon.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\hand.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\helptool_closedir.png` `${DEFDATA}\Languages\Polish` CopyFiles /SILENT `${APPDIR}\res\helptool_file.png` `${DEFDATA}\Languages\Polish` ;=== Japanese CopyFiles /SILENT `${APPDIR}\res\16_16_8.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\16_16_32.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\32_32_8.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\32_32_32.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\48_48_8.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\48_48_32.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\help-icon16.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\icon2.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\main16.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\main32.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\record.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\winpe.ico` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\1.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\2.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\3.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\4.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\5.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\6.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\7.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\8.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-disabled.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-hover.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\bootable-cd-normal.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\cd-16px.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\DiskCopyMainIco.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\DRW-disabled.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\DRW-hover.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\DRW-normal.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-disabled.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-hover.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-image.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\epm_bootable-cd-normal.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\EPM_Help.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpHover.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\EPM_HelpPress.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\EPM_LOGO.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\EPM_Success.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\EPM_WinPE_LOGO.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\errorIcon.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\freeware.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\Helpicon.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\helptool_opendir.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\Home_background.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\line.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\logo.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\logo_hover.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\logo_press.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\mark.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\new.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\questionIcon.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\success_b.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_left.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_mid.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_cur_right.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_left.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_mid.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_hover_right.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_left.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_mid.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tab_btn_right.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\tip.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\todo-disabled.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\todo-hover.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\todo-normal.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_select.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\Treeview_collapse_unselect.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_select.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\Treeview_expand_unselect.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\UnconnectServer.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-disable.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-normal.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\upgrade-epm-press.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\warnIcon.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\hand.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\helptool_closedir.png` `${DEFDATA}\Languages\Japanese` CopyFiles /SILENT `${APPDIR}\res\helptool_file.png` `${DEFDATA}\Languages\Japanese` Rename `${APPDIR}\res\500x140-epm-update-info,1.bmp` `${DEFDATA}\Languages\English\500x140-epm-update-info.bmp` Rename `${APPDIR}\res\500x140-epm-update-info,2.bmp` `${DEFDATA}\Languages\German\500x140-epm-update-info.bmp` Rename `${APPDIR}\res\500x140-epm-update-info,3.bmp` `${DEFDATA}\Languages\French\500x140-epm-update-info.bmp` Rename `${APPDIR}\res\500x140-epm-update-info,4.bmp` `${DEFDATA}\Languages\Spanish\500x140-epm-update-info.bmp` Rename `${APPDIR}\res\500x140-epm-update-info,5.bmp` `${DEFDATA}\Languages\Portuguese\500x140-epm-update-info.bmp` Rename `${APPDIR}\res\500x140-epm-update-info,6.bmp` `${DEFDATA}\Languages\Polish\500x140-epm-update-info.bmp` Rename `${APPDIR}\res\500x140-epm-update-info,7.bmp` `${DEFDATA}\Languages\Japanese\500x140-epm-update-info.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-linux,1.bmp` `${DEFDATA}\Languages\English\560x350-epm-main-flash-linux.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-linux,2.bmp` `${DEFDATA}\Languages\German\560x350-epm-main-flash-linux.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-linux,3.bmp` `${DEFDATA}\Languages\French\560x350-epm-main-flash-linux.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-linux,4.bmp` `${DEFDATA}\Languages\Spanish\560x350-epm-main-flash-linux.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-linux,5.bmp` `${DEFDATA}\Languages\Portuguese\560x350-epm-main-flash-linux.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-linux,6.bmp` `${DEFDATA}\Languages\Polish\560x350-epm-main-flash-linux.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-linux,7.bmp` `${DEFDATA}\Languages\Japanese\560x350-epm-main-flash-linux.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-win32,1.bmp` `${DEFDATA}\Languages\English\560x350-epm-main-flash-win32.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-win32,2.bmp` `${DEFDATA}\Languages\German\560x350-epm-main-flash-win32.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-win32,3.bmp` `${DEFDATA}\Languages\French\560x350-epm-main-flash-win32.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-win32,4.bmp` `${DEFDATA}\Languages\Spanish\560x350-epm-main-flash-win32.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-win32,5.bmp` `${DEFDATA}\Languages\Portuguese\560x350-epm-main-flash-win32.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-win32,6.bmp` `${DEFDATA}\Languages\Polish\560x350-epm-main-flash-win32.bmp` Rename `${APPDIR}\res\560x350-epm-main-flash-win32,7.bmp` `${DEFDATA}\Languages\Japanese\560x350-epm-main-flash-win32.bmp` Rename `${APPDIR}\res\4 Primary partition1,1.png` `${DEFDATA}\Languages\English\4 Primary partition1.png` Rename `${APPDIR}\res\4 Primary partition1,2.png` `${DEFDATA}\Languages\German\4 Primary partition1.png` Rename `${APPDIR}\res\4 Primary partition1,3.png` `${DEFDATA}\Languages\French\4 Primary partition1.png` Rename `${APPDIR}\res\4 Primary partition1,4.png` `${DEFDATA}\Languages\Spanish\4 Primary partition1.png` Rename `${APPDIR}\res\4 Primary partition1,5.png` `${DEFDATA}\Languages\Portuguese\4 Primary partition1.png` Rename `${APPDIR}\res\4 Primary partition1,6.png` `${DEFDATA}\Languages\Polish\4 Primary partition1.png` Rename `${APPDIR}\res\4 Primary partition1,7.png` `${DEFDATA}\Languages\Japanese\4 Primary partition1.png` Rename `${APPDIR}\res\4 Primary partition2,1.png` `${DEFDATA}\Languages\English\4 Primary partition2.png` Rename `${APPDIR}\res\4 Primary partition2,2.png` `${DEFDATA}\Languages\German\4 Primary partition2.png` Rename `${APPDIR}\res\4 Primary partition2,3.png` `${DEFDATA}\Languages\French\4 Primary partition2.png` Rename `${APPDIR}\res\4 Primary partition2,4.png` `${DEFDATA}\Languages\Spanish\4 Primary partition2.png` Rename `${APPDIR}\res\4 Primary partition2,5.png` `${DEFDATA}\Languages\Portuguese\4 Primary partition2.png` Rename `${APPDIR}\res\4 Primary partition2,6.png` `${DEFDATA}\Languages\Polish\4 Primary partition2.png` Rename `${APPDIR}\res\4 Primary partition2,7.png` `${DEFDATA}\Languages\Japanese\4 Primary partition2.png` Rename `${APPDIR}\res\abbreviation mode,1.png` `${DEFDATA}\Languages\English\abbreviation mode.png` Rename `${APPDIR}\res\abbreviation mode,2.png` `${DEFDATA}\Languages\German\abbreviation mode.png` Rename `${APPDIR}\res\abbreviation mode,3.png` `${DEFDATA}\Languages\French\abbreviation mode.png` Rename `${APPDIR}\res\abbreviation mode,4.png` `${DEFDATA}\Languages\Spanish\abbreviation mode.png` Rename `${APPDIR}\res\abbreviation mode,5.png` `${DEFDATA}\Languages\Portuguese\abbreviation mode.png` Rename `${APPDIR}\res\abbreviation mode,6.png` `${DEFDATA}\Languages\Polish\abbreviation mode.png` Rename `${APPDIR}\res\abbreviation mode,7.png` `${DEFDATA}\Languages\Japanese\abbreviation mode.png` Rename `${APPDIR}\res\activate free,1.png` `${DEFDATA}\Languages\English\activate free.png` Rename `${APPDIR}\res\activate free,2.png` `${DEFDATA}\Languages\German\activate free.png` Rename `${APPDIR}\res\activate free,3.png` `${DEFDATA}\Languages\French\activate free.png` Rename `${APPDIR}\res\activate free,4.png` `${DEFDATA}\Languages\Spanish\activate free.png` Rename `${APPDIR}\res\activate free,5.png` `${DEFDATA}\Languages\Portuguese\activate free.png` Rename `${APPDIR}\res\activate free,6.png` `${DEFDATA}\Languages\Polish\activate free.png` Rename `${APPDIR}\res\activate free,7.png` `${DEFDATA}\Languages\Japanese\activate free.png` Rename `${APPDIR}\res\activate trial,1.png` `${DEFDATA}\Languages\English\activate trial.png` Rename `${APPDIR}\res\activate trial,2.png` `${DEFDATA}\Languages\German\activate trial.png` Rename `${APPDIR}\res\activate trial,3.png` `${DEFDATA}\Languages\French\activate trial.png` Rename `${APPDIR}\res\activate trial,4.png` `${DEFDATA}\Languages\Spanish\activate trial.png` Rename `${APPDIR}\res\activate trial,5.png` `${DEFDATA}\Languages\Portuguese\activate trial.png` Rename `${APPDIR}\res\activate trial,6.png` `${DEFDATA}\Languages\Polish\activate trial.png` Rename `${APPDIR}\res\activate trial,7.png` `${DEFDATA}\Languages\Japanese\activate trial.png` Rename `${APPDIR}\res\backup_hover,1.png` `${DEFDATA}\Languages\English\backup_hover.png` Rename `${APPDIR}\res\backup_hover,2.png` `${DEFDATA}\Languages\German\backup_hover.png` Rename `${APPDIR}\res\backup_hover,3.png` `${DEFDATA}\Languages\French\backup_hover.png` Rename `${APPDIR}\res\backup_hover,4.png` `${DEFDATA}\Languages\Spanish\backup_hover.png` Rename `${APPDIR}\res\backup_hover,5.png` `${DEFDATA}\Languages\Portuguese\backup_hover.png` Rename `${APPDIR}\res\backup_hover,6.png` `${DEFDATA}\Languages\Polish\backup_hover.png` Rename `${APPDIR}\res\backup_hover,7.png` `${DEFDATA}\Languages\Japanese\backup_hover.png` Rename `${APPDIR}\res\backup_normal,1.png` `${DEFDATA}\Languages\English\backup_normal.png` Rename `${APPDIR}\res\backup_normal,2.png` `${DEFDATA}\Languages\German\backup_normal.png` Rename `${APPDIR}\res\backup_normal,3.png` `${DEFDATA}\Languages\French\backup_normal.png` Rename `${APPDIR}\res\backup_normal,4.png` `${DEFDATA}\Languages\Spanish\backup_normal.png` Rename `${APPDIR}\res\backup_normal,5.png` `${DEFDATA}\Languages\Portuguese\backup_normal.png` Rename `${APPDIR}\res\backup_normal,6.png` `${DEFDATA}\Languages\Polish\backup_normal.png` Rename `${APPDIR}\res\backup_normal,7.png` `${DEFDATA}\Languages\Japanese\backup_normal.png` Rename `${APPDIR}\res\backup_press,1.png` `${DEFDATA}\Languages\English\backup_press.png` Rename `${APPDIR}\res\backup_press,2.png` `${DEFDATA}\Languages\German\backup_press.png` Rename `${APPDIR}\res\backup_press,3.png` `${DEFDATA}\Languages\French\backup_press.png` Rename `${APPDIR}\res\backup_press,4.png` `${DEFDATA}\Languages\Spanish\backup_press.png` Rename `${APPDIR}\res\backup_press,5.png` `${DEFDATA}\Languages\Portuguese\backup_press.png` Rename `${APPDIR}\res\backup_press,6.png` `${DEFDATA}\Languages\Polish\backup_press.png` Rename `${APPDIR}\res\backup_press,7.png` `${DEFDATA}\Languages\Japanese\backup_press.png` Rename `${APPDIR}\res\banner,1.png` `${DEFDATA}\Languages\English\banner.png` Rename `${APPDIR}\res\banner,2.png` `${DEFDATA}\Languages\German\banner.png` Rename `${APPDIR}\res\banner,3.png` `${DEFDATA}\Languages\French\banner.png` Rename `${APPDIR}\res\banner,4.png` `${DEFDATA}\Languages\Spanish\banner.png` Rename `${APPDIR}\res\banner,5.png` `${DEFDATA}\Languages\Portuguese\banner.png` Rename `${APPDIR}\res\banner,6.png` `${DEFDATA}\Languages\Polish\banner.png` Rename `${APPDIR}\res\banner,7.png` `${DEFDATA}\Languages\Japanese\banner.png` Rename `${APPDIR}\res\bootable-cd-click,1.png` `${DEFDATA}\Languages\English\bootable-cd-click.png` Rename `${APPDIR}\res\bootable-cd-click,2.png` `${DEFDATA}\Languages\German\bootable-cd-click.png` Rename `${APPDIR}\res\bootable-cd-click,3.png` `${DEFDATA}\Languages\French\bootable-cd-click.png` Rename `${APPDIR}\res\bootable-cd-click,4.png` `${DEFDATA}\Languages\Spanish\bootable-cd-click.png` Rename `${APPDIR}\res\bootable-cd-click,5.png` `${DEFDATA}\Languages\Portuguese\bootable-cd-click.png` Rename `${APPDIR}\res\bootable-cd-click,6.png` `${DEFDATA}\Languages\Polish\bootable-cd-click.png` Rename `${APPDIR}\res\bootable-cd-click,7.png` `${DEFDATA}\Languages\Japanese\bootable-cd-click.png` Rename `${APPDIR}\res\bootable-cd-disable,1.png` `${DEFDATA}\Languages\English\bootable-cd-disable.png` Rename `${APPDIR}\res\bootable-cd-disable,2.png` `${DEFDATA}\Languages\German\bootable-cd-disable.png` Rename `${APPDIR}\res\bootable-cd-disable,3.png` `${DEFDATA}\Languages\French\bootable-cd-disable.png` Rename `${APPDIR}\res\bootable-cd-disable,4.png` `${DEFDATA}\Languages\Spanish\bootable-cd-disable.png` Rename `${APPDIR}\res\bootable-cd-disable,5.png` `${DEFDATA}\Languages\Portuguese\bootable-cd-disable.png` Rename `${APPDIR}\res\bootable-cd-disable,6.png` `${DEFDATA}\Languages\Polish\bootable-cd-disable.png` Rename `${APPDIR}\res\bootable-cd-disable,7.png` `${DEFDATA}\Languages\Japanese\bootable-cd-disable.png` Rename `${APPDIR}\res\CleanGenius,1.png` `${DEFDATA}\Languages\English\CleanGenius.png` Rename `${APPDIR}\res\CleanGenius,2.png` `${DEFDATA}\Languages\German\CleanGenius.png` Rename `${APPDIR}\res\CleanGenius,3.png` `${DEFDATA}\Languages\French\CleanGenius.png` Rename `${APPDIR}\res\CleanGenius,4.png` `${DEFDATA}\Languages\Spanish\CleanGenius.png` Rename `${APPDIR}\res\CleanGenius,5.png` `${DEFDATA}\Languages\Portuguese\CleanGenius.png` Rename `${APPDIR}\res\CleanGenius,6.png` `${DEFDATA}\Languages\Polish\CleanGenius.png` Rename `${APPDIR}\res\CleanGenius,7.png` `${DEFDATA}\Languages\Japanese\CleanGenius.png` Rename `${APPDIR}\res\CleanGenius_move,1.png` `${DEFDATA}\Languages\English\CleanGenius_move.png` Rename `${APPDIR}\res\CleanGenius_move,2.png` `${DEFDATA}\Languages\German\CleanGenius_move.png` Rename `${APPDIR}\res\CleanGenius_move,3.png` `${DEFDATA}\Languages\French\CleanGenius_move.png` Rename `${APPDIR}\res\CleanGenius_move,4.png` `${DEFDATA}\Languages\Spanish\CleanGenius_move.png` Rename `${APPDIR}\res\CleanGenius_move,5.png` `${DEFDATA}\Languages\Portuguese\CleanGenius_move.png` Rename `${APPDIR}\res\CleanGenius_move,6.png` `${DEFDATA}\Languages\Polish\CleanGenius_move.png` Rename `${APPDIR}\res\CleanGenius_move,7.png` `${DEFDATA}\Languages\Japanese\CleanGenius_move.png` Rename `${APPDIR}\res\CleanGenius_press,1.png` `${DEFDATA}\Languages\English\CleanGenius_press.png` Rename `${APPDIR}\res\CleanGenius_press,2.png` `${DEFDATA}\Languages\German\CleanGenius_press.png` Rename `${APPDIR}\res\CleanGenius_press,3.png` `${DEFDATA}\Languages\French\CleanGenius_press.png` Rename `${APPDIR}\res\CleanGenius_press,4.png` `${DEFDATA}\Languages\Spanish\CleanGenius_press.png` Rename `${APPDIR}\res\CleanGenius_press,5.png` `${DEFDATA}\Languages\Portuguese\CleanGenius_press.png` Rename `${APPDIR}\res\CleanGenius_press,6.png` `${DEFDATA}\Languages\Polish\CleanGenius_press.png` Rename `${APPDIR}\res\CleanGenius_press,7.png` `${DEFDATA}\Languages\Japanese\CleanGenius_press.png` Rename `${APPDIR}\res\Disk,1.png` `${DEFDATA}\Languages\English\Disk.png` Rename `${APPDIR}\res\Disk,2.png` `${DEFDATA}\Languages\German\Disk.png` Rename `${APPDIR}\res\Disk,3.png` `${DEFDATA}\Languages\French\Disk.png` Rename `${APPDIR}\res\Disk,4.png` `${DEFDATA}\Languages\Spanish\Disk.png` Rename `${APPDIR}\res\Disk,5.png` `${DEFDATA}\Languages\Portuguese\Disk.png` Rename `${APPDIR}\res\Disk,6.png` `${DEFDATA}\Languages\Polish\Disk.png` Rename `${APPDIR}\res\Disk,7.png` `${DEFDATA}\Languages\Japanese\Disk.png` Rename `${APPDIR}\res\drw_text,1.png` `${DEFDATA}\Languages\English\drw_text.png` Rename `${APPDIR}\res\drw_text,2.png` `${DEFDATA}\Languages\German\drw_text.png` Rename `${APPDIR}\res\drw_text,3.png` `${DEFDATA}\Languages\French\drw_text.png` Rename `${APPDIR}\res\drw_text,4.png` `${DEFDATA}\Languages\Spanish\drw_text.png` Rename `${APPDIR}\res\drw_text,5.png` `${DEFDATA}\Languages\Portuguese\drw_text.png` Rename `${APPDIR}\res\drw_text,6.png` `${DEFDATA}\Languages\Polish\drw_text.png` Rename `${APPDIR}\res\drw_text,7.png` `${DEFDATA}\Languages\Japanese\drw_text.png` Rename `${APPDIR}\res\Edition comparison,1.png` `${DEFDATA}\Languages\English\Edition comparison.png` Rename `${APPDIR}\res\Edition comparison,2.png` `${DEFDATA}\Languages\German\Edition comparison.png` Rename `${APPDIR}\res\Edition Comparison,3.png` `${DEFDATA}\Languages\French\Edition comparison.png` Rename `${APPDIR}\res\Edition comparison,4.png` `${DEFDATA}\Languages\Spanish\Edition comparison.png` Rename `${APPDIR}\res\Edition comparison,5.png` `${DEFDATA}\Languages\Portuguese\Edition comparison.png` Rename `${APPDIR}\res\Edition comparison,6.png` `${DEFDATA}\Languages\Polish\Edition comparison.png` Rename `${APPDIR}\res\Edition comparison,7.png` `${DEFDATA}\Languages\Japanese\Edition comparison.png` Rename `${APPDIR}\res\EPM_ISO_Background,1.png` `${DEFDATA}\Languages\English\EPM_ISO_Background.png` Rename `${APPDIR}\res\EPM_ISO_Background,2.png` `${DEFDATA}\Languages\German\EPM_ISO_Background.png` Rename `${APPDIR}\res\EPM_ISO_Background,3.png` `${DEFDATA}\Languages\French\EPM_ISO_Background.png` Rename `${APPDIR}\res\EPM_ISO_Background,4.png` `${DEFDATA}\Languages\Spanish\EPM_ISO_Background.png` Rename `${APPDIR}\res\EPM_ISO_Background,5.png` `${DEFDATA}\Languages\Portuguese\EPM_ISO_Background.png` Rename `${APPDIR}\res\EPM_ISO_Background,6.png` `${DEFDATA}\Languages\Polish\EPM_ISO_Background.png` Rename `${APPDIR}\res\EPM_ISO_Background,7.png` `${DEFDATA}\Languages\Japanese\EPM_ISO_Background.png` Rename `${APPDIR}\res\epm_text,1.png` `${DEFDATA}\Languages\English\epm_text.png` Rename `${APPDIR}\res\epm_text,2.png` `${DEFDATA}\Languages\German\epm_text.png` Rename `${APPDIR}\res\epm_text,3.png` `${DEFDATA}\Languages\French\epm_text.png` Rename `${APPDIR}\res\epm_text,4.png` `${DEFDATA}\Languages\Spanish\epm_text.png` Rename `${APPDIR}\res\epm_text,5.png` `${DEFDATA}\Languages\Portuguese\epm_text.png` Rename `${APPDIR}\res\epm_text,6.png` `${DEFDATA}\Languages\Polish\epm_text.png` Rename `${APPDIR}\res\epm_text,7.png` `${DEFDATA}\Languages\Japanese\epm_text.png` Rename `${APPDIR}\res\extend system by moving E,1.png` `${DEFDATA}\Languages\English\extend system by moving E.png` Rename `${APPDIR}\res\extend system by moving E,2.png` `${DEFDATA}\Languages\German\extend system by moving E.png` Rename `${APPDIR}\res\extend system by moving E,3.png` `${DEFDATA}\Languages\French\extend system by moving E.png` Rename `${APPDIR}\res\extend system by moving E,4.png` `${DEFDATA}\Languages\Spanish\extend system by moving E.png` Rename `${APPDIR}\res\extend system by moving E,5.png` `${DEFDATA}\Languages\Portuguese\extend system by moving E.png` Rename `${APPDIR}\res\extend system by moving E,6.png` `${DEFDATA}\Languages\Polish\extend system by moving E.png` Rename `${APPDIR}\res\extend system by moving E,7.png` `${DEFDATA}\Languages\Japanese\extend system by moving E.png` Rename `${APPDIR}\res\extend system by reducing E,1.png` `${DEFDATA}\Languages\English\extend system by reducing E.png` Rename `${APPDIR}\res\extend system by reducing E,2.png` `${DEFDATA}\Languages\German\extend system by reducing E.png` Rename `${APPDIR}\res\extend system by reducing E,3.png` `${DEFDATA}\Languages\French\extend system by reducing E.png` Rename `${APPDIR}\res\extend system by reducing E,4.png` `${DEFDATA}\Languages\Spanish\extend system by reducing E.png` Rename `${APPDIR}\res\extend system by reducing E,5.png` `${DEFDATA}\Languages\Portuguese\extend system by reducing E.png` Rename `${APPDIR}\res\extend system by reducing E,6.png` `${DEFDATA}\Languages\Polish\extend system by reducing E.png` Rename `${APPDIR}\res\extend system by reducing E,7.png` `${DEFDATA}\Languages\Japanese\extend system by reducing E.png` Rename `${APPDIR}\res\extend system volume by converting,1.png` `${DEFDATA}\Languages\English\extend system volume by converting.png` Rename `${APPDIR}\res\extend system volume by converting,2.png` `${DEFDATA}\Languages\German\extend system volume by converting.png` Rename `${APPDIR}\res\extend system volume by converting,3.png` `${DEFDATA}\Languages\French\extend system volume by converting.png` Rename `${APPDIR}\res\extend system volume by converting,4.png` `${DEFDATA}\Languages\Spanish\extend system volume by converting.png` Rename `${APPDIR}\res\extend system volume by converting,5.png` `${DEFDATA}\Languages\Portuguese\extend system volume by converting.png` Rename `${APPDIR}\res\extend system volume by converting,6.png` `${DEFDATA}\Languages\Polish\extend system volume by converting.png` Rename `${APPDIR}\res\extend system volume by converting,7.png` `${DEFDATA}\Languages\Japanese\extend system volume by converting.png` Rename `${APPDIR}\res\extend system volume by deleting J,1.png` `${DEFDATA}\Languages\English\extend system volume by deleting J.png` Rename `${APPDIR}\res\extend system volume by deleting J,2.png` `${DEFDATA}\Languages\German\extend system volume by deleting J.png` Rename `${APPDIR}\res\extend system volume by deleting J,3.png` `${DEFDATA}\Languages\French\extend system volume by deleting J.png` Rename `${APPDIR}\res\extend system volume by deleting J,4.png` `${DEFDATA}\Languages\Spanish\extend system volume by deleting J.png` Rename `${APPDIR}\res\extend system volume by deleting J,5.png` `${DEFDATA}\Languages\Portuguese\extend system volume by deleting J.png` Rename `${APPDIR}\res\extend system volume by deleting J,6.png` `${DEFDATA}\Languages\Polish\extend system volume by deleting J.png` Rename `${APPDIR}\res\extend system volume by deleting J,7.png` `${DEFDATA}\Languages\Japanese\extend system volume by deleting J.png` Rename `${APPDIR}\res\extend system volume by shrinking E,1.png` `${DEFDATA}\Languages\English\extend system volume by shrinking E.png` Rename `${APPDIR}\res\extend system volume by shrinking E,2.png` `${DEFDATA}\Languages\German\extend system volume by shrinking E.png` Rename `${APPDIR}\res\extend system volume by shrinking E,3.png` `${DEFDATA}\Languages\French\extend system volume by shrinking E.png` Rename `${APPDIR}\res\extend system volume by shrinking E,4.png` `${DEFDATA}\Languages\Spanish\extend system volume by shrinking E.png` Rename `${APPDIR}\res\extend system volume by shrinking E,5.png` `${DEFDATA}\Languages\Portuguese\extend system volume by shrinking E.png` Rename `${APPDIR}\res\extend system volume by shrinking E,6.png` `${DEFDATA}\Languages\Polish\extend system volume by shrinking E.png` Rename `${APPDIR}\res\extend system volume by shrinking E,7.png` `${DEFDATA}\Languages\Japanese\extend system volume by shrinking E.png` Rename `${APPDIR}\res\feature comparision,1.png` `${DEFDATA}\Languages\English\feature comparision.png` Rename `${APPDIR}\res\feature comparision,2.png` `${DEFDATA}\Languages\German\feature comparision.png` Rename `${APPDIR}\res\feature comparision,3.png` `${DEFDATA}\Languages\French\feature comparision.png` Rename `${APPDIR}\res\feature comparision,4.png` `${DEFDATA}\Languages\Spanish\feature comparision.png` Rename `${APPDIR}\res\feature comparision,5.png` `${DEFDATA}\Languages\Portuguese\feature comparision.png` Rename `${APPDIR}\res\feature comparision,6.png` `${DEFDATA}\Languages\Polish\feature comparision.png` Rename `${APPDIR}\res\feature comparision,7.png` `${DEFDATA}\Languages\Japanese\feature comparision.png` Rename `${APPDIR}\res\Feature comparison in different environment,1.png` `${DEFDATA}\Languages\English\Feature comparison in different environment.png` Rename `${APPDIR}\res\Feature comparison in different environment,2.png` `${DEFDATA}\Languages\German\Feature comparison in different environment.png` Rename `${APPDIR}\res\Feature comparison in different environment,3.png` `${DEFDATA}\Languages\French\Feature comparison in different environment.png` Rename `${APPDIR}\res\Feature comparison in different environment,4.png` `${DEFDATA}\Languages\Spanish\Feature comparison in different environment.png` Rename `${APPDIR}\res\Feature comparison in different environment,5.png` `${DEFDATA}\Languages\Portuguese\Feature comparison in different environment.png` Rename `${APPDIR}\res\Feature comparison in different environment,6.png` `${DEFDATA}\Languages\Polish\Feature comparison in different environment.png` Rename `${APPDIR}\res\Feature comparison in different environment,7.png` `${DEFDATA}\Languages\Japanese\Feature comparison in different environment.png` Rename `${APPDIR}\res\frist-interface,1.png` `${DEFDATA}\Languages\English\frist-interface.png` Rename `${APPDIR}\res\frist-interface,2.png` `${DEFDATA}\Languages\German\frist-interface.png` Rename `${APPDIR}\res\frist-interface,3.png` `${DEFDATA}\Languages\French\frist-interface.png` Rename `${APPDIR}\res\frist-interface,4.png` `${DEFDATA}\Languages\Spanish\frist-interface.png` Rename `${APPDIR}\res\frist-interface,5.png` `${DEFDATA}\Languages\Portuguese\frist-interface.png` Rename `${APPDIR}\res\frist-interface,6.png` `${DEFDATA}\Languages\Polish\frist-interface.png` Rename `${APPDIR}\res\frist-interface,7.png` `${DEFDATA}\Languages\Japanese\frist-interface.png` Rename `${APPDIR}\res\full mode,1.png` `${DEFDATA}\Languages\English\full mode.png` Rename `${APPDIR}\res\full mode,2.png` `${DEFDATA}\Languages\German\full mode.png` Rename `${APPDIR}\res\full mode,3.png` `${DEFDATA}\Languages\French\full mode.png` Rename `${APPDIR}\res\full mode,4.png` `${DEFDATA}\Languages\Spanish\full mode.png` Rename `${APPDIR}\res\full mode,5.png` `${DEFDATA}\Languages\Portuguese\full mode.png` Rename `${APPDIR}\res\full mode,6.png` `${DEFDATA}\Languages\Polish\full mode.png` Rename `${APPDIR}\res\full mode,7.png` `${DEFDATA}\Languages\Japanese\full mode.png` Rename `${APPDIR}\res\function comparision,1.PNG` `${DEFDATA}\Languages\English\function comparision.PNG` Rename `${APPDIR}\res\function comparision,2.PNG` `${DEFDATA}\Languages\German\function comparision.PNG` Rename `${APPDIR}\res\function comparision,3.PNG` `${DEFDATA}\Languages\French\function comparision.PNG` Rename `${APPDIR}\res\function comparision,4.PNG` `${DEFDATA}\Languages\Spanish\function comparision.PNG` Rename `${APPDIR}\res\function comparision,5.PNG` `${DEFDATA}\Languages\Portuguese\function comparision.PNG` Rename `${APPDIR}\res\function comparision,6.PNG` `${DEFDATA}\Languages\Polish\function comparision.PNG` Rename `${APPDIR}\res\function comparision,7.PNG` `${DEFDATA}\Languages\Japanese\function comparision.PNG` Rename `${APPDIR}\res\General,1.png` `${DEFDATA}\Languages\English\General.png` Rename `${APPDIR}\res\General,2.png` `${DEFDATA}\Languages\German\General.png` Rename `${APPDIR}\res\General,3.png` `${DEFDATA}\Languages\French\General.png` Rename `${APPDIR}\res\General,4.png` `${DEFDATA}\Languages\Spanish\General.png` Rename `${APPDIR}\res\General,5.png` `${DEFDATA}\Languages\Portuguese\General.png` Rename `${APPDIR}\res\General,6.png` `${DEFDATA}\Languages\Polish\General.png` Rename `${APPDIR}\res\General,7.png` `${DEFDATA}\Languages\Japanese\General.png` Rename `${APPDIR}\res\Help,1.png` `${DEFDATA}\Languages\English\Help.png` Rename `${APPDIR}\res\Help,2.png` `${DEFDATA}\Languages\German\Help.png` Rename `${APPDIR}\res\Help,3.png` `${DEFDATA}\Languages\French\Help.png` Rename `${APPDIR}\res\Help,4.png` `${DEFDATA}\Languages\Spanish\Help.png` Rename `${APPDIR}\res\Help,5.png` `${DEFDATA}\Languages\Portuguese\Help.png` Rename `${APPDIR}\res\Help,6.png` `${DEFDATA}\Languages\Polish\Help.png` Rename `${APPDIR}\res\Help,7.png` `${DEFDATA}\Languages\Japanese\Help.png` Rename `${APPDIR}\res\helptool_backpage,1.png` `${DEFDATA}\Languages\English\helptool_backpage.png` Rename `${APPDIR}\res\helptool_backpage,2.png` `${DEFDATA}\Languages\German\helptool_backpage.png` Rename `${APPDIR}\res\helptool_backpage,3.png` `${DEFDATA}\Languages\French\helptool_backpage.png` Rename `${APPDIR}\res\helptool_backpage,4.png` `${DEFDATA}\Languages\Spanish\helptool_backpage.png` Rename `${APPDIR}\res\helptool_backpage,5.png` `${DEFDATA}\Languages\Portuguese\helptool_backpage.png` Rename `${APPDIR}\res\helptool_backpage,6.png` `${DEFDATA}\Languages\Polish\helptool_backpage.png` Rename `${APPDIR}\res\helptool_backpage,7.png` `${DEFDATA}\Languages\Japanese\helptool_backpage.png` Rename `${APPDIR}\res\helptool_backward,1.png` `${DEFDATA}\Languages\English\helptool_backward.png` Rename `${APPDIR}\res\helptool_backward,2.png` `${DEFDATA}\Languages\German\helptool_backward.png` Rename `${APPDIR}\res\helptool_backward,3.png` `${DEFDATA}\Languages\French\helptool_backward.png` Rename `${APPDIR}\res\helptool_backward,4.png` `${DEFDATA}\Languages\Spanish\helptool_backward.png` Rename `${APPDIR}\res\helptool_backward,5.png` `${DEFDATA}\Languages\Portuguese\helptool_backward.png` Rename `${APPDIR}\res\helptool_backward,6.png` `${DEFDATA}\Languages\Polish\helptool_backward.png` Rename `${APPDIR}\res\helptool_backward,7.png` `${DEFDATA}\Languages\Japanese\helptool_backward.png` Rename `${APPDIR}\res\helptool_expand,1.png` `${DEFDATA}\Languages\English\helptool_expand.png` Rename `${APPDIR}\res\helptool_expand,2.png` `${DEFDATA}\Languages\German\helptool_expand.png` Rename `${APPDIR}\res\helptool_expand,3.png` `${DEFDATA}\Languages\French\helptool_expand.png` Rename `${APPDIR}\res\helptool_expand,4.png` `${DEFDATA}\Languages\Spanish\helptool_expand.png` Rename `${APPDIR}\res\helptool_expand,5.png` `${DEFDATA}\Languages\Portuguese\helptool_expand.png` Rename `${APPDIR}\res\helptool_expand,6.png` `${DEFDATA}\Languages\Polish\helptool_expand.png` Rename `${APPDIR}\res\helptool_expand,7.png` `${DEFDATA}\Languages\Japanese\helptool_expand.png` Rename `${APPDIR}\res\helptool_forward,1.png` `${DEFDATA}\Languages\English\helptool_forward.png` Rename `${APPDIR}\res\helptool_forward,2.png` `${DEFDATA}\Languages\German\helptool_forward.png` Rename `${APPDIR}\res\helptool_forward,3.png` `${DEFDATA}\Languages\French\helptool_forward.png` Rename `${APPDIR}\res\helptool_forward,4.png` `${DEFDATA}\Languages\Spanish\helptool_forward.png` Rename `${APPDIR}\res\helptool_forward,5.png` `${DEFDATA}\Languages\Portuguese\helptool_forward.png` Rename `${APPDIR}\res\helptool_forward,6.png` `${DEFDATA}\Languages\Polish\helptool_forward.png` Rename `${APPDIR}\res\helptool_forward,7.png` `${DEFDATA}\Languages\Japanese\helptool_forward.png` Rename `${APPDIR}\res\helptool_forwardpage,1.png` `${DEFDATA}\Languages\English\helptool_forwardpage.png` Rename `${APPDIR}\res\helptool_forwardpage,2.png` `${DEFDATA}\Languages\German\helptool_forwardpage.png` Rename `${APPDIR}\res\helptool_forwardpage,3.png` `${DEFDATA}\Languages\French\helptool_forwardpage.png` Rename `${APPDIR}\res\helptool_forwardpage,4.png` `${DEFDATA}\Languages\Spanish\helptool_forwardpage.png` Rename `${APPDIR}\res\helptool_forwardpage,5.png` `${DEFDATA}\Languages\Portuguese\helptool_forwardpage.png` Rename `${APPDIR}\res\helptool_forwardpage,6.png` `${DEFDATA}\Languages\Polish\helptool_forwardpage.png` Rename `${APPDIR}\res\helptool_forwardpage,7.png` `${DEFDATA}\Languages\Japanese\helptool_forwardpage.png` Rename `${APPDIR}\res\helptool_furl,1.png` `${DEFDATA}\Languages\English\helptool_furl.png` Rename `${APPDIR}\res\helptool_furl,2.png` `${DEFDATA}\Languages\German\helptool_furl.png` Rename `${APPDIR}\res\helptool_furl,3.png` `${DEFDATA}\Languages\French\helptool_furl.png` Rename `${APPDIR}\res\helptool_furl,4.png` `${DEFDATA}\Languages\Spanish\helptool_furl.png` Rename `${APPDIR}\res\helptool_furl,5.png` `${DEFDATA}\Languages\Portuguese\helptool_furl.png` Rename `${APPDIR}\res\helptool_furl,6.png` `${DEFDATA}\Languages\Polish\helptool_furl.png` Rename `${APPDIR}\res\helptool_furl,7.png` `${DEFDATA}\Languages\Japanese\helptool_furl.png` Rename `${APPDIR}\res\helptool_home,1.png` `${DEFDATA}\Languages\English\helptool_home.png` Rename `${APPDIR}\res\helptool_home,2.png` `${DEFDATA}\Languages\German\helptool_home.png` Rename `${APPDIR}\res\helptool_home,3.png` `${DEFDATA}\Languages\French\helptool_home.png` Rename `${APPDIR}\res\helptool_home,4.png` `${DEFDATA}\Languages\Spanish\helptool_home.png` Rename `${APPDIR}\res\helptool_home,5.png` `${DEFDATA}\Languages\Portuguese\helptool_home.png` Rename `${APPDIR}\res\helptool_home,6.png` `${DEFDATA}\Languages\Polish\helptool_home.png` Rename `${APPDIR}\res\helptool_home,7.png` `${DEFDATA}\Languages\Japanese\helptool_home.png` Rename `${APPDIR}\res\homepage_hover,1.png` `${DEFDATA}\Languages\English\homepage_hover.png` Rename `${APPDIR}\res\homepage_hover,2.png` `${DEFDATA}\Languages\German\homepage_hover.png` Rename `${APPDIR}\res\homepage_hover,3.png` `${DEFDATA}\Languages\French\homepage_hover.png` Rename `${APPDIR}\res\homepage_hover,4.png` `${DEFDATA}\Languages\Spanish\homepage_hover.png` Rename `${APPDIR}\res\homepage_hover,5.png` `${DEFDATA}\Languages\Portuguese\homepage_hover.png` Rename `${APPDIR}\res\homepage_hover,6.png` `${DEFDATA}\Languages\Polish\homepage_hover.png` Rename `${APPDIR}\res\homepage_hover,7.png` `${DEFDATA}\Languages\Japanese\homepage_hover.png` Rename `${APPDIR}\res\homepage_normal,1.png` `${DEFDATA}\Languages\English\homepage_normal.png` Rename `${APPDIR}\res\homepage_normal,2.png` `${DEFDATA}\Languages\German\homepage_normal.png` Rename `${APPDIR}\res\homepage_normal,3.png` `${DEFDATA}\Languages\French\homepage_normal.png` Rename `${APPDIR}\res\homepage_normal,4.png` `${DEFDATA}\Languages\Spanish\homepage_normal.png` Rename `${APPDIR}\res\homepage_normal,5.png` `${DEFDATA}\Languages\Portuguese\homepage_normal.png` Rename `${APPDIR}\res\homepage_normal,6.png` `${DEFDATA}\Languages\Polish\homepage_normal.png` Rename `${APPDIR}\res\homepage_normal,7.png` `${DEFDATA}\Languages\Japanese\homepage_normal.png` Rename `${APPDIR}\res\homepage_press,1.png` `${DEFDATA}\Languages\English\homepage_press.png` Rename `${APPDIR}\res\homepage_press,2.png` `${DEFDATA}\Languages\German\homepage_press.png` Rename `${APPDIR}\res\homepage_press,3.png` `${DEFDATA}\Languages\French\homepage_press.png` Rename `${APPDIR}\res\homepage_press,4.png` `${DEFDATA}\Languages\Spanish\homepage_press.png` Rename `${APPDIR}\res\homepage_press,5.png` `${DEFDATA}\Languages\Portuguese\homepage_press.png` Rename `${APPDIR}\res\homepage_press,6.png` `${DEFDATA}\Languages\Polish\homepage_press.png` Rename `${APPDIR}\res\homepage_press,7.png` `${DEFDATA}\Languages\Japanese\homepage_press.png` Rename `${APPDIR}\res\main interface,1.png` `${DEFDATA}\Languages\English\main interface.png` Rename `${APPDIR}\res\main interface,2.png` `${DEFDATA}\Languages\German\main interface.png` Rename `${APPDIR}\res\main interface,3.png` `${DEFDATA}\Languages\French\main interface.png` Rename `${APPDIR}\res\main interface,4.png` `${DEFDATA}\Languages\Spanish\main interface.png` Rename `${APPDIR}\res\main interface,5.png` `${DEFDATA}\Languages\Portuguese\main interface.png` Rename `${APPDIR}\res\main interface,6.png` `${DEFDATA}\Languages\Polish\main interface.png` Rename `${APPDIR}\res\main interface,7.png` `${DEFDATA}\Languages\Japanese\main interface.png` Rename `${APPDIR}\res\Method 1,1.png` `${DEFDATA}\Languages\English\Method 1.png` Rename `${APPDIR}\res\Method 1,2.png` `${DEFDATA}\Languages\German\Method 1.png` Rename `${APPDIR}\res\Method 1,3.png` `${DEFDATA}\Languages\French\Method 1.png` Rename `${APPDIR}\res\Method 1,4.png` `${DEFDATA}\Languages\Spanish\Method 1.png` Rename `${APPDIR}\res\Method 1,5.png` `${DEFDATA}\Languages\Portuguese\Method 1.png` Rename `${APPDIR}\res\Method 1,6.png` `${DEFDATA}\Languages\Polish\Method 1.png` Rename `${APPDIR}\res\Method 1,7.png` `${DEFDATA}\Languages\Japanese\Method 1.png` Rename `${APPDIR}\res\Method 2,1.png` `${DEFDATA}\Languages\English\Method 2.png` Rename `${APPDIR}\res\Method 2,2.png` `${DEFDATA}\Languages\German\Method 2.png` Rename `${APPDIR}\res\Method 2,3.png` `${DEFDATA}\Languages\French\Method 2.png` Rename `${APPDIR}\res\Method 2,4.png` `${DEFDATA}\Languages\Spanish\Method 2.png` Rename `${APPDIR}\res\Method 2,5.png` `${DEFDATA}\Languages\Portuguese\Method 2.png` Rename `${APPDIR}\res\Method 2,6.png` `${DEFDATA}\Languages\Polish\Method 2.png` Rename `${APPDIR}\res\Method 2,7.png` `${DEFDATA}\Languages\Japanese\Method 2.png` Rename `${APPDIR}\res\pctransfer_hover,1.png` `${DEFDATA}\Languages\English\pctransfer_hover.png` Rename `${APPDIR}\res\pctransfer_hover,2.png` `${DEFDATA}\Languages\German\pctransfer_hover.png` Rename `${APPDIR}\res\pctransfer_hover,3.png` `${DEFDATA}\Languages\French\pctransfer_hover.png` Rename `${APPDIR}\res\pctransfer_hover,4.png` `${DEFDATA}\Languages\Spanish\pctransfer_hover.png` Rename `${APPDIR}\res\pctransfer_hover,5.png` `${DEFDATA}\Languages\Portuguese\pctransfer_hover.png` Rename `${APPDIR}\res\pctransfer_hover,6.png` `${DEFDATA}\Languages\Polish\pctransfer_hover.png` Rename `${APPDIR}\res\pctransfer_hover,7.png` `${DEFDATA}\Languages\Japanese\pctransfer_hover.png` Rename `${APPDIR}\res\pctransfer_normal,1.png` `${DEFDATA}\Languages\English\pctransfer_normal.png` Rename `${APPDIR}\res\pctransfer_normal,2.png` `${DEFDATA}\Languages\German\pctransfer_normal.png` Rename `${APPDIR}\res\pctransfer_normal,3.png` `${DEFDATA}\Languages\French\pctransfer_normal.png` Rename `${APPDIR}\res\pctransfer_normal,4.png` `${DEFDATA}\Languages\Spanish\pctransfer_normal.png` Rename `${APPDIR}\res\pctransfer_normal,5.png` `${DEFDATA}\Languages\Portuguese\pctransfer_normal.png` Rename `${APPDIR}\res\pctransfer_normal,6.png` `${DEFDATA}\Languages\Polish\pctransfer_normal.png` Rename `${APPDIR}\res\pctransfer_normal,7.png` `${DEFDATA}\Languages\Japanese\pctransfer_normal.png` Rename `${APPDIR}\res\pctransfer_press,1.png` `${DEFDATA}\Languages\English\pctransfer_press.png` Rename `${APPDIR}\res\pctransfer_press,2.png` `${DEFDATA}\Languages\German\pctransfer_press.png` Rename `${APPDIR}\res\pctransfer_press,3.png` `${DEFDATA}\Languages\French\pctransfer_press.png` Rename `${APPDIR}\res\pctransfer_press,4.png` `${DEFDATA}\Languages\Spanish\pctransfer_press.png` Rename `${APPDIR}\res\pctransfer_press,5.png` `${DEFDATA}\Languages\Portuguese\pctransfer_press.png` Rename `${APPDIR}\res\pctransfer_press,6.png` `${DEFDATA}\Languages\Polish\pctransfer_press.png` Rename `${APPDIR}\res\pctransfer_press,7.png` `${DEFDATA}\Languages\Japanese\pctransfer_press.png` Rename `${APPDIR}\res\Professional_background,1.png` `${DEFDATA}\Languages\English\Professional_background.png` Rename `${APPDIR}\res\Professional_background,2.png` `${DEFDATA}\Languages\German\Professional_background.png` Rename `${APPDIR}\res\Professional_background,3.png` `${DEFDATA}\Languages\French\Professional_background.png` Rename `${APPDIR}\res\Professional_background,4.png` `${DEFDATA}\Languages\Spanish\Professional_background.png` Rename `${APPDIR}\res\Professional_background,5.png` `${DEFDATA}\Languages\Portuguese\Professional_background.png` Rename `${APPDIR}\res\Professional_background,6.png` `${DEFDATA}\Languages\Polish\Professional_background.png` Rename `${APPDIR}\res\Professional_background,7.png` `${DEFDATA}\Languages\Japanese\Professional_background.png` Rename `${APPDIR}\res\recommendation_bg,1.png` `${DEFDATA}\Languages\English\recommendation_bg.png` Rename `${APPDIR}\res\recommendation_bg,2.png` `${DEFDATA}\Languages\German\recommendation_bg.png` Rename `${APPDIR}\res\recommendation_bg,3.png` `${DEFDATA}\Languages\French\recommendation_bg.png` Rename `${APPDIR}\res\recommendation_bg,4.png` `${DEFDATA}\Languages\Spanish\recommendation_bg.png` Rename `${APPDIR}\res\recommendation_bg,5.png` `${DEFDATA}\Languages\Portuguese\recommendation_bg.png` Rename `${APPDIR}\res\recommendation_bg,6.png` `${DEFDATA}\Languages\Polish\recommendation_bg.png` Rename `${APPDIR}\res\recommendation_bg,7.png` `${DEFDATA}\Languages\Japanese\recommendation_bg.png` Rename `${APPDIR}\res\recovery_hover,1.png` `${DEFDATA}\Languages\English\recovery_hover.png` Rename `${APPDIR}\res\recovery_hover,2.png` `${DEFDATA}\Languages\German\recovery_hover.png` Rename `${APPDIR}\res\recovery_hover,3.png` `${DEFDATA}\Languages\French\recovery_hover.png` Rename `${APPDIR}\res\recovery_hover,4.png` `${DEFDATA}\Languages\Spanish\recovery_hover.png` Rename `${APPDIR}\res\recovery_hover,5.png` `${DEFDATA}\Languages\Portuguese\recovery_hover.png` Rename `${APPDIR}\res\recovery_hover,6.png` `${DEFDATA}\Languages\Polish\recovery_hover.png` Rename `${APPDIR}\res\recovery_hover,7.png` `${DEFDATA}\Languages\Japanese\recovery_hover.png` Rename `${APPDIR}\res\recovery_normal,1.png` `${DEFDATA}\Languages\English\recovery_normal.png` Rename `${APPDIR}\res\recovery_normal,2.png` `${DEFDATA}\Languages\German\recovery_normal.png` Rename `${APPDIR}\res\recovery_normal,3.png` `${DEFDATA}\Languages\French\recovery_normal.png` Rename `${APPDIR}\res\recovery_normal,4.png` `${DEFDATA}\Languages\Spanish\recovery_normal.png` Rename `${APPDIR}\res\recovery_normal,5.png` `${DEFDATA}\Languages\Portuguese\recovery_normal.png` Rename `${APPDIR}\res\recovery_normal,6.png` `${DEFDATA}\Languages\Polish\recovery_normal.png` Rename `${APPDIR}\res\recovery_normal,7.png` `${DEFDATA}\Languages\Japanese\recovery_normal.png` Rename `${APPDIR}\res\recovery_press,1.png` `${DEFDATA}\Languages\English\recovery_press.png` Rename `${APPDIR}\res\recovery_press,2.png` `${DEFDATA}\Languages\German\recovery_press.png` Rename `${APPDIR}\res\recovery_press,3.png` `${DEFDATA}\Languages\French\recovery_press.png` Rename `${APPDIR}\res\recovery_press,4.png` `${DEFDATA}\Languages\Spanish\recovery_press.png` Rename `${APPDIR}\res\recovery_press,5.png` `${DEFDATA}\Languages\Portuguese\recovery_press.png` Rename `${APPDIR}\res\recovery_press,6.png` `${DEFDATA}\Languages\Polish\recovery_press.png` Rename `${APPDIR}\res\recovery_press,7.png` `${DEFDATA}\Languages\Japanese\recovery_press.png` Rename `${APPDIR}\res\Remote management1,1.png` `${DEFDATA}\Languages\English\Remote management1.png` Rename `${APPDIR}\res\Remote management1,2.png` `${DEFDATA}\Languages\German\Remote management1.png` Rename `${APPDIR}\res\Remote management1,3.png` `${DEFDATA}\Languages\French\Remote management1.png` Rename `${APPDIR}\res\Remote management1,4.png` `${DEFDATA}\Languages\Spanish\Remote management1.png` Rename `${APPDIR}\res\Remote management1,5.png` `${DEFDATA}\Languages\Portuguese\Remote management1.png` Rename `${APPDIR}\res\Remote management1,6.png` `${DEFDATA}\Languages\Polish\Remote management1.png` Rename `${APPDIR}\res\Remote management1,7.png` `${DEFDATA}\Languages\Japanese\Remote management1.png` Rename `${APPDIR}\res\Remote management2,1.png` `${DEFDATA}\Languages\English\Remote management2.png` Rename `${APPDIR}\res\Remote management2,2.png` `${DEFDATA}\Languages\German\Remote management2.png` Rename `${APPDIR}\res\Remote management2,3.png` `${DEFDATA}\Languages\French\Remote management2.png` Rename `${APPDIR}\res\Remote management2,4.png` `${DEFDATA}\Languages\Spanish\Remote management2.png` Rename `${APPDIR}\res\Remote management2,5.png` `${DEFDATA}\Languages\Portuguese\Remote management2.png` Rename `${APPDIR}\res\Remote management2,6.png` `${DEFDATA}\Languages\Polish\Remote management2.png` Rename `${APPDIR}\res\Remote management2,7.png` `${DEFDATA}\Languages\Japanese\Remote management2.png` Rename `${APPDIR}\res\Resize basic partition,1.png` `${DEFDATA}\Languages\English\Resize basic partition.png` Rename `${APPDIR}\res\Resize basic partition,2.png` `${DEFDATA}\Languages\German\Resize basic partition.png` Rename `${APPDIR}\res\Resize basic partition,3.png` `${DEFDATA}\Languages\French\Resize basic partition.png` Rename `${APPDIR}\res\Resize basic partition,4.png` `${DEFDATA}\Languages\Spanish\Resize basic partition.png` Rename `${APPDIR}\res\Resize basic partition,5.png` `${DEFDATA}\Languages\Portuguese\Resize basic partition.png` Rename `${APPDIR}\res\Resize basic partition,6.png` `${DEFDATA}\Languages\Polish\Resize basic partition.png` Rename `${APPDIR}\res\Resize basic partition,7.png` `${DEFDATA}\Languages\Japanese\Resize basic partition.png` Rename `${APPDIR}\res\SystemEdition,1.png` `${DEFDATA}\Languages\English\SystemEdition.png` Rename `${APPDIR}\res\SystemEdition,2.png` `${DEFDATA}\Languages\German\SystemEdition.png` Rename `${APPDIR}\res\SystemEdition,3.png` `${DEFDATA}\Languages\French\SystemEdition.png` Rename `${APPDIR}\res\SystemEdition,4.png` `${DEFDATA}\Languages\Spanish\SystemEdition.png` Rename `${APPDIR}\res\SystemEdition,5.png` `${DEFDATA}\Languages\Portuguese\SystemEdition.png` Rename `${APPDIR}\res\SystemEdition,6.png` `${DEFDATA}\Languages\Polish\SystemEdition.png` Rename `${APPDIR}\res\SystemEdition,7.png` `${DEFDATA}\Languages\Japanese\SystemEdition.png` Rename `${APPDIR}\res\tb_text,1.png` `${DEFDATA}\Languages\English\tb_text.png` Rename `${APPDIR}\res\tb_text,2.png` `${DEFDATA}\Languages\German\tb_text.png` Rename `${APPDIR}\res\tb_text,3.png` `${DEFDATA}\Languages\French\tb_text.png` Rename `${APPDIR}\res\tb_text,4.png` `${DEFDATA}\Languages\Spanish\tb_text.png` Rename `${APPDIR}\res\tb_text,5.png` `${DEFDATA}\Languages\Portuguese\tb_text.png` Rename `${APPDIR}\res\tb_text,6.png` `${DEFDATA}\Languages\Polish\tb_text.png` Rename `${APPDIR}\res\tb_text,7.png` `${DEFDATA}\Languages\Japanese\tb_text.png` Rename `${APPDIR}\res\Tool,1.png` `${DEFDATA}\Languages\English\Tool.png` Rename `${APPDIR}\res\Tool,2.png` `${DEFDATA}\Languages\German\Tool.png` Rename `${APPDIR}\res\Tool,3.png` `${DEFDATA}\Languages\French\Tool.png` Rename `${APPDIR}\res\Tool,4.png` `${DEFDATA}\Languages\Spanish\Tool.png` Rename `${APPDIR}\res\Tool,5.png` `${DEFDATA}\Languages\Portuguese\Tool.png` Rename `${APPDIR}\res\Tool,6.png` `${DEFDATA}\Languages\Polish\Tool.png` Rename `${APPDIR}\res\Tool,7.png` `${DEFDATA}\Languages\Japanese\Tool.png` Rename `${APPDIR}\res\version_bg,1.png` `${DEFDATA}\Languages\English\version_bg.png` Rename `${APPDIR}\res\version_bg,2.png` `${DEFDATA}\Languages\German\version_bg.png` Rename `${APPDIR}\res\version_bg,3.png` `${DEFDATA}\Languages\French\version_bg.png` Rename `${APPDIR}\res\version_bg,4.png` `${DEFDATA}\Languages\Spanish\version_bg.png` Rename `${APPDIR}\res\version_bg,5.png` `${DEFDATA}\Languages\Portuguese\version_bg.png` Rename `${APPDIR}\res\version_bg,6.png` `${DEFDATA}\Languages\Polish\version_bg.png` Rename `${APPDIR}\res\version_bg,7.png` `${DEFDATA}\Languages\Japanese\version_bg.png` Rename `${APPDIR}\res\View,1.png` `${DEFDATA}\Languages\English\View.png` Rename `${APPDIR}\res\View,2.png` `${DEFDATA}\Languages\German\View.png` Rename `${APPDIR}\res\View,3.png` `${DEFDATA}\Languages\French\View.png` Rename `${APPDIR}\res\View,4.png` `${DEFDATA}\Languages\Spanish\View.png` Rename `${APPDIR}\res\View,5.png` `${DEFDATA}\Languages\Portuguese\View.png` Rename `${APPDIR}\res\View,6.png` `${DEFDATA}\Languages\Polish\View.png` Rename `${APPDIR}\res\View,7.png` `${DEFDATA}\Languages\Japanese\View.png` Rename `${APPDIR}\res\welcome,1.png` `${DEFDATA}\Languages\English\welcome.png` Rename `${APPDIR}\res\welcome,2.png` `${DEFDATA}\Languages\German\welcome.png` Rename `${APPDIR}\res\welcome,3.png` `${DEFDATA}\Languages\French\welcome.png` Rename `${APPDIR}\res\welcome,4.png` `${DEFDATA}\Languages\Spanish\welcome.png` Rename `${APPDIR}\res\welcome,5.png` `${DEFDATA}\Languages\Portuguese\welcome.png` Rename `${APPDIR}\res\welcome,6.png` `${DEFDATA}\Languages\Polish\welcome.png` Rename `${APPDIR}\res\welcome,7.png` `${DEFDATA}\Languages\Japanese\welcome.png` Rename `${APPDIR}\res\winpe uninstalled,1.png` `${DEFDATA}\Languages\English\winpe uninstalled.png` Rename `${APPDIR}\res\winpe uninstalled,2.png` `${DEFDATA}\Languages\German\winpe uninstalled.png` Rename `${APPDIR}\res\winpe uninstalled,3.png` `${DEFDATA}\Languages\French\winpe uninstalled.png` Rename `${APPDIR}\res\winpe uninstalled,4.png` `${DEFDATA}\Languages\Spanish\winpe uninstalled.png` Rename `${APPDIR}\res\winpe uninstalled,5.png` `${DEFDATA}\Languages\Portuguese\winpe uninstalled.png` Rename `${APPDIR}\res\winpe uninstalled,6.png` `${DEFDATA}\Languages\Polish\winpe uninstalled.png` Rename `${APPDIR}\res\winpe uninstalled,7.png` `${DEFDATA}\Languages\Japanese\winpe uninstalled.png` Rename `${APPDIR}\res\Wizard,1.png` `${DEFDATA}\Languages\English\Wizard.png` Rename `${APPDIR}\res\Wizard,2.png` `${DEFDATA}\Languages\German\Wizard.png` Rename `${APPDIR}\res\Wizard,3.png` `${DEFDATA}\Languages\French\Wizard.png` Rename `${APPDIR}\res\Wizard,4.png` `${DEFDATA}\Languages\Spanish\Wizard.png` Rename `${APPDIR}\res\Wizard,5.png` `${DEFDATA}\Languages\Portuguese\Wizard.png` Rename `${APPDIR}\res\Wizard,6.png` `${DEFDATA}\Languages\Polish\Wizard.png` Rename `${APPDIR}\res\Wizard,7.png` `${DEFDATA}\Languages\Japanese\Wizard.png` RMDir /r `${APPDIR}\res` RMDir /r `${DATA}\Logs` RMDir /r `${DATA}\TrayLogs` RMDir /r `${DATA}\Languages` RMDir /r `${DATA}\SysDir` ClearErrors ${GetFileVersion} `${APPDIR}\bin\Main.exe` $0 IfErrors +2 WriteINIStr `${APPINFO}\appinfo.ini` Version PackageVersion $0 ${Else} SetDetailsPrint textonly DetailPrint "" SetDetailsPrint listonly ${TBProgress_State} Error ${If} $(downloadfailed) != "" MessageBox MB_ICONEXCLAMATION|MB_TOPMOST $(downloadfailed) DetailPrint $(downloadfailed) ${Else} MessageBox MB_ICONEXCLAMATION|MB_TOPMOST `The installer was unable to download ${OPTIONALSECTION1TITLE}. The installation of the portable app will be incomplete without it. Please try installing again. (ERROR: $DOWNLOADRESULT)` DetailPrint `The installer was unable to download ${OPTIONALSECTION1TITLE}. The installation of the portable app will be incomplete without it. Please try installing again. (ERROR: $DOWNLOADRESULT)` ${EndIf} ${TBProgress_State} NoProgress ${EndIf} OFFLINE: SetOutPath `${APPDIR}\bin` File /x thumbs.db `..\..\LicenseMgr.dll` StrCmp $LANGUAGE 1033 0 +3 StrCpy $0 English Goto EndLNG StrCmp $LANGUAGE 1031 0 +3 StrCpy $0 German Goto EndLNG StrCmp $LANGUAGE 1036 0 +3 StrCpy $0 French Goto EndLNG StrCmp $LANGUAGE 1041 0 +3 StrCpy $0 Japanese Goto EndLNG StrCmp $LANGUAGE 1045 0 +3 StrCpy $0 Polish Goto EndLNG StrCmp $LANGUAGE 2070 0 +3 StrCpy $0 Portuguese Goto EndLNG StrCmp $LANGUAGE 1034 0 +3 StrCpy $0 Spanish Goto +2 StrCpy $0 English EndLNG: IfFileExists `${SET}\EPM.reg` 0 +2 WriteINIStr `${SET}\EPM.reg` `HKEY_LOCAL_MACHINE\SOFTWARE\EASEUS\EPM` `"Language"` `"$0"` WriteINIStr `${DEFSET}\EPM.reg` `HKEY_LOCAL_MACHINE\SOFTWARE\EASEUS\EPM` `"Language"` `"$0"` # User config CopyFiles /SILENT `${OTHER}\${APPNAME}.ini` `$INSTDIR` ${If} $ADDITIONALPARAMETERS != "" ${ConfigWrite} `$INSTDIR\${APPNAME}.ini` AdditionalParameters= $ADDITIONALPARAMETERS $R0 ${EndIf} ${If} $RUNLOCALLY != "" ${ConfigWrite} `$INSTDIR\${APPNAME}.ini` RunLocally= $RUNLOCALLY $R0 ${EndIf} ${If} $CMD != 1 StrCpy $0 1 ${Do} ClearErrors ReadINIStr $1 `${INI}` FilesToPreserve PreserveFile$0 ${IfThen} ${Errors} ${|} ${ExitDo} ${|} WriteINIStr `${INS}` FilesToPreserve PreserveFile$0 $1 ${GetFileName} `$1` `$2` ${If} ${FileExists} `$INSTDIR\~$0$2` Delete `$INSTDIR\$1` Rename `$INSTDIR\~$0$2` `$INSTDIR\$1` ${EndIf} IntOp $0 $0 + 1 ${Loop} StrCpy $0 1 ${Do} ClearErrors ReadINIStr $1 `${INI}` DirectoriesToPreserve PreserveDirectory$0 ${IfThen} ${Errors} ${|} ${ExitDo} ${|} WriteINIStr `${INS}` DirectoriesToPreserve PreserveDirectory$0 $1 ${GetAfterChar} `$1` `\` `$2` ${If} ${FileExists} `$INSTDIR\~$0$2` RMDir /r `$INSTDIR\$1` Rename `$INSTDIR\~$0$2` `$INSTDIR\$1` ${EndIf} IntOp $0 $0 + 1 ${Loop} FindFirst $R0 $R1 `$INSTDIR\*` ${DoWhile} $R1 != "" ${If} $R1 != "." ${AndIf} $R1 != ".." StrCpy $R2 $R1 1 StrCmp $R2 ~ 0 +2 RMDir /r `$INSTDIR\$R1` ${EndIf} FindNext $R0 $R1 ${Loop} FindClose $R0 Delete `${INI}` ${EndIf} !ifndef PLUGININSTALLER ;=== Refresh PortableApps.com Menu (not final version) ${GetParent} $INSTDIR $0 ;=== Check that it exists at the right location SetDetailsPrint both DetailPrint '$(checkforplatform)' ${If} ${FileExists} `$0\PortableApps.com\PortableAppsPlatform.exe` ;=== Check that it's the real deal so we aren't hanging with no response MoreInfo::GetProductName `$0\PortableApps.com\PortableAppsPlatform.exe` Pop $1 ${If} $1 == "PortableApps.com Platform" MoreInfo::GetCompanyName `$0\PortableApps.com\PortableAppsPlatform.exe` Pop $1 ${If} $1 == "PortableApps.com" ;=== Check that it's running FindProcDLL::FindProc "PortableAppsPlatform.exe" ${If} $R0 == "1" ;=== Send message for the Menu to refresh CreateDirectory "$0\PortableApps.com\Data" WriteINIStr "$0\PortableApps.com\Data\NewApp.ini" "NewApp" "AppID" "${APPID}" DetailPrint '$(refreshmenu)' ${IfNot} ${FileExists} `$0\PortableApps.com\App\PortableAppsPlatform.exe` StrCpy $2 'PortableApps.comPlatformWindowMessageToRefresh$0\PortableApps.com\PortableAppsPlatform.exe' System::Call "user32::RegisterWindowMessage(t r2) i .r3" SendMessage 65535 $3 0 0 /TIMEOUT=1 ${Else} ; old message StrCpy $2 'PortableApps.comPlatformWindowMessageToRefresh$0\PortableApps.com\App\PortableAppsPlatform.exe' System::Call "user32::RegisterWindowMessage(t r2) i .r3" SendMessage 65535 $3 0 0 /TIMEOUT=1 ${EndIf} ${EndIf} ${EndIf} ${EndIf} ${EndIf} !endif DetailPrint $InstallingStatusString SetDetailsPrint listonly Delete "$INSTDIR\7zTemp\7z.exe" Delete "$INSTDIR\7zTemp\7z.dll" RMDir "$INSTDIR\7zTemp" !ifdef DownloadURL Delete "$INTERNET_CACHE\${FILE1}" Delete "$INTERNET_CACHE\${FILE2}" !endif !ifndef PLUGININSTALLER DeleteINISec "${APPINFO}\appinfo.ini" "Installer" !endif ${If} $bolLogFile == true ${DumpLogToFile} "$EXEDIR\$EXEFILE.log" ${EndIf} SetOutPath $TEMP SectionEnd !ifdef MAINSECTIONTITLE Section /o "${OPTIONALSECTION1TITLE}" SectionEnd !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${MAINSECTIONIDX} "${MAINSECTIONDESCRIPTION}" !insertmacro MUI_DESCRIPTION_TEXT ${OPTIONALSECTION1} "$(32)" !insertmacro MUI_FUNCTION_DESCRIPTION_END !endif Function .onInstFailed !ifdef COPYLOCALFILES ${registry::Unload} !endif RMDir $INSTDIR ;remove directory if empty FunctionEnd !ifdef COPYLOCALFILES Function .onInstSuccess ${registry::Unload} FunctionEnd Function CustomAbortFunction ${registry::Unload} FunctionEnd !endif