1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
|
; FileZilla 3 installation script
; Written by Tim Kosse <mailto:tim.kosse@filezilla-project.org>
;
; Requires NSIS >= 3.0b3
;--------------------------------
; Build environment
;--------------------------------
Unicode true
!define top_srcdir @top_srcdir@
!define srcdir @srcdir@
!define VERSION @PACKAGE_VERSION@
!define VERSION_MAJOR @PACKAGE_VERSION_MAJOR@
!define VERSION_MINOR @PACKAGE_VERSION_MINOR@
!define VERSION_FULL @PACKAGE_VERSION_MAJOR@.@PACKAGE_VERSION_MINOR@.@PACKAGE_VERSION_MICRO@.@PACKAGE_VERSION_NANO@
!define PUBLISHER "Tim Kosse"
!define WEBSITE_URL "https://filezilla-project.org/"
!addplugindir @srcdir@
!define INSTALLER_REGKEY "Software\FileZilla Client"
!define UNINSTALLER_REGKEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\FileZilla Client"
;--------------------------------
; General
;--------------------------------
; Name and file
Name "FileZilla Client ${VERSION}"
OutFile "FileZilla_3_setup.exe"
SetCompressor /SOLID LZMA
; Default installation folder
!if "@NSIS_64BIT@" == "1"
InstallDir "$PROGRAMFILES64\FileZilla FTP Client"
!else
InstallDir "$PROGRAMFILES\FileZilla FTP Client"
!endif
; Get installation folder from registry if available
InstallDirRegKey HKLM "${INSTALLER_REGKEY}" ""
RequestExecutionLevel user
!define DUMP_KEY "SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps"
;--------------------------------
; Libtool executable target path
;--------------------------------
!include libtoolexecutablesubdir.nsh
!ifndef LT_EXEDIR
!define LT_EXEDIR ""
!endif
;--------------------------------
; Include Modern UI and functions
;--------------------------------
!include "MUI2.nsh"
!include "WordFunc.nsh"
!include "Library.nsh"
!include "WinVer.nsh"
!include "FileFunc.nsh"
!include "Memento.nsh"
!include "StrFunc.nsh"
!include "@srcdir@\process_running.nsh"
!include "@srcdir@\UAC.nsh"
${StrRep}
;--------------------------------
; Installer's VersionInfo
;--------------------------------
VIProductVersion "${VERSION_FULL}"
VIAddVersionKey "CompanyName" "${PUBLISHER}"
VIAddVersionKey "ProductName" "FileZilla"
VIAddVersionKey "ProductVersion" "${VERSION}"
VIAddVersionKey "FileDescription" "FileZilla FTP Client"
VIAddVersionKey "FileVersion" "${VERSION}"
VIAddVersionKey "LegalCopyright" "${PUBLISHER}"
VIAddVersionKey "OriginalFilename" "FileZilla_${VERSION}_win32-setup.exe"
;--------------------------------
; Required functions
;--------------------------------
!insertmacro GetParameters
!insertmacro GetOptions
!insertmacro un.GetParameters
!insertmacro un.GetOptions
;--------------------------------
; Variables
;--------------------------------
Var MUI_TEMP
Var STARTMENU_FOLDER
Var PREVIOUS_INSTALLDIR
Var PREVIOUS_VERSION
Var PREVIOUS_VERSION_STATE
Var REINSTALL_UNINSTALL
Var REINSTALL_UNINSTALLBUTTON
Var ALL_USERS_DEFAULT
Var ALL_USERS
Var PREVIOUS_ALL_USERS
Var ALL_USERS_BUTTON
Var IS_ADMIN
Var USERNAME
Var PERFORM_UPDATE
Var SKIPLICENSE
Var SKIPUAC
Var GetInstalledSize.total
Var OldRunDir
Var CommandLine
Var Quiet
;--------------------------------
; Interface Settings
;--------------------------------
!define MUI_ICON "${top_srcdir}/src/interface/resources/FileZilla.ico"
!define MUI_UNICON "${srcdir}/uninstall.ico"
!define MUI_ABORTWARNING
;--------------------------------
; Memento settings
;--------------------------------
!define MEMENTO_REGISTRY_ROOT SHELL_CONTEXT
!define MEMENTO_REGISTRY_KEY "${INSTALLER_REGKEY}"
;--------------------------------
; Pages
;--------------------------------
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageLicensePre
!insertmacro MUI_PAGE_LICENSE "${top_srcdir}\COPYING"
!ifdef ENABLE_OFFERS
!include "@srcdir@\offer.nsh"
Page custom OfferInitPage
Page custom OfferPage OfferPageLeave
!endif
Page custom PageReinstall PageLeaveReinstall
Page custom PageAllUsers PageLeaveAllUsers
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageComponentsPre
!insertmacro MUI_PAGE_COMPONENTS
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageDirectoryPre
!insertmacro MUI_PAGE_DIRECTORY
; Start Menu Folder Page Configuration
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
!define MUI_STARTMENUPAGE_REGISTRY_KEY "${INSTALLER_REGKEY}"
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Startmenu"
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "FileZilla FTP Client"
!define MUI_PAGE_CUSTOMFUNCTION_PRE PageStartmenuPre
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE PostInstPage
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION CustomFinishRun
!define MUI_FINISHPAGE_RUN_TEXT "&Start FileZilla now"
!define MUI_PAGE_CUSTOMFUNCTION_SHOW PageFinishPre
!insertmacro MUI_PAGE_FINISH
!define MUI_PAGE_CUSTOMFUNCTION_PRE un.ConfirmPagePre
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!define MUI_PAGE_CUSTOMFUNCTION_PRE un.FinishPagePre
!insertmacro MUI_UNPAGE_FINISH
Function GetUserInfo
ClearErrors
UserInfo::GetName
${If} ${Errors}
StrCpy $IS_ADMIN 1
Return
${EndIf}
Pop $USERNAME
${If} ${UAC_IsAdmin}
StrCpy $IS_ADMIN 1
${Else}
StrCpy $IS_ADMIN 0
${EndIf}
FunctionEnd
Function UpdateShellVarContext
${If} $ALL_USERS == 1
SetShellVarContext all
DetailPrint "Installing for all users"
${Else}
SetShellVarContext current
DetailPrint "Installing for current user"
${EndIf}
FunctionEnd
!Macro MessageBoxImpl options text sdreturn checks
${If} $Quiet == 1
MessageBox ${options} `${text}` ${checks}
${Else}
MessageBox ${options} `${text}` /SD ${sdreturn} ${checks}
${Endif}
!MacroEnd
!define MessageBox `!insertmacro MessageBoxImpl`
Function ReadAllUsersCommandline
${GetOptions} $CommandLine "/user" $R1
${Unless} ${Errors}
${If} $R1 == "current"
${OrIf} $R1 == "=current"
StrCpy $ALL_USERS 0
${ElseIf} $R1 == "all"
${OrIf} $R1 == "=all"
StrCpy $ALL_USERS 1
${Else}
${MessageBox} MB_ICONSTOP "Invalid option for /user. Has to be either /user=all or /user=current" IDOK ''
Abort
${EndIf}
${EndUnless}
Call UpdateShellVarContext
FunctionEnd
Function CheckPrevInstallDirExists
${If} $PREVIOUS_INSTALLDIR != ""
; Make sure directory is valid
Push $R0
Push $R1
StrCpy $R0 "$PREVIOUS_INSTALLDIR" "" -1
${If} $R0 == '\'
${OrIf} $R0 == '/'
StrCpy $R0 $PREVIOUS_INSTALLDIR*.*
${Else}
StrCpy $R0 $PREVIOUS_INSTALLDIR\*.*
${EndIf}
${IfNot} ${FileExists} $R0
StrCpy $PREVIOUS_INSTALLDIR ""
${EndIf}
Pop $R1
Pop $R0
${EndIf}
FunctionEnd
Function ReadPreviousVersion
ReadRegStr $PREVIOUS_INSTALLDIR HKLM "${INSTALLER_REGKEY}" ""
Call CheckPrevInstallDirExists
${If} $PREVIOUS_INSTALLDIR != ""
; Detect version
ReadRegStr $PREVIOUS_VERSION HKLM "${INSTALLER_REGKEY}" "Version"
${If} $PREVIOUS_VERSION != ""
StrCpy $PREVIOUS_ALL_USERS 1
SetShellVarContext all
return
${EndIf}
${EndIf}
ReadRegStr $PREVIOUS_INSTALLDIR HKCU "${INSTALLER_REGKEY}" ""
Call CheckPrevInstallDirExists
${If} $PREVIOUS_INSTALLDIR != ""
; Detect version
ReadRegStr $PREVIOUS_VERSION HKCU "${INSTALLER_REGKEY}" "Version"
${If} $PREVIOUS_VERSION != ""
StrCpy $PREVIOUS_ALL_USERS 0
SetShellVarContext current
return
${EndIf}
${EndIf}
FunctionEnd
Function LoadPreviousSettings
; Component selection
${MementoSectionRestore}
; Startmenu
!define ID "Application"
!ifdef MUI_STARTMENUPAGE_${ID}_REGISTRY_ROOT & MUI_STARTMENUPAGE_${ID}_REGISTRY_KEY & MUI_STARTMENUPAGE_${ID}_REGISTRY_VALUENAME
ReadRegStr $mui.StartMenuPage.RegistryLocation "${MUI_STARTMENUPAGE_${ID}_REGISTRY_ROOT}" "${MUI_STARTMENUPAGE_${ID}_REGISTRY_KEY}" "${MUI_STARTMENUPAGE_${ID}_REGISTRY_VALUENAME}"
${if} $mui.StartMenuPage.RegistryLocation != ""
StrCpy "$STARTMENU_FOLDER" $mui.StartMenuPage.RegistryLocation
${else}
StrCpy "$STARTMENU_FOLDER" ""
${endif}
!undef ID
!endif
${If} $PREVIOUS_INSTALLDIR != ""
StrCpy $INSTDIR $PREVIOUS_INSTALLDIR
${EndIf}
FunctionEnd
Function ReadUpdateCommandline
${GetOptions} $CommandLine "/update" $R1
${If} ${Errors}
StrCpy $PERFORM_UPDATE 0
${Else}
StrCpy $PERFORM_UPDATE 1
${EndIf}
FunctionEnd
Function ReadSkipLicense
${GetOptions} $CommandLine "/skiplicense" $R1
${If} ${Errors}
StrCpy $SKIPLICENSE 0
${Else}
StrCpy $SKIPLICENSE 1
${EndIf}
FunctionEnd
Function ReadSkipUAC
Push $R0
Push $R1
${GetOptions} $CommandLine "/skipuac" $R1
${If} ${Errors}
StrCpy $SKIPUAC 0
${Else}
StrCpy $SKIPUAC 1
${EndIf}
${If} $ALL_USERS == 0
${AndIf} $SKIPUAC != 1
${If} ${Silent}
${OrIf} $PERFORM_UPDATE == 1
StrCpy $R0 $PREVIOUS_INSTALLDIR
${If} $R0 == ''
StrCpy $R0 $INSTDIR
${EndIf}
ClearErrors
${GetFileAttributes} $R0 "DIRECTORY" $R1
${If} ${Errors}
StrCpy $SKIPUAC 1
${Else}
; If the previous installation dir exists, only skip UAC if it is writable.
StrCpy $R1 $R0\5h662xgwgxr5k.tmp
System::Call "kernel32::CreateFileW(w R1, i 0x40000000, i 2, p 0, i 2, i 0x4000002, p 0) p.R1"
${If} $R1 != -1
StrCpy $SKIPUAC 1
System::Call "kernel32::CloseHandle(p R1)"
${EndIf}
${EndIf}
${EndIf}
${EndIf}
Pop $R1
Pop $R0
FunctionEnd
Function ReadQuiet
${GetOptions} $CommandLine "/quiet" $R1
${If} ${Errors}
StrCpy $Quiet 0
${Else}
StrCpy $Quiet 1
SetSilent silent
${EndIf}
FunctionEnd
Function .onInit
; The very first thing we should do: See if there's still a running FZ, we use it to detect
; cases were users have installed multiple copies installed in different directories.
Push "filezilla.exe"
Call IsProcessRunning
Pop $OldRunDir
; Store command line
${GetParameters} $CommandLine
Call ReadQuiet
${Unless} ${AtLeastWin7}
${MessageBox} MB_YESNO|MB_ICONSTOP "Unsupported operating system.$\nFileZilla ${VERSION} requires at least Windows 7 and may not work correctly on your system.$\nDo you really want to continue with the installation?" IDNO 'IDYES installonoldwindows'
Abort
installonoldwindows:
${EndUnless}
!if "@NSIS_64BIT@" == "1"
${Unless} ${RunningX64}
${MessageBox} MB_YESNO|MB_ICONSTOP "Unsupported operating system.$\nThis is the installer for the 64bit version of FileZilla ${VERSION} and does not run on your operating system which is only 32bit.$\nPlease download the 32bit FileZilla installer instead.$\nDo you really want to continue with the installation?" IDNO 'IDYES install64on32'
Abort
install64on32:
${EndUnless}
!endif
; /update argument
Call ReadUpdateCommandline
Call ReadSkipLicense
; See if previous version exists
Call ReadPreviousVersion
Call ReadAllUsersCommandline
Call GetUserInfo
; Initialize $ALL_USERS with default value
${If} $ALL_USERS == ''
${If} $PREVIOUS_ALL_USERS != ''
StrCpy $ALL_USERS $PREVIOUS_ALL_USERS
${ElseIf} $IS_ADMIN == 1
StrCpy $ALL_USERS 1
${Else}
StrCpy $ALL_USERS 0
${EndIf}
${EndIf}
Call UpdateShellVarContext
; Elevate if needed
Call ReadSkipUAc
${If} $SKIPUAC != 1
!insertmacro UAC_RunElevated
${Switch} $0
${Case} 0
${IfThen} $1 = 1 ${|} Quit ${|} ;we are the outer process, the inner process has done its work, we are done.
; Ignore success or failure here. Correct privileges are checked later on.
${Break}
${Case} 1223
; User aborted elevation, continue regardless
${Break}
${Default}
${MessageBox} mb_iconstop "Could not elevate process (errorcode $0), continuing with normal user privileges." IDOK ''
${Break}
${EndSwitch}
; The UAC plugin changes the error level even in the inner process, reset it.
SetErrorLevel -1
${EndIf}
; Must call again after UAC
Call GetUserInfo
${If} $PREVIOUS_VERSION != ""
StrCpy $REINSTALL_UNINSTALL 1
${EndIf}
; Load _all_ previous settings.
; Need to do it now as up to now, $ALL_USERS was possibly reflecting a
; previous installation. After this call, $ALL_USERS reflects the requested
; installation mode for this installation.
Call LoadPreviousSettings
${If} $IS_ADMIN == 0
${If} $PREVIOUS_ALL_USERS == 1
${MessageBox} MB_ICONSTOP "FileZilla has been previously installed for all users.$\nPlease restart the installer with Administrator privileges." IDOK ''
Abort
${ElseIf} $ALL_USERS == 1
${MessageBox} MB_ICONSTOP "Cannot install for all users.$\nPlease restart the installer with Administrator privileges." IDOK ''
Abort
${EndIf}
${EndIf}
${If} $PREVIOUS_VERSION == ""
StrCpy $PERFORM_UPDATE 0
DetailPrint "No previous version of FileZilla was found"
${Else}
Push "${VERSION}"
Push $PREVIOUS_VERSION
Call FZVersionCompare
DetailPrint "Found previous version: $PREVIOUS_VERSION"
DetailPrint "Installing $PREVIOUS_VERSION_STATE version ${VERSION}"
${EndIf}
StrCpy $ALL_USERS_DEFAULT $ALL_USERS
FunctionEnd
Function FZVersionCompare
Exch $1
Exch
Exch $0
Push $2
Push $3
Push $4
versioncomparebegin:
${If} $0 == ""
${AndIf} $1 == ""
StrCpy $PREVIOUS_VERSION_STATE "same"
goto versioncomparedone
${EndIf}
StrCpy $2 0
StrCpy $3 0
; Parse rc / beta suffixes for segments
StrCpy $4 $0 2
${If} $4 == "rc"
StrCpy $2 100
StrCpy $0 $0 "" 2
${Else}
StrCpy $4 $0 4
${If} $4 == "beta"
StrCpy $0 $0 "" 4
${Else}
StrCpy $2 10000
${EndIf}
${EndIf}
StrCpy $4 $1 2
${If} $4 == "rc"
StrCpy $3 100
StrCpy $1 $1 "" 2
${Else}
StrCpy $4 $1 4
${If} $4 == "beta"
StrCpy $1 $1 "" 4
${Else}
StrCpy $3 10000
${EndIf}
${EndIf}
split1loop:
StrCmp $0 "" split1loopdone
StrCpy $4 $0 1
StrCpy $0 $0 "" 1
StrCmp $4 "." split1loopdone
StrCmp $4 "-" split1loopdone
StrCpy $2 $2$4
goto split1loop
split1loopdone:
split2loop:
StrCmp $1 "" split2loopdone
StrCpy $4 $1 1
StrCpy $1 $1 "" 1
StrCmp $4 "." split2loopdone
StrCmp $4 "-" split2loopdone
StrCpy $3 $3$4
goto split2loop
split2loopdone:
${If} $2 > $3
StrCpy $PREVIOUS_VERSION_STATE "newer"
${ElseIf} $3 > $2
StrCpy $PREVIOUS_VERSION_STATE "older"
${Else}
goto versioncomparebegin
${EndIf}
versioncomparedone:
Pop $4
Pop $3
Pop $2
Pop $1
Pop $0
FunctionEnd
Function PageLicensePre
${If} $PERFORM_UPDATE == 1
Abort
${Elseif} $SKIPLICENSE == 1
Abort
${EndIf}
FunctionEnd
Function PageReinstall
${If} $PREVIOUS_VERSION == ""
Abort
${EndIf}
${If} $PERFORM_UPDATE == 1
Abort
${EndIf}
nsDialogs::Create /NOUNLOAD 1018
Pop $0
${If} $PREVIOUS_VERSION_STATE == "newer"
!insertmacro MUI_HEADER_TEXT "Already Installed" "Choose how you want to install FileZilla."
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 40 "An older version of FileZilla is installed on your system. Select the operation you want to perform and click Next to continue."
Pop $R0
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP} 0 10 55 100% 30 "Upgrade FileZilla using previous settings (recommended)"
Pop $REINSTALL_UNINSTALLBUTTON
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 10 85 100% 50 "Change settings (advanced)"
Pop $R0
${If} $REINSTALL_UNINSTALL == ""
StrCpy $REINSTALL_UNINSTALL 1
${EndIf}
${ElseIf} $PREVIOUS_VERSION_STATE == "older"
!insertmacro MUI_HEADER_TEXT "Already Installed" "Choose how you want to install FileZilla."
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 40 "A newer version of FileZilla is already installed! It is not recommended that you downgrade to an older version. Select the operation you want to perform and click Next to continue."
Pop $R0
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP} 0 10 55 100% 30 "Downgrade FileZilla using previous settings (recommended)"
Pop $REINSTALL_UNINSTALLBUTTON
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 10 85 100% 50 "Change settings (advanced)"
Pop $R0
${If} $REINSTALL_UNINSTALL == ""
StrCpy $REINSTALL_UNINSTALL 1
${EndIf}
${ElseIf} $PREVIOUS_VERSION_STATE == "same"
!insertmacro MUI_HEADER_TEXT "Already Installed" "Choose the maintenance option to perform."
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 40 "FileZilla ${VERSION} is already installed. Select the operation you want to perform and click Next to continue."
Pop $R0
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP} 0 10 55 100% 30 "Add/Remove/Reinstall components"
Pop $REINSTALL_UNINSTALLBUTTON
nsDialogs::CreateItem /NOUNLOAD BUTTON ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 10 85 100% 50 "Uninstall FileZilla"
Pop $R0
${If} $REINSTALL_UNINSTALL == ""
StrCpy $REINSTALL_UNINSTALL 1
${EndIf}
${Else}
${MessageBox} MB_ICONSTOP "Unknown value of PREVIOUS_VERSION_STATE, aborting" IDOK ''
Abort
${EndIf}
${If} $REINSTALL_UNINSTALL == "1"
SendMessage $REINSTALL_UNINSTALLBUTTON ${BM_SETCHECK} 1 0
${Else}
SendMessage $R0 ${BM_SETCHECK} 1 0
${EndIf}
${If} $SKIPLICENSE == 1
EnableWindow $mui.Button.Back 0
${Else}
EnableWindow $mui.Button.Back 1
${Endif}
nsDialogs::Show
FunctionEnd
Function CleanLeftovers
DetailPrint "Cleaning leftover files"
SetDetailsPrint none
Delete "$INSTDIR\libgcc_s_sjlj-1.dll"
Delete "$INSTDIR\libstdc++-6.dll"
Delete "$INSTDIR\libwinpthread-1.dll"
Delete "$INSTDIR\mingwm10.dll"
Delete "$INSTDIR\resources\dialogs.xrc"
Delete "$INSTDIR\resources\filezilla.xpm"
Delete "$INSTDIR\resources\inputdialog.xrc"
Delete "$INSTDIR\resources\menus.xrc"
Delete "$INSTDIR\resources\netconfwizard.xrc"
Delete "$INSTDIR\resources\quickconnectbar.xrc"
Delete "$INSTDIR\resources\settings.xrc"
Delete "$INSTDIR\resources\themes.xml"
Delete "$INSTDIR\resources\toolbar.xrc"
Delete "$INSTDIR\resources\update.xrc"
Delete "$INSTDIR\resources\xxquickconnectbar.xrc"
Delete "$INSTDIR\resources\xxtoolbar.xrc"
Delete "$INSTDIR\resources\xrc\toolbar.xrc"
RMDir "$INSTDIR\resources"
Delete "$INSTDIR\locales\ar_EG\filezilla.mo"
Delete "$INSTDIR\locales\bg\filezilla.mo"
Delete "$INSTDIR\locales\ca_ES\filezilla.mo"
Delete "$INSTDIR\locales\cs\filezilla.mo"
Delete "$INSTDIR\locales\da_DK\filezilla.mo"
Delete "$INSTDIR\locales\de_DE\filezilla.mo"
Delete "$INSTDIR\locales\el_GR\filezilla.mo"
Delete "$INSTDIR\locales\es_ES\filezilla.mo"
Delete "$INSTDIR\locales\et_EE\filezilla.mo"
Delete "$INSTDIR\locales\eu_ES\filezilla.mo"
Delete "$INSTDIR\locales\fi\filezilla.mo"
Delete "$INSTDIR\locales\fr_CA\filezilla.mo"
Delete "$INSTDIR\locales\fr_FR\filezilla.mo"
Delete "$INSTDIR\locales\gl\filezilla.mo"
Delete "$INSTDIR\locales\gr\filezilla.mo"
Delete "$INSTDIR\locales\hu\filezilla.mo"
Delete "$INSTDIR\locales\it_IT\filezilla.mo"
Delete "$INSTDIR\locales\km\filezilla.mo"
Delete "$INSTDIR\locales\lt\filezilla.mo"
Delete "$INSTDIR\locales\lv\filezilla.mo"
Delete "$INSTDIR\locales\mk\filezilla.mo"
Delete "$INSTDIR\locales\nl_NL\filezilla.mo"
Delete "$INSTDIR\locales\ru_RU\filezilla.mo"
Delete "$INSTDIR\locales\sk\filezilla.mo"
Delete "$INSTDIR\locales\sl\filezilla.mo"
Delete "$INSTDIR\locales\sv_SE\filezilla.mo"
Delete "$INSTDIR\locales\tr_TR\filezilla.mo"
RMDir "$INSTDIR\locales\ar_EG"
RMDir "$INSTDIR\locales\bg"
RMDir "$INSTDIR\locales\ca_ES"
RMDir "$INSTDIR\locales\cs"
RMDir "$INSTDIR\locales\da_DK"
RMDir "$INSTDIR\locales\de_DE"
RMDir "$INSTDIR\locales\el_GR"
RMDir "$INSTDIR\locales\es_ES"
RMDir "$INSTDIR\locales\et_EE"
RMDir "$INSTDIR\locales\eu_ES"
RMDir "$INSTDIR\locales\fi"
RMDir "$INSTDIR\locales\fr_CA"
RMDir "$INSTDIR\locales\fr_FR"
RMDir "$INSTDIR\locales\gl"
RMDir "$INSTDIR\locales\gr"
RMDir "$INSTDIR\locales\hu"
RMDir "$INSTDIR\locales\it_IT"
RMDir "$INSTDIR\locales\km"
RMDir "$INSTDIR\locales\lt"
RMDir "$INSTDIR\locales\lv"
RMDir "$INSTDIR\locales\mk"
RMDir "$INSTDIR\locales\nl_NL"
RMDir "$INSTDIR\locales\ru_RU"
RMDir "$INSTDIR\locales\sk"
RMDir "$INSTDIR\locales\sl"
RMDir "$INSTDIR\locales\sv_SE"
RMDir "$INSTDIR\locales\tr_TR"
RMDir "$INSTDIR\locales"
SetDetailsPrint lastused
FunctionEnd
Function RunUninstaller
${If} $PREVIOUS_ALL_USERS == 1
ReadRegStr $R1 HKLM "${UNINSTALLER_REGKEY}" "UninstallString"
${Else}
ReadRegStr $R1 HKCU "${UNINSTALLER_REGKEY}" "UninstallString"
${EndIf}
${If} $R1 == ""
Return
${EndIf}
; Run uninstaller
HideWindow
ClearErrors
${If} $REINSTALL_UNINSTALL == "2"
${AndIf} $PREVIOUS_VERSION_STATE == "same"
StrCpy $R2 ""
${Else}
StrCpy $R2 "/frominstall /keepstartmenudir"
${EndIf}
${If} $QUIET == 1
StrCpy $R2 "$R2 /quiet"
${EndIf}
${If} ${Silent}
StrCpy $R2 "$R2 /S"
${EndIf}
StrCpy $R3 $R1 1
${If} $R3 == '"'
ExecWait '$R1 $R2 _?=$INSTDIR'
${Else}
ExecWait '"$R1" $R2 _?=$INSTDIR'
${EndIf}
IfErrors no_remove_uninstaller
IfFileExists "$INSTDIR\uninstall.exe" 0 no_remove_uninstaller
Delete "$R1"
; Remove directory only if uninstalling for good
${If} $REINSTALL_UNINSTALL == "2"
RMDir $INSTDIR
${EndIf}
no_remove_uninstaller:
BringToFront
Sleep 500
FunctionEnd
Function PageLeaveReinstall
SendMessage $REINSTALL_UNINSTALLBUTTON ${BM_GETCHECK} 0 0 $R0
${If} $R0 == 1
; Option to uninstall old version selected
StrCpy $REINSTALL_UNINSTALL 1
${Else}
; Custom up/downgrade or add/remove/reinstall
StrCpy $REINSTALL_UNINSTALL 2
${If} $PREVIOUS_VERSION_STATE == "same"
Call RunUninstaller
Quit
${EndIf}
${EndIf}
; Need to reload defaults. User could have
; chosen custom, change something, went back and selected
; the express option.
StrCpy $ALL_USERS $ALL_USERS_DEFAULT
Call UpdateShellVarContext
Call LoadPreviousSettings
FunctionEnd
Function PageAllUsers
${If} $REINSTALL_UNINSTALL == 1
${AndIf} $PREVIOUS_VERSION_STATE != "same"
; Keep same settings
Abort
${EndIf}
${If} $PERFORM_UPDATE == 1
StrCpy $REINSTALL_UNINSTALL 1
Abort
${EndIf}
!insertmacro MUI_HEADER_TEXT "Choose Installation Options" "Who should this application be installed for?"
nsDialogs::Create /NOUNLOAD 1018
Pop $0
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 0 100% 30 "Please select whether you wish to make this software available to all users or just yourself."
Pop $R0
${If} $IS_ADMIN == 1
StrCpy $R2 ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP}
${Else}
StrCpy $R2 ${BS_AUTORADIOBUTTON}|${BS_VCENTER}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}|${WS_GROUP}|${WS_TABSTOP}|${WS_DISABLED}
${EndIf}
nsDialogs::CreateItem /NOUNLOAD BUTTON $R2 0 10 55 100% 30 "&Anyone who uses this computer (all users)"
Pop $ALL_USERS_BUTTON
StrCpy $R2 ${BS_AUTORADIOBUTTON}|${BS_TOP}|${BS_MULTILINE}|${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS}
${If} $USERNAME != ""
nsDialogs::CreateItem /NOUNLOAD BUTTON $R2 0 10 85 100% 50 "&Only for me ($USERNAME)"
${Else}
nsDialogs::CreateItem /NOUNLOAD BUTTON $R2 0 10 85 100% 50 "&Only for me"
${EndIf}
Pop $R0
${If} $PREVIOUS_VERSION != ""
${If} $PREVIOUS_ALL_USERS == 1
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 -30 100% 30 "FileZilla has been previously installed for all users."
${Else}
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 -30 100% 30 "FileZilla has been previously installed for this user only."
${EndIf}
${Else}
nsDialogs::CreateItem /NOUNLOAD STATIC ${WS_VISIBLE}|${WS_CHILD}|${WS_CLIPSIBLINGS} 0 0 -30 100% 30 "Installation for all users requires Administrator privileges."
${EndIf}
Pop $R1
${If} $ALL_USERS == "1"
SendMessage $ALL_USERS_BUTTON ${BM_SETCHECK} 1 0
${Else}
SendMessage $R0 ${BM_SETCHECK} 1 0
${EndIf}
${If} $PREVIOUS_VERSION == ""
${IF} $SKIPLICENSE == 1
EnableWindow $mui.Button.Back 0
${ENDIF}
${EndIf}
nsDialogs::Show
FunctionEnd
Function PageLeaveAllUsers
SendMessage $ALL_USERS_BUTTON ${BM_GETCHECK} 0 0 $R0
${If} $R0 == 0
StrCpy $ALL_USERS "0"
${Else}
StrCpy $ALL_USERS "1"
${EndIf}
Call UpdateShellVarContext
FunctionEnd
Function PageComponentsPre
${If} $PERFORM_UPDATE == 1
Abort
${EndIf}
${If} $REINSTALL_UNINSTALL == 1
${AndIf} $PREVIOUS_VERSION_STATE != "same"
Abort
${EndIf}
FunctionEnd
Function PageDirectoryPre
${If} $PERFORM_UPDATE == 1
Abort
${EndIf}
${If} $REINSTALL_UNINSTALL == "1"
${AndIf} $PREVIOUS_VERSION_STATE != "same"
Abort
${EndIf}
FunctionEnd
Function PageStartmenuPre
${If} $PERFORM_UPDATE == 1
Abort
${EndIf}
${If} $REINSTALL_UNINSTALL == "1"
${AndIf} $PREVIOUS_VERSION_STATE != "same"
${If} "$STARTMENU_FOLDER" == ""
StrCpy "$STARTMENU_FOLDER" ">"
${EndIf}
Abort
${EndIf}
FunctionEnd
Function CheckFileZillaRunning
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
${If} $PERFORM_UPDATE == 1
StrCpy $R0 10
${Else}
StrCpy $R0 2
${EndIf}
${While} $R1 != ''
${If} $R0 == 0
${ExitWhile}
${EndIf}
Sleep 500
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
IntOp $R0 $R0 - 1
${EndWhile}
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
${While} $R1 != ''
${MessageBox} MB_ABORTRETRYIGNORE|MB_DEFBUTTON2 "FileZilla appears to be running.$\nPlease close all running instances of FileZilla before continuing the installation." IDIGNORE 'IDABORT CheckFileZillaRunning_abort IDIGNORE CheckFileZillaRunning_ignore'
Push "filezilla.exe"
Call IsProcessRunning
Pop $R1
${EndWhile}
CheckFileZillaRunning_ignore:
Return
CheckFileZillaRunning_abort:
Quit
FunctionEnd
Function .OnInstFailed
FunctionEnd
Function .onInstSuccess
${MementoSectionSave}
; Detect multiple install directories
${If} $OldRunDir != ''
${GetFileVersion} $OldRunDir $R0
${GetFileVersion} "$Instdir\filezilla.exe" $R1
StrCpy $R2 $OldRunDir -14
${If} $R0 != ''
${AndIf} $R1 != ''
${AndIf} $R0 != $R1
${MessageBox} MB_ICONEXCLAMATION 'Multiple installations of FileZilla detected.$\n$\nFileZilla ${VERSION} has been installed to "$InstDir".$\nAn old installation of FileZilla $R0 still exists in the "$R2" directory.$\n$\nPlease delete the old version in the "$R2" directory.' IDOK ''
${EndIf}
${EndIf}
FunctionEnd
;--------------------------------
; Languages
;--------------------------------
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
; Installer Sections
;--------------------------------
!macro INSTALLICONSET SET
DetailPrint "Installing ${SET} icon set"
SetDetailsPrint none
SetOutPath "$INSTDIR\resources\${SET}"
File "${top_srcdir}/src\interface\resources\${SET}\theme.xml"
File /r "${top_srcdir}/src\interface\resources\${SET}\*.png"
File /nonfatal /r "${top_srcdir}/src\interface\resources\${SET}\*.gif"
SetDetailsPrint lastused
!macroend
Section "FileZilla Client" SecMain
SectionIn 1 RO
Call CheckFileZillaRunning
${If} $REINSTALL_UNINSTALL != ""
Call RunUninstaller
${EndIf}
Call CleanLeftovers
SetOutPath "$INSTDIR"
!ifndef DUMMY_INSTALLER
File "..\src\interface\${LT_EXEDIR}FileZilla.exe"
File "..\src\putty\${LT_EXEDIR}fzsftp.exe"
File "..\src\putty\${LT_EXEDIR}fzputtygen.exe"
!if /FileExists "..\src\storj\${LT_EXEDIR}fzstorj.exe"
File "..\src\storj\${LT_EXEDIR}fzstorj.exe"
!endif
File "${top_srcdir}\GPL.html"
File "${top_srcdir}\NEWS"
File "${top_srcdir}\AUTHORS"
!include "dll_gui_install.nsh"
DetailPrint "Installing resource files"
SetDetailsPrint none
SetOutPath "$INSTDIR\resources"
File "${top_srcdir}/src\interface\resources\defaultfilters.xml"
File "${top_srcdir}/src\interface\resources\finished.wav"
SetOutPath "$INSTDIR\resources\16x16"
File "${top_srcdir}/src\interface\resources\16x16\*.png"
File "${top_srcdir}/src\interface\resources\16x16\*.gif"
SetOutPath "$INSTDIR\resources\20x20"
File "${top_srcdir}/src\interface\resources\20x20\*.png"
SetOutPath "$INSTDIR\resources\24x24"
File "${top_srcdir}/src\interface\resources\24x24\*.png"
SetOutPath "$INSTDIR\resources\32x32"
File "${top_srcdir}/src\interface\resources\32x32\*.png"
SetOutPath "$INSTDIR\resources\48x48"
File "${top_srcdir}/src\interface\resources\48x48\*.png"
SetOutPath "$INSTDIR\resources\480x480"
File "${top_srcdir}/src\interface\resources\480x480\*.png"
!insertmacro INSTALLICONSET default
SetOutPath "$INSTDIR\docs"
File "${top_srcdir}\docs\fzdefaults.xml.example"
!endif
SetDetailsPrint lastused
; Create uninstaller
WriteUninstaller "$INSTDIR\uninstall.exe"
WriteRegStr SHCTX "${INSTALLER_REGKEY}" "" $INSTDIR
WriteRegStr SHCTX "${INSTALLER_REGKEY}" "Version" "${VERSION}"
${If} $PERFORM_UPDATE == 0
; Open question: How to deal with non-installer packages, e.g. the zip archive?
!ifdef ENABLE_OFFERS
WriteRegDWORD SHCTX "${INSTALLER_REGKEY}" "Package" 2
!else
WriteRegDWORD SHCTX "${INSTALLER_REGKEY}" "Package" 1
!endif
ClearErrors
${GetOptions} $CommandLine "/channel" $R1
${Unless} ${Errors}
WriteRegStr SHCTX "${INSTALLER_REGKEY}" "Channel" $R1
${EndUnless}
${EndIf}
WriteRegDWORD SHCTX "${INSTALLER_REGKEY}" "Updated" $PERFORM_UPDATE
${StrRep} $R0 "$INSTDIR\uninstall.exe" '"' '""'
WriteRegExpandStr SHCTX "${UNINSTALLER_REGKEY}" "UninstallString" '"$R0"'
WriteRegExpandStr SHCTX "${UNINSTALLER_REGKEY}" "InstallLocation" "$INSTDIR"
WriteRegStr SHCTX "${UNINSTALLER_REGKEY}" "DisplayName" "FileZilla ${VERSION}"
WriteRegStr SHCTX "${UNINSTALLER_REGKEY}" "DisplayIcon" "$INSTDIR\FileZilla.exe"
WriteRegStr SHCTX "${UNINSTALLER_REGKEY}" "DisplayVersion" "${VERSION}"
WriteRegStr SHCTX "${UNINSTALLER_REGKEY}" "URLInfoAbout" "${WEBSITE_URL}"
WriteRegStr SHCTX "${UNINSTALLER_REGKEY}" "URLUpdateInfo" "${WEBSITE_URL}"
WriteRegStr SHCTX "${UNINSTALLER_REGKEY}" "HelpLink" "${WEBSITE_URL}"
WriteRegStr SHCTX "${UNINSTALLER_REGKEY}" "Publisher" "${PUBLISHER}"
WriteRegDWORD SHCTX "${UNINSTALLER_REGKEY}" "VersionMajor" "${VERSION_MAJOR}"
WriteRegDWORD SHCTX "${UNINSTALLER_REGKEY}" "VersionMinor" "${VERSION_MINOR}"
WriteRegDWORD SHCTX "${UNINSTALLER_REGKEY}" "NoModify" "1"
WriteRegDWORD SHCTX "${UNINSTALLER_REGKEY}" "NoRepair" "1"
Call GetInstalledSize
WriteRegDWORD SHCTX "${UNINSTALLER_REGKEY}" "EstimatedSize" "$GetInstalledSize.total" ; Create/Write the reg key with the dword value
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
; Create shortcuts
SetOutPath "$INSTDIR"
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\FileZilla.lnk" "$INSTDIR\filezilla.exe"
${If} ${AtLeastWin7}
; Setting AppID
push "FileZilla.Client.AppID"
push "$SMPROGRAMS\$STARTMENU_FOLDER\FileZilla.lnk"
nsis_appid::set_appid
${EndIf}
!insertmacro MUI_STARTMENU_WRITE_END
Push $R0
StrCpy $R0 "$STARTMENU_FOLDER" 1
${if} $R0 == ">"
; Write folder to registry
WriteRegStr "${MUI_STARTMENUPAGE_Application_REGISTRY_ROOT}" "${MUI_STARTMENUPAGE_Application_REGISTRY_KEY}" "${MUI_STARTMENUPAGE_Application_REGISTRY_VALUENAME}" ">"
${endif}
Pop $R0
${If} $ALL_USERS == 1
; Enable mini dumps
${If} ${RunningX64}
SetRegView 64
${EndIf}
WriteRegDWORD HKLM "${DUMP_KEY}\filezilla.exe" "DumpType" "1"
WriteRegDWORD HKLM "${DUMP_KEY}\fzsftp.exe" "DumpType" "1"
WriteRegDWORD HKLM "${DUMP_KEY}\fzputtygen.exe" "DumpType" "1"
!if /FileExists "..\src\storj\${LT_EXEDIR}fzstorj.exe"
WriteRegDWORD HKLM "${DUMP_KEY}\fzstorj.exe" "DumpType" "1"
!endif
${If} ${RunningX64}
SetRegView lastused
${EndIf}
${EndIf}
; Register App Path so that typing filezilla in Win+R dialog starts FileZilla
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\App Paths\filezilla.exe" "" "$INSTDIR\filezilla.exe"
WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\App Paths\filezilla.exe" "Path" "$INSTDIR"
SectionEnd
${MementoSection} "Icon sets" SecIconSets
!ifndef DUMMY_INSTALLER
!insertmacro INSTALLICONSET blukis
!insertmacro INSTALLICONSET classic
!insertmacro INSTALLICONSET cyril
!insertmacro INSTALLICONSET flatzilla
!insertmacro INSTALLICONSET lone
!insertmacro INSTALLICONSET minimal
!insertmacro INSTALLICONSET opencrystal
!insertmacro INSTALLICONSET sun
!insertmacro INSTALLICONSET tango
!endif
${MementoSectionEnd}
!if "@FILEZILLA_LINGUAS@" != ""
!macro INSTALLLANGFILE FILE LANG OUTFILE
SetOutPath "$INSTDIR\locales\${LANG}"
File /oname=${OUTFILE} ${FILE}
!macroend
${MementoSection} "Language files" SecLang
DetailPrint "Installing language files"
SetDetailsPrint none
; installlangfiles.nsh is generated by configure and just contains a series of
; !insertmacro INSTALLLANGFILE <lang>
!ifndef DUMMY_INSTALLER
!include installlangfiles.nsh
!endif
SetDetailsPrint lastused
${MementoSectionEnd}
!endif
${MementoSection} "Shell Extension" SecShellExt
!ifndef DUMMY_INSTALLER
SetOutPath "$INSTDIR"
!define LIBRARY_SHELL_EXTENSION
!define LIBRARY_COM
!define LIBRARY_IGNORE_VERSION
${If} ${RunningX64}
SetRegView 32
${EndIf}
!insertmacro InstallLib REGDLL NOTSHARED REBOOT_NOTPROTECTED ../src/fzshellext/32/.libs\libfzshellext-0.dll $INSTDIR\fzshellext.dll "$INSTDIR"
${If} ${RunningX64}
SetRegView lastused
${EndIf}
!define LIBRARY_X64
${If} ${RunningX64}
!insertmacro InstallLib REGDLL NOTSHARED REBOOT_NOTPROTECTED ../src/fzshellext/64/.libs\libfzshellext-0.dll $INSTDIR\fzshellext_64.dll "$INSTDIR"
${Else}
!insertmacro InstallLib DLL NOTSHARED REBOOT_NOTPROTECTED ../src/fzshellext/64/.libs\libfzshellext-0.dll $INSTDIR\fzshellext_64.dll "$INSTDIR"
${Endif}
!undef LIBRARY_X64
!endif
${MementoSectionEnd}
${MementoUnselectedSection} "Desktop Icon" SecDesktop
SetOutPath "$INSTDIR"
CreateShortCut "$DESKTOP\FileZilla Client.lnk" "$INSTDIR\filezilla.exe" "" "$INSTDIR\filezilla.exe" 0
${If} ${AtLeastWin7}
; Setting AppID
push "FileZilla.Client.AppID"
push "$DESKTOP\FileZilla Client.lnk"
nsis_appid::set_appid
${EndIf}
${MementoSectionEnd}
${MementoSectionDone}
;--------------------------------
; Functions
;--------------------------------
Function PostInstPage
; Don't advance automatically if details expanded
FindWindow $R0 "#32770" "" $HWNDPARENT
GetDlgItem $R0 $R0 1016
System::Call user32::IsWindowVisible(i$R0)i.s
Pop $R0
${If} $R0 != 0
SetAutoClose false
${EndIf}
FunctionEnd
Function PageFinishPre
${If} $PERFORM_UPDATE == 1
!insertmacro UAC_AsUser_ExecShell '' '$INSTDIR\filezilla.exe' '' '' SW_SHOWNORMAL
Quit
${EndIf}
FunctionEnd
Function CustomFinishRun
!insertmacro UAC_AsUser_ExecShell '' '$INSTDIR\filezilla.exe' '' '' SW_SHOWNORMAL
FunctionEnd
Function GetInstalledSize
Push $0
Push $1
StrCpy $GetInstalledSize.total 0
${ForEach} $1 0 256 + 1
${if} ${SectionIsSelected} $1
SectionGetSize $1 $0
IntOp $GetInstalledSize.total $GetInstalledSize.total + $0
${Endif}
${Next}
Pop $1
Pop $0
IntFmt $GetInstalledSize.total "0x%08X" $GetInstalledSize.total
Push $GetInstalledSize.total
FunctionEnd
;--------------------------------
; Descriptions
;--------------------------------
; Language strings
LangString DESC_SecMain ${LANG_ENGLISH} "Required program files."
LangString DESC_SecIconSets ${LANG_ENGLISH} "Additional icon sets."
!if "@FILEZILLA_LINGUAS@" != ""
LangString DESC_SecLang ${LANG_ENGLISH} "Language files."
!endif
LangString DESC_SecShellExt ${LANG_ENGLISH} "Shell extension for advanced drag && drop support. Required for drag && drop from FileZilla into Explorer."
LangString DESC_SecDesktop ${LANG_ENGLISH} "Create desktop icon for FileZilla"
; Assign language strings to sections
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SecMain} $(DESC_SecMain)
!insertmacro MUI_DESCRIPTION_TEXT ${SecIconSets} $(DESC_SecIconSets)
!if "@FILEZILLA_LINGUAS@" != ""
!insertmacro MUI_DESCRIPTION_TEXT ${SecLang} $(DESC_SecLang)
!endif
!insertmacro MUI_DESCRIPTION_TEXT ${SecShellExt} $(DESC_SecShellExt)
!insertmacro MUI_DESCRIPTION_TEXT ${SecDesktop} $(DESC_SecDesktop)
!insertmacro MUI_FUNCTION_DESCRIPTION_END
;--------------------------------
; Uninstaller Variables
;--------------------------------
Var un.REMOVE_ALL_USERS
Var un.REMOVE_CURRENT_USER
;--------------------------------
; Uninstaller Functions
;--------------------------------
Function un.GetUserInfo
ClearErrors
UserInfo::GetName
${If} ${Errors}
StrCpy $IS_ADMIN 1
Return
${EndIf}
Pop $USERNAME
${If} ${UAC_IsAdmin}
StrCpy $IS_ADMIN 1
${Else}
StrCpy $IS_ADMIN 0
${EndIf}
FunctionEnd
Function un.ReadPreviousVersion
ReadRegStr $R0 HKLM "${INSTALLER_REGKEY}" ""
${If} $R0 != ""
; Detect version
ReadRegStr $R2 HKLM "${INSTALLER_REGKEY}" "Version"
${If} $R2 == ""
StrCpy $R0 ""
${EndIf}
${EndIf}
ReadRegStr $R1 HKCU "${INSTALLER_REGKEY}" ""
${If} $R1 != ""
; Detect version
ReadRegStr $R2 HKCU "${INSTALLER_REGKEY}" "Version"
${If} $R2 == ""
StrCpy $R1 ""
${EndIf}
${EndIf}
${If} $R1 == $INSTDIR
Strcpy $un.REMOVE_CURRENT_USER 1
${EndIf}
${If} $R0 == $INSTDIR
Strcpy $un.REMOVE_ALL_USERS 1
${EndIf}
${If} $un.REMOVE_CURRENT_USER != 1
${AndIf} $un.REMOVE_ALL_USERS != 1
${If} $R1 != ""
Strcpy $un.REMOVE_CURRENT_USER 1
${If} $R0 == $R1
Strcpy $un.REMOVE_ALL_USERS 1
${EndIf}
${Else}
StrCpy $un.REMOVE_ALL_USERS = 1
${EndIf}
${EndIf}
FunctionEnd
Function un.onInit
${un.GetParameters} $CommandLine
${un.GetOptions} $CommandLine "/quiet" $R1
${If} ${Errors}
StrCpy $Quiet 0
${Else}
StrCpy $Quiet 1
SetSilent silent
${EndIf}
Call un.GetUserInfo
Call un.ReadPreviousVersion
${If} $un.REMOVE_ALL_USERS == 1
${AndIf} $IS_ADMIN == 0
${MessageBox} MB_ICONSTOP "FileZilla has been installed for all users.$\nPlease restart the uninstaller with Administrator privileges to remove it." IDOK ''
Abort
${EndIf}
FunctionEnd
Function un.RemoveStartmenu
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
Delete "$SMPROGRAMS\$MUI_TEMP\FileZilla.lnk"
${un.GetOptions} $CommandLine "/keepstartmenudir" $R1
${If} ${Errors}
; Delete empty start menu parent diretories
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
startMenuDeleteLoop:
RMDir $MUI_TEMP
GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
IfErrors startMenuDeleteLoopDone
StrCmp $MUI_TEMP $SMPROGRAMS startMenuDeleteLoopDone startMenuDeleteLoop
startMenuDeleteLoopDone:
${EndUnless}
FunctionEnd
Function un.ConfirmPagePre
${un.GetOptions} $CommandLine "/frominstall" $R1
${Unless} ${Errors}
Abort
${EndUnless}
FunctionEnd
Function un.FinishPagePre
${un.GetOptions} $CommandLine "/frominstall" $R1
${Unless} ${Errors}
SetRebootFlag false
Abort
${EndUnless}
FunctionEnd
;--------------------------------
; Uninstaller Section
;--------------------------------
!if "@FILEZILLA_LINGUAS@" != ""
!macro UNINSTALLLANGFILE LANG FILENAME
Delete "$INSTDIR\locales\${LANG}\${FILENAME}"
RMDir "$INSTDIR\locales\${LANG}"
!macroend
!endif
!macro UNINSTALLICONSET SET
DetailPrint "Removing ${SET} icon set"
SetDetailsPrint none
Delete "$INSTDIR\resources\${SET}\theme.xml"
Delete "$INSTDIR\resources\${SET}\16x16\*.png"
Delete "$INSTDIR\resources\${SET}\20x20\*.png"
Delete "$INSTDIR\resources\${SET}\24x24\*.png"
Delete "$INSTDIR\resources\${SET}\32x32\*.png"
Delete "$INSTDIR\resources\${SET}\48x48\*.png"
Delete "$INSTDIR\resources\${SET}\480x480\*.png"
Delete "$INSTDIR\resources\${SET}\16x16\*.gif"
Delete "$INSTDIR\resources\${SET}\20x20\*.gif"
Delete "$INSTDIR\resources\${SET}\24x24\*.gif"
Delete "$INSTDIR\resources\${SET}\32x32\*.gif"
Delete "$INSTDIR\resources\${SET}\48x48\*.gif"
RMDir "$INSTDIR\resources\${SET}\16x16"
RMDir "$INSTDIR\resources\${SET}\20x20"
RMDir "$INSTDIR\resources\${SET}\24x24"
RMDir "$INSTDIR\resources\${SET}\32x32"
RMDir "$INSTDIR\resources\${SET}\48x48"
RMDir "$INSTDIR\resources\${SET}\480x480"
RMDir "$INSTDIR\resources\${SET}"
SetDetailsPrint lastused
!macroend
Function un.RemoveRegistryEntries
${un.GetOptions} $CommandLine "/frominstall" $R1
${If} ${Errors}
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "Package"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "Updated"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "Channel"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "Startmenu"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "Version"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "MementoSection_SecDesktop"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "MementoSection_SecIconSets"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "MementoSection_SecLang"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "MementoSection_SecShellExt"
DeleteRegValue SHCTX "${INSTALLER_REGKEY}" "MementoSectionUsed"
${EndIf}
DeleteRegKey /ifempty SHCTX "${INSTALLER_REGKEY}"
DeleteRegKey SHCTX "${UNINSTALLER_REGKEY}"
FunctionEnd
Section "Uninstall"
${If} ${RunningX64}
SetRegView 32
${EndIf}
!insertmacro UnInstallLib REGDLL NOTSHARED REBOOT_NOTPROTECTED "$INSTDIR\fzshellext.dll"
${If} ${RunningX64}
SetRegView lastused
${EndIf}
!define LIBRARY_X64
${If} ${RunningX64}
!insertmacro UnInstallLib REGDLL NOTSHARED REBOOT_NOTPROTECTED "$INSTDIR\fzshellext_64.dll"
${Else}
!insertmacro UnInstallLib DLL NOTSHARED REBOOT_NOTPROTECTED "$INSTDIR\fzshellext_64.dll"
${Endif}
!undef LIBRARY_X64
Delete "$INSTDIR\filezilla.exe"
Delete "$INSTDIR\fzsftp.exe"
Delete "$INSTDIR\fzputtygen.exe"
!if /FileExists "..\src\storj\${LT_EXEDIR}fzstorj.exe"
Delete "$INSTDIR\fzstorj.exe"
!endif
Delete "$INSTDIR\GPL.html"
Delete "$INSTDIR\NEWS"
Delete "$INSTDIR\AUTHORS"
!include "dll_gui_uninstall.nsh"
DetailPrint "Removing resource files"
SetDetailsPrint none
Delete "$INSTDIR\resources\defaultfilters.xml"
Delete "$INSTDIR\resources\finished.wav"
Delete "$INSTDIR\resources\16x16\*.png"
Delete "$INSTDIR\resources\20x20\*.png"
Delete "$INSTDIR\resources\24x24\*.png"
Delete "$INSTDIR\resources\32x32\*.png"
Delete "$INSTDIR\resources\48x48\*.png"
Delete "$INSTDIR\resources\480x480\*.png"
Delete "$INSTDIR\resources\16x16\*.gif"
Delete "$INSTDIR\resources\32x32\*.gif"
SetDetailsPrint lastused
!insertmacro UNINSTALLICONSET blukis
!insertmacro UNINSTALLICONSET classic
!insertmacro UNINSTALLICONSET cyril
!insertmacro UNINSTALLICONSET default
!insertmacro UNINSTALLICONSET flatzilla
!insertmacro UNINSTALLICONSET lone
!insertmacro UNINSTALLICONSET minimal
!insertmacro UNINSTALLICONSET opencrystal
!insertmacro UNINSTALLICONSET sun
!insertmacro UNINSTALLICONSET tango
!if "@FILEZILLA_LINGUAS@" != ""
DetailPrint "Removing language files"
SetDetailsPrint none
; uninstalllangfiles.nsh is generated by configure and just contains a series of
; !insertmacro UNINSTALLLANGFILE <lang>
!include uninstalllangfiles.nsh
SetDetailsPrint lastused
!endif
Delete "$INSTDIR\uninstall.exe"
Delete "$INSTDIR\docs\fzdefaults.xml.example"
!if "@FILEZILLA_LINGUAS@" != ""
RMDir "$INSTDIR\locales"
!endif
RMDir "$INSTDIR\resources\480x480"
RMDir "$INSTDIR\resources\48x48"
RMDir "$INSTDIR\resources\32x32"
RMDir "$INSTDIR\resources\20x20"
RMDir "$INSTDIR\resources\24x24"
RMDir "$INSTDIR\resources\16x16"
RMDir "$INSTDIR\resources"
RMDir "$INSTDIR\docs"
${un.GetOptions} $CommandLine "/frominstall" $R1
${If} ${Errors}
RMDir /REBOOTOK "$INSTDIR"
${EndIf}
${If} $un.REMOVE_ALL_USERS == 1
SetShellVarContext all
Call un.RemoveStartmenu
Call un.RemoveRegistryEntries
Delete "$DESKTOP\FileZilla Client.lnk"
; Remove dump key
${If} ${RunningX64}
SetRegView 64
${EndIf}
DeleteRegValue HKLM "${DUMP_KEY}\filezilla.exe" "DumpType"
DeleteRegValue HKLM "${DUMP_KEY}\fzsftp.exe" "DumpType"
DeleteRegValue HKLM "${DUMP_KEY}\fzputtygen.exe" "DumpType"
!if /FileExists "..\src\storj\${LT_EXEDIR}fzstorj.exe"
DeleteRegValue HKLM "${DUMP_KEY}\fzstorj.exe" "DumpType"
!endif
DeleteRegKey /ifempty HKLM "${DUMP_KEY}\filezilla.exe"
DeleteRegKey /ifempty HKLM "${DUMP_KEY}\fzsftp.exe"
DeleteRegKey /ifempty HKLM "${DUMP_KEY}\fzputtygen.exe"
!if /FileExists "..\src\storj\${LT_EXEDIR}fzstorj.exe"
DeleteRegKey /ifempty HKLM "${DUMP_KEY}\fzstorj.exe"
!endif
${If} ${RunningX64}
SetRegView lastused
${EndIf}
${EndIf}
${If} $un.REMOVE_CURRENT_USER == 1
SetShellVarContext current
Call un.RemoveStartmenu
Call un.RemoveRegistryEntries
Delete "$DESKTOP\FileZilla Client.lnk"
${EndIf}
DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\App Paths\filezilla.exe"
SectionEnd
|