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 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Required Plugins:
# AppAssocReg
# CertCheck
# InetBgDL
# ShellLink
# UAC
; Set verbosity to 3 (e.g. no script) to lessen the noise in the build logs
!verbose 3
SetDatablockOptimize on
SetCompress off
CRCCheck on
RequestExecutionLevel user
ManifestSupportedOS all
ManifestDPIAware true
!addplugindir ./
Var CheckboxShortcuts
Var CheckboxInstallMaintSvc
Var CheckboxCleanupProfile
Var FontFamilyName
Var HasRequiredSpaceAvailable
Var IsDownloadFinished
Var DownloadSizeBytes
Var DownloadReset
Var ExistingTopDir
Var SpaceAvailableBytes
Var InitialInstallDir
Var HandleDownload
Var InstallCounterStep
Var InstallTotalSteps
Var ProgressCompleted
Var UsingHighContrastMode
Var ExitCode
Var FirefoxLaunchCode
Var StartDownloadPhaseTickCount
; Since the Intro and Options pages can be displayed multiple times the total
; seconds spent on each of these pages is reported.
Var IntroPhaseSeconds
Var OptionsPhaseSeconds
; The tick count for the last download.
Var StartLastDownloadTickCount
; The number of seconds from the start of the download phase until the first
; bytes are received. This is only recorded for first request so it is possible
; to determine connection issues for the first request.
Var DownloadFirstTransferSeconds
; The last four tick counts are for the end of a phase in the installation page.
Var EndDownloadPhaseTickCount
Var EndPreInstallPhaseTickCount
Var EndInstallPhaseTickCount
Var EndFinishPhaseTickCount
Var DistributionID
Var DistributionVersion
Var WindowsUBR
Var StubBuildID
Var InitialInstallRequirementsCode
Var ExistingProfile
Var ExistingVersion
Var ExistingBuildID
Var DownloadedBytes
Var DownloadRetryCount
; After a failure, did the user choose to open the download page as a fallback?
Var OpenedDownloadPage
Var DownloadServerIP
Var PostSigningData
Var PreviousInstallDir
Var ProfileCleanupPromptType
Var AppLaunchWaitTickCount
Var TimerHandle
; Set AbortInstallation to "true" to prevent the installation "Pages" from starting, while still allowing
; SendPing and its OnPing callback to complete.
Var AbortInstallation
; The SendPing function will set this to "true" once it has sent a ping, to ensure that we don't
; send multiple pings for the same installation.
Var PingAlreadySent
!define ARCH_X86 1
!define ARCH_AMD64 2
!define ARCH_AARCH64 3
Var ArchToInstall
; Uncomment the following to prevent pinging the metrics server when testing
; the stub installer
;!define STUB_DEBUG
!define StubURLVersion "v10"
; Successful install exit code
!define ERR_SUCCESS 0
; Default failure exit code. Seeing this in telemetry indicates that the stub
; installer has exited unsuccessfully, but no reason has been specified
!define ERR_UNKNOWN 1
/**
* The following errors prefixed with ERR_DOWNLOAD apply to the download phase.
*/
; The download was cancelled by the user
!define ERR_DOWNLOAD_CANCEL 10
; Too many attempts to download. The maximum attempts is defined in
; DownloadMaxRetries.
!define ERR_DOWNLOAD_TOO_MANY_RETRIES 11
/**
* The following errors prefixed with ERR_PREINSTALL apply to the pre-install
* check phase.
*/
; Unable to acquire a file handle to the downloaded file
!define ERR_PREINSTALL_INVALID_HANDLE 20
; The downloaded file's certificate is not trusted by the certificate store.
!define ERR_PREINSTALL_CERT_UNTRUSTED 21
; The downloaded file's certificate attribute values were incorrect.
!define ERR_PREINSTALL_CERT_ATTRIBUTES 22
; The downloaded file's certificate is not trusted by the certificate store and
; certificate attribute values were incorrect.
!define ERR_PREINSTALL_CERT_UNTRUSTED_AND_ATTRIBUTES 23
; Timed out while waiting for the certificate checks to run.
!define ERR_PREINSTALL_CERT_TIMEOUT 24
; System does not meet the minimum hardware requirements
!define ERR_PREINSTALL_SYS_HW_REQ 25
; System does not meet the minimum OS version requirements
!define ERR_PREINSTALL_SYS_OS_REQ 26
; Insufficient storage space is available in the target location
!define ERR_PREINSTALL_SPACE 27
; Target location is not writable
!define ERR_PREINSTALL_NOT_WRITABLE 28
/**
* The following errors prefixed with ERR_INSTALL apply to the install phase.
*/
; The installation timed out. The installation timeout is defined by the number
; of progress steps defined in InstallTotalSteps and the install timer
; interval defined in InstallIntervalMS
!define ERR_INSTALL_TIMEOUT 30
; Maximum times to retry the download before displaying an error
!define DownloadMaxRetries 9
; Interval before retrying to download. 3 seconds is used along with 10
; attempted downloads (the first attempt along with 9 retries) to give a
; minimum of 30 seconds or retrying before giving up.
!define DownloadRetryIntervalMS 3000
; Interval for the download timer
!define DownloadIntervalMS 200
; Timeout for the certificate check
!define PreinstallCertCheckMaxWaitSec 30
; Interval for the install timer
!define InstallIntervalMS 100
; Number of steps for the install progress.
; This might not be enough when installing on a slow network drive so it will
; fallback to downloading the full installer if it reaches this number.
; Approximately 240 seconds with a 100 millisecond timer.
!define InstallCleanTotalSteps 2400
; Approximately 255 seconds with a 100 millisecond timer.
!define InstallPaveOverTotalSteps 2550
; Blurb duty cycle
!define BlurbDisplayMS 19500
!define BlurbBlankMS 500
; Interval between checks for the application window and progress bar updates.
!define AppLaunchWaitIntervalMS 100
; Total time to wait for the application to start before just exiting.
!define AppLaunchWaitTimeoutMS 10000
; Maximum value of the download/install/launch progress bar, and the end values
; for each individual stage.
!define PROGRESS_BAR_TOTAL_STEPS 500
!define PROGRESS_BAR_DOWNLOAD_END_STEP 300
!define PROGRESS_BAR_INSTALL_END_STEP 475
!define PROGRESS_BAR_APP_LAUNCH_END_STEP 500
; Amount of physical memory required for the 64-bit build to be selected (2 GB).
; Machines with this or less RAM get the 32-bit build, even with a 64-bit OS.
!define RAM_NEEDED_FOR_64BIT 0x80000000
; Attempt to elevate Standard Users in addition to users that
; are a member of the Administrators group.
!define NONADMIN_ELEVATE
!define CONFIG_INI "config.ini"
!define PARTNER_INI "$EXEDIR\partner.ini"
!ifndef FILE_SHARE_READ
!define FILE_SHARE_READ 1
!endif
!ifndef GENERIC_READ
!define GENERIC_READ 0x80000000
!endif
!ifndef OPEN_EXISTING
!define OPEN_EXISTING 3
!endif
!ifndef INVALID_HANDLE_VALUE
!define INVALID_HANDLE_VALUE -1
!endif
!define DefaultInstDir32bit "$PROGRAMFILES32\${BrandFullName}"
!define DefaultInstDir64bit "$PROGRAMFILES64\${BrandFullName}"
!insertmacro GetParameters
!insertmacro GetOptions
!insertmacro LineFind
!insertmacro StrFilter
!include "locales.nsi"
!include "branding.nsi"
!include "defines.nsi"
; Must be included after defines.nsi
!include "locale-fonts.nsh"
; The OFFICIAL define is a workaround to support different urls for Release and
; Beta since they share the same branding when building with other branches that
; set the update channel to beta.
!ifdef OFFICIAL
!ifdef BETA_UPDATE_CHANNEL
!undef URLStubDownloadX86
!undef URLStubDownloadAMD64
!undef URLStubDownloadAArch64
!define URLStubDownloadX86 "https://download.mozilla.org/?os=win&lang=${AB_CD}&product=firefox-beta-latest"
!define URLStubDownloadAMD64 "https://download.mozilla.org/?os=win64&lang=${AB_CD}&product=firefox-beta-latest"
!define URLStubDownloadAArch64 "https://download.mozilla.org/?os=win64-aarch64&lang=${AB_CD}&product=firefox-beta-latest"
!undef URLManualDownload
!define URLManualDownload "https://www.mozilla.org/${AB_CD}/firefox/installer-help/?channel=beta&installer_lang=${AB_CD}"
!undef Channel
!define Channel "beta"
!endif
!endif
!include "common.nsh"
!insertmacro CopyPostSigningData
!insertmacro ElevateUAC
!insertmacro GetLongPath
!insertmacro GetPathFromString
!insertmacro GetParent
!insertmacro GetSingleInstallPath
!insertmacro InitHashAppModelId
!insertmacro IsUserAdmin
!insertmacro RemovePrecompleteEntries
!insertmacro SetBrandNameVars
!insertmacro ITBL3Create
!insertmacro UnloadUAC
VIAddVersionKey "FileDescription" "${BrandShortName} Installer"
VIAddVersionKey "OriginalFilename" "setup-stub.exe"
Name "$BrandFullName"
XPStyle on
BrandingText " "
ChangeUI IDD_INST "nsisui.exe"
!ifdef ${AB_CD}_rtl
LoadLanguageFile "locale-rtl.nlf"
!else
LoadLanguageFile "locale.nlf"
!endif
!include "nsisstrings.nlf"
Caption "$(INSTALLER_WIN_CAPTION)"
!macro _RegisterAllCustomFunctions
GetFunctionAddress $0 getUIString
WebBrowser::RegisterCustomFunction $0 "getUIString"
GetFunctionAddress $0 getTextDirection
WebBrowser::RegisterCustomFunction $0 "getTextDirection"
GetFunctionAddress $0 getFontName
WebBrowser::RegisterCustomFunction $0 "getFontName"
GetFunctionAddress $0 getIsHighContrast
WebBrowser::RegisterCustomFunction $0 "getIsHighContrast"
GetFunctionAddress $0 gotoInstallPage
WebBrowser::RegisterCustomFunction $0 "gotoInstallPage"
GetFunctionAddress $0 getProgressBarPercent
WebBrowser::RegisterCustomFunction $0 "getProgressBarPercent"
!macroend
!define RegisterAllCustomFunctions "!insertmacro _RegisterAllCustomFunctions"
!macro _StartTimer _INTERVAL_MS _FUNCTION_NAME
Push $0
GetFunctionAddress $0 ${_FUNCTION_NAME}
WebBrowser::CreateTimer $0 ${_INTERVAL_MS}
Pop $TimerHandle
Pop $0
!macroend
!define StartTimer "!insertmacro _StartTimer"
Function gotoInstallPage
Pop $0
StrCpy $CheckboxCleanupProfile $0
StrCpy $R9 1
Call RelativeGotoPage
Push $0
FunctionEnd
Function getProgressBarPercent
; Custom functions always get one parameter, which we don't use here.
; But we will use $0 as a scratch accumulator register.
Pop $0
; This math is getting the progess bar completion fraction and converting it
; to a percentage, but we implement that with the operations in the reverse
; of the intuitive order so that our integer math doesn't truncate to zero.
IntOp $0 $ProgressCompleted * 100
IntOp $0 $0 / ${PROGRESS_BAR_TOTAL_STEPS}
Push $0
FunctionEnd
Function getTextDirection
Pop $0
!ifdef ${AB_CD}_rtl
Push "rtl"
!else
Push "ltr"
!endif
FunctionEnd
Function getFontName
Pop $0
Push $FontFamilyName
FunctionEnd
Function getIsHighContrast
Pop $0
Push $UsingHighContrastMode
FunctionEnd
Function getUIString
Pop $0
${Select} $0
${Case} "cleanup_header"
${If} $ProfileCleanupPromptType == 1
Push "$(STUB_CLEANUP_REINSTALL_HEADER2)"
${Else}
Push "$(STUB_CLEANUP_PAVEOVER_HEADER2)"
${EndIf}
${Case} "cleanup_button"
${If} $ProfileCleanupPromptType == 1
Push "$(STUB_CLEANUP_REINSTALL_BUTTON2)"
${Else}
Push "$(STUB_CLEANUP_PAVEOVER_BUTTON2)"
${EndIf}
${Case} "cleanup_checkbox"
Push "$(STUB_CLEANUP_CHECKBOX_LABEL2)"
${Case} "installing_header"
Push "$(STUB_INSTALLING_HEADLINE2)"
${Case} "installing_label"
Push "$(STUB_INSTALLING_LABEL2)"
${Case} "installing_content"
Push "$(STUB_INSTALLING_BODY2)"
${Case} "installing_blurb_0"
Push "$(STUB_BLURB_FIRST1)"
${Case} "installing_blurb_1"
Push "$(STUB_BLURB_SECOND1)"
${Case} "installing_blurb_2"
Push "$(STUB_BLURB_THIRD1)"
${Case} "global_footer"
Push "$(STUB_BLURB_FOOTER2)"
${Default}
Push ""
${EndSelect}
FunctionEnd
Function createProfileCleanup
${If} $AbortInstallation != "false"
; Abort in this context skips the "page"
Abort
${EndIf}
Call ShouldPromptForProfileCleanup
${If} $ProfileCleanupPromptType == 0
StrCpy $CheckboxCleanupProfile 0
Abort ; Skip this page
${EndIf}
${RegisterAllCustomFunctions}
File /oname=$PLUGINSDIR\profile_cleanup.html "profile_cleanup.html"
File /oname=$PLUGINSDIR\profile_cleanup_page.css "profile_cleanup_page.css"
File /oname=$PLUGINSDIR\profile_cleanup.js "profile_cleanup.js"
WebBrowser::ShowPage "$PLUGINSDIR\profile_cleanup.html"
FunctionEnd
Function createInstall
${If} $AbortInstallation != "false"
; Skip the installation, but first send the telemetry
Call SendPing
; Abort in this context skips the "page"
Abort
${EndIf}
GetDlgItem $0 $HWNDPARENT 1 ; Install button
EnableWindow $0 0
ShowWindow $0 ${SW_HIDE}
GetDlgItem $0 $HWNDPARENT 3 ; Back button
EnableWindow $0 0
ShowWindow $0 ${SW_HIDE}
GetDlgItem $0 $HWNDPARENT 2 ; Cancel button
; Hide the Cancel button, but don't disable it (or else it won't be possible
; to close the window)
ShowWindow $0 ${SW_HIDE}
; Get keyboard focus on the parent
System::Call "user32::SetFocus(p$HWNDPARENT)"
; Set $DownloadReset to true so the first download tick count is measured.
StrCpy $DownloadReset "true"
StrCpy $IsDownloadFinished "false"
StrCpy $DownloadRetryCount "0"
StrCpy $DownloadedBytes "0"
StrCpy $StartLastDownloadTickCount ""
StrCpy $DownloadFirstTransferSeconds ""
StrCpy $OpenedDownloadPage "0"
ClearErrors
ReadINIStr $ExistingVersion "$INSTDIR\application.ini" "App" "Version"
${If} ${Errors}
StrCpy $ExistingVersion "0"
${EndIf}
ClearErrors
ReadINIStr $ExistingBuildID "$INSTDIR\application.ini" "App" "BuildID"
${If} ${Errors}
StrCpy $ExistingBuildID "0"
${EndIf}
${GetLocalAppDataFolder} $0
${If} ${FileExists} "$0\Mozilla\Firefox"
StrCpy $ExistingProfile "1"
${Else}
StrCpy $ExistingProfile "0"
${EndIf}
StrCpy $DownloadServerIP ""
System::Call "kernel32::GetTickCount()l .s"
Pop $StartDownloadPhaseTickCount
${If} ${FileExists} "$INSTDIR\uninstall\uninstall.log"
StrCpy $InstallTotalSteps ${InstallPaveOverTotalSteps}
${Else}
StrCpy $InstallTotalSteps ${InstallCleanTotalSteps}
${EndIf}
${ITBL3Create}
${ITBL3SetProgressState} "${TBPF_INDETERMINATE}"
; Make sure the file we're about to try to download to doesn't already exist,
; so we don't end up trying to "resume" on top of the wrong file.
Delete "$PLUGINSDIR\download.exe"
${StartTimer} ${DownloadIntervalMS} StartDownload
${RegisterAllCustomFunctions}
File /oname=$PLUGINSDIR\installing.html "installing.html"
File /oname=$PLUGINSDIR\installing_page.css "installing_page.css"
File /oname=$PLUGINSDIR\installing.js "installing.js"
WebBrowser::ShowPage "$PLUGINSDIR\installing.html"
FunctionEnd
Function StartDownload
WebBrowser::CancelTimer $TimerHandle
Call GetDownloadURL
Pop $0
InetBgDL::Get "$0" "$PLUGINSDIR\download.exe" \
/CONNECTTIMEOUT 120 /RECEIVETIMEOUT 120 /END
${StartTimer} ${DownloadIntervalMS} OnDownload
${If} ${FileExists} "$INSTDIR\${TO_BE_DELETED}"
RmDir /r "$INSTDIR\${TO_BE_DELETED}"
${EndIf}
FunctionEnd
Function SetProgressBars
${ITBL3SetProgressValue} "$ProgressCompleted" "${PROGRESS_BAR_TOTAL_STEPS}"
FunctionEnd
Function OnDownload
InetBgDL::GetStats
# $0 = HTTP status code, 0=Completed
# $1 = Completed files
# $2 = Remaining files
# $3 = Number of downloaded bytes for the current file
# $4 = Size of current file (Empty string if the size is unknown)
# /RESET must be used if status $0 > 299 (e.g. failure), even if resuming
# When status is $0 =< 299 it is handled by InetBgDL
StrCpy $DownloadServerIP "$5"
${If} $0 > 299
WebBrowser::CancelTimer $TimerHandle
IntOp $DownloadRetryCount $DownloadRetryCount + 1
${If} $DownloadRetryCount >= ${DownloadMaxRetries}
StrCpy $ExitCode "${ERR_DOWNLOAD_TOO_MANY_RETRIES}"
; Use a timer so the UI has a chance to update
${StartTimer} ${InstallIntervalMS} DisplayDownloadError
Return
${EndIf}
; 1000 is a special code meaning InetBgDL lost the connection before it got
; all the bytes it was expecting. We'll try to resume the transfer in that
; case (assuming we aren't out of retries), so don't treat it as a reset
; or clear the progress bar.
${If} $0 != 1000
${If} "$DownloadReset" != "true"
StrCpy $DownloadedBytes "0"
${ITBL3SetProgressState} "${TBPF_INDETERMINATE}"
${EndIf}
StrCpy $DownloadSizeBytes ""
StrCpy $DownloadReset "true"
Delete "$PLUGINSDIR\download.exe"
${EndIf}
InetBgDL::Get /RESET /END
${StartTimer} ${DownloadRetryIntervalMS} StartDownload
Return
${EndIf}
${If} "$DownloadReset" == "true"
System::Call "kernel32::GetTickCount()l .s"
Pop $StartLastDownloadTickCount
StrCpy $DownloadReset "false"
; The seconds elapsed from the start of the download phase until the first
; bytes are received are only recorded for the first request so it is
; possible to determine connection issues for the first request.
${If} "$DownloadFirstTransferSeconds" == ""
; Get the seconds elapsed from the start of the download phase until the
; first bytes are received.
${GetSecondsElapsed} "$StartDownloadPhaseTickCount" "$StartLastDownloadTickCount" $DownloadFirstTransferSeconds
${EndIf}
${EndIf}
${If} "$DownloadSizeBytes" == ""
${AndIf} "$4" != ""
StrCpy $DownloadSizeBytes "$4"
StrCpy $ProgressCompleted 0
${EndIf}
; Don't update the status until after the download starts
${If} $2 != 0
${AndIf} "$4" == ""
Return
${EndIf}
${If} $IsDownloadFinished != "true"
${If} $2 == 0
WebBrowser::CancelTimer $TimerHandle
StrCpy $IsDownloadFinished "true"
System::Call "kernel32::GetTickCount()l .s"
Pop $EndDownloadPhaseTickCount
${If} "$DownloadSizeBytes" == ""
; It's possible for the download to finish before we were able to
; get the size while it was downloading, and InetBgDL doesn't report
; it afterwards. Use the size of the finished file.
ClearErrors
FileOpen $5 "$PLUGINSDIR\download.exe" r
${IfNot} ${Errors}
FileSeek $5 0 END $DownloadSizeBytes
FileClose $5
${EndIf}
${EndIf}
StrCpy $DownloadedBytes "$DownloadSizeBytes"
; Update the progress bars first in the UI change so they take affect
; before other UI changes.
StrCpy $ProgressCompleted "${PROGRESS_BAR_DOWNLOAD_END_STEP}"
Call SetProgressBars
; Disable the Cancel button during the install
GetDlgItem $5 $HWNDPARENT 2
EnableWindow $5 0
; Open a handle to prevent modification of the full installer
StrCpy $R9 "${INVALID_HANDLE_VALUE}"
System::Call 'kernel32::CreateFileW(w "$PLUGINSDIR\download.exe", \
i ${GENERIC_READ}, \
i ${FILE_SHARE_READ}, i 0, \
i ${OPEN_EXISTING}, i 0, i 0) i .R9'
StrCpy $HandleDownload "$R9"
${If} $HandleDownload == ${INVALID_HANDLE_VALUE}
StrCpy $ExitCode "${ERR_PREINSTALL_INVALID_HANDLE}"
System::Call "kernel32::GetTickCount()l .s"
Pop $EndPreInstallPhaseTickCount
; Use a timer so the UI has a chance to update
${StartTimer} ${InstallIntervalMS} DisplayDownloadError
${Else}
CertCheck::CheckPETrustAndInfoAsync "$PLUGINSDIR\download.exe" \
"${CertNameDownload}" "${CertIssuerDownload}"
${StartTimer} ${DownloadIntervalMS} OnCertCheck
${EndIf}
${Else}
StrCpy $DownloadedBytes "$3"
System::Int64Op $DownloadedBytes * ${PROGRESS_BAR_DOWNLOAD_END_STEP}
Pop $ProgressCompleted
System::Int64Op $ProgressCompleted / $DownloadSizeBytes
Pop $ProgressCompleted
Call SetProgressBars
${EndIf}
${EndIf}
FunctionEnd
Function OnCertCheck
System::Call "kernel32::GetTickCount()l .s"
Pop $EndPreInstallPhaseTickCount
CertCheck::GetStatus
Pop $0
${If} $0 == 0
${GetSecondsElapsed} "$EndDownloadPhaseTickCount" "$EndPreInstallPhaseTickCount" $0
${If} $0 >= ${PreinstallCertCheckMaxWaitSec}
WebBrowser::CancelTimer $TimerHandle
StrCpy $ExitCode "${ERR_PREINSTALL_CERT_TIMEOUT}"
; Use a timer so the UI has a chance to update
${StartTimer} ${InstallIntervalMS} DisplayDownloadError
${EndIf}
Return
${EndIf}
Pop $0
Pop $1
${If} $0 == 0
${AndIf} $1 == 0
StrCpy $ExitCode "${ERR_PREINSTALL_CERT_UNTRUSTED_AND_ATTRIBUTES}"
${ElseIf} $0 == 0
StrCpy $ExitCode "${ERR_PREINSTALL_CERT_UNTRUSTED}"
${ElseIf} $1 == 0
StrCpy $ExitCode "${ERR_PREINSTALL_CERT_ATTRIBUTES}"
${EndIf}
WebBrowser::CancelTimer $TimerHandle
${If} $0 == 0
${OrIf} $1 == 0
; Use a timer so the UI has a chance to update
${StartTimer} ${InstallIntervalMS} DisplayDownloadError
Return
${EndIf}
Call LaunchFullInstaller
FunctionEnd
Function LaunchFullInstaller
; Instead of extracting the files we use the downloaded installer to
; install in case it needs to perform operations that the stub doesn't
; know about.
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "InstallDirectoryPath" "$INSTDIR"
; Always create a start menu shortcut, so the user always has some way
; to access the application.
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "StartMenuShortcuts" "true"
; Either avoid or force adding a taskbar pin and desktop shortcut
; based on the checkbox value.
${If} $CheckboxShortcuts == 0
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "TaskbarShortcut" "false"
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "DesktopShortcut" "false"
${Else}
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "TaskbarShortcut" "true"
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "DesktopShortcut" "true"
${EndIf}
!ifdef MOZ_MAINTENANCE_SERVICE
${If} $CheckboxInstallMaintSvc == 1
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "MaintenanceService" "true"
${Else}
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "MaintenanceService" "false"
${EndIf}
!else
WriteINIStr "$PLUGINSDIR\${CONFIG_INI}" "Install" "MaintenanceService" "false"
!endif
; Delete the taskbar shortcut history to ensure we do the right thing based on
; the config file above.
${GetShortcutsLogPath} $0
Delete "$0"
${RemovePrecompleteEntries} "false"
; Delete the install.log and let the full installer create it. When the
; installer closes it we can detect that it has completed.
Delete "$INSTDIR\install.log"
; Delete firefox.exe.moz-upgrade and firefox.exe.moz-delete if it exists
; since it being present will require an OS restart for the full
; installer.
Delete "$INSTDIR\${FileMainEXE}.moz-upgrade"
Delete "$INSTDIR\${FileMainEXE}.moz-delete"
System::Call "kernel32::GetTickCount()l .s"
Pop $EndPreInstallPhaseTickCount
Exec "$\"$PLUGINSDIR\download.exe$\" /LaunchedFromStub /INI=$PLUGINSDIR\${CONFIG_INI}"
${StartTimer} ${InstallIntervalMS} CheckInstall
FunctionEnd
Function SendPing
HideWindow
${If} $PingAlreadySent == "false"
StrCpy $PingAlreadySent "true"
; Get the tick count for the completion of all phases.
System::Call "kernel32::GetTickCount()l .s"
Pop $EndFinishPhaseTickCount
; When the value of $IsDownloadFinished is false the download was started
; but didn't finish. In this case the tick count stored in
; $EndFinishPhaseTickCount is used to determine how long the download was
; in progress.
${If} "$IsDownloadFinished" == "false"
StrCpy $EndDownloadPhaseTickCount "$EndFinishPhaseTickCount"
; Cancel the download in progress
InetBgDL::Get /RESET /END
${EndIf}
; When $DownloadFirstTransferSeconds equals an empty string the download
; never successfully started so set the value to 0. It will be possible to
; determine that the download didn't successfully start from the seconds for
; the last download.
${If} "$DownloadFirstTransferSeconds" == ""
StrCpy $DownloadFirstTransferSeconds "0"
${EndIf}
; When $StartLastDownloadTickCount equals an empty string the download never
; successfully started so set the value to $EndDownloadPhaseTickCount to
; compute the correct value.
${If} $StartLastDownloadTickCount == ""
; This could happen if the download never successfully starts
StrCpy $StartLastDownloadTickCount "$EndDownloadPhaseTickCount"
${EndIf}
; When $EndPreInstallPhaseTickCount equals 0 the installation phase was
; never completed so set its value to $EndFinishPhaseTickCount to compute
; the correct value.
${If} "$EndPreInstallPhaseTickCount" == "0"
StrCpy $EndPreInstallPhaseTickCount "$EndFinishPhaseTickCount"
${EndIf}
; When $EndInstallPhaseTickCount equals 0 the installation phase was never
; completed so set its value to $EndFinishPhaseTickCount to compute the
; correct value.
${If} "$EndInstallPhaseTickCount" == "0"
StrCpy $EndInstallPhaseTickCount "$EndFinishPhaseTickCount"
${EndIf}
; Get the seconds elapsed from the start of the download phase to the end of
; the download phase.
${GetSecondsElapsed} "$StartDownloadPhaseTickCount" "$EndDownloadPhaseTickCount" $0
; Get the seconds elapsed from the start of the last download to the end of
; the last download.
${GetSecondsElapsed} "$StartLastDownloadTickCount" "$EndDownloadPhaseTickCount" $1
; Get the seconds elapsed from the end of the download phase to the
; completion of the pre-installation check phase.
${GetSecondsElapsed} "$EndDownloadPhaseTickCount" "$EndPreInstallPhaseTickCount" $2
; Get the seconds elapsed from the end of the pre-installation check phase
; to the completion of the installation phase.
${GetSecondsElapsed} "$EndPreInstallPhaseTickCount" "$EndInstallPhaseTickCount" $3
; Get the seconds elapsed from the end of the installation phase to the
; completion of all phases.
${GetSecondsElapsed} "$EndInstallPhaseTickCount" "$EndFinishPhaseTickCount" $4
${If} $ArchToInstall == ${ARCH_AMD64}
${OrIf} $ArchToInstall == ${ARCH_AARCH64}
StrCpy $R0 "1"
${Else}
StrCpy $R0 "0"
${EndIf}
${If} ${IsNativeAMD64}
${OrIf} ${IsNativeARM64}
StrCpy $R1 "1"
${Else}
StrCpy $R1 "0"
${EndIf}
; Though these values are sometimes incorrect due to bug 444664 it happens
; so rarely it isn't worth working around it by reading the registry values.
${WinVerGetMajor} $5
${WinVerGetMinor} $6
${WinVerGetBuild} $7
${WinVerGetServicePackLevel} $8
${If} ${IsServerOS}
StrCpy $9 "1"
${Else}
StrCpy $9 "0"
${EndIf}
${If} "$ExitCode" == "${ERR_SUCCESS}"
ReadINIStr $R5 "$INSTDIR\application.ini" "App" "Version"
ReadINIStr $R6 "$INSTDIR\application.ini" "App" "BuildID"
${Else}
StrCpy $R5 "0"
StrCpy $R6 "0"
${EndIf}
; Capture the distribution ID and version if it exists.
${If} ${FileExists} "$INSTDIR\distribution\distribution.ini"
ReadINIStr $DistributionID "$INSTDIR\distribution\distribution.ini" "Global" "id"
ReadINIStr $DistributionVersion "$INSTDIR\distribution\distribution.ini" "Global" "version"
${Else}
StrCpy $DistributionID "0"
StrCpy $DistributionVersion "0"
${EndIf}
; Capture the Windows UBR
ReadRegDWORD $WindowsUBR HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" "UBR"
${If} ${Errors}
StrCpy $WindowsUBR "-1" ; Assign -1 if an error occured during registry read
${EndIf}
; Capture the stub installer build ID
StrCpy $StubBuildID ${MOZ_BUILDID}
; Whether installed into the default installation directory
${GetLongPath} "$INSTDIR" $R7
${GetLongPath} "$InitialInstallDir" $R8
${If} "$R7" == "$R8"
StrCpy $R7 "1"
${Else}
StrCpy $R7 "0"
${EndIf}
ClearErrors
WriteRegStr HKLM "Software\Mozilla" "${BrandShortName}InstallerTest" \
"Write Test"
${If} ${Errors}
StrCpy $R8 "0"
${Else}
DeleteRegValue HKLM "Software\Mozilla" "${BrandShortName}InstallerTest"
StrCpy $R8 "1"
${EndIf}
${If} "$DownloadServerIP" == ""
StrCpy $DownloadServerIP "Unknown"
${EndIf}
StrCpy $R2 ""
SetShellVarContext current ; Set SHCTX to the current user
ReadRegStr $R2 HKCU "Software\Classes\http\shell\open\command" ""
${If} $R2 != ""
${GetPathFromString} "$R2" $R2
${GetParent} "$R2" $R3
${GetLongPath} "$R3" $R3
${If} $R3 == $INSTDIR
StrCpy $R2 "1" ; This Firefox install is set as default.
${Else}
StrCpy $R2 "$R2" "" -11 # length of firefox.exe
${If} "$R2" == "${FileMainEXE}"
StrCpy $R2 "2" ; Another Firefox install is set as default.
${Else}
StrCpy $R2 "0"
${EndIf}
${EndIf}
${Else}
StrCpy $R2 "0" ; Firefox is not set as default.
${EndIf}
${If} "$R2" == "0"
StrCpy $R3 ""
ReadRegStr $R2 HKLM "Software\Classes\http\shell\open\command" ""
${If} $R2 != ""
${GetPathFromString} "$R2" $R2
${GetParent} "$R2" $R3
${GetLongPath} "$R3" $R3
${If} $R3 == $INSTDIR
StrCpy $R2 "1" ; This Firefox install is set as default.
${Else}
StrCpy $R2 "$R2" "" -11 # length of firefox.exe
${If} "$R2" == "${FileMainEXE}"
StrCpy $R2 "2" ; Another Firefox install is set as default.
${Else}
StrCpy $R2 "0"
${EndIf}
${EndIf}
${Else}
StrCpy $R2 "0" ; Firefox is not set as default.
${EndIf}
${EndIf}
StrCpy $R3 "1"
; Note: ExitCode gets parsed here to determine values for "succeeded",
; "user_cancelled", etc.
; https://github.com/mozilla/gcp-ingestion/blob/1d9dc42384ebe3b0c7b0b2c193416d1534b7e444/ingestion-beam/src/main/java/com/mozilla/telemetry/decoder/ParseUri.java#L266
!ifdef STUB_DEBUG
MessageBox MB_OK "${BaseURLStubPing} \
$\nStub URL Version = ${StubURLVersion}${StubURLVersionAppend} \
$\nBuild Channel = ${Channel} \
$\nUpdate Channel = ${UpdateChannel} \
$\nLocale = ${AB_CD} \
$\nFirefox x64 = $R0 \
$\nRunning x64 Windows = $R1 \
$\nMajor = $5 \
$\nMinor = $6 \
$\nBuild = $7 \
$\nServicePack = $8 \
$\nIsServer = $9 \
$\nExit Code = $ExitCode \
$\nFirefox Launch Code = $FirefoxLaunchCode \
$\nDownload Retry Count = $DownloadRetryCount \
$\nDownloaded Bytes = $DownloadedBytes \
$\nDownload Size Bytes = $DownloadSizeBytes \
$\nIntroduction Phase Seconds = $IntroPhaseSeconds \
$\nOptions Phase Seconds = $OptionsPhaseSeconds \
$\nDownload Phase Seconds = $0 \
$\nLast Download Seconds = $1 \
$\nDownload First Transfer Seconds = $DownloadFirstTransferSeconds \
$\nPreinstall Phase Seconds = $2 \
$\nInstall Phase Seconds = $3 \
$\nFinish Phase Seconds = $4 \
$\nInitial Install Requirements Code = $InitialInstallRequirementsCode \
$\nOpened Download Page = $OpenedDownloadPage \
$\nExisting Profile = $ExistingProfile \
$\nExisting Version = $ExistingVersion \
$\nExisting Build ID = $ExistingBuildID \
$\nNew Version = $R5 \
$\nNew Build ID = $R6 \
$\nDefault Install Dir = $R7 \
$\nHas Admin = $R8 \
$\nDefault Status = $R2 \
$\nSet As Sefault Status = $R3 \
$\nDownload Server IP = $DownloadServerIP \
$\nPost-Signing Data = $PostSigningData \
$\nProfile cleanup prompt shown = $ProfileCleanupPromptType \
$\nDid profile cleanup = $CheckboxCleanupProfile \
$\nDistribution ID = $DistributionID \
$\nDistribution Version = $DistributionVersion \
$\nWindows UBR = $WindowsUBR \
$\nStub Installer Build ID = $StubBuildID"
; The following will exit the installer
SetAutoClose true
StrCpy $R9 "2"
Call RelativeGotoPage
!else
${StartTimer} ${DownloadIntervalMS} OnPing
; See https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/data/install-ping.html#stub-ping
; for instructions on how to make changes to data being reported in this ping
InetBgDL::Get "${BaseURLStubPing}/${StubURLVersion}${StubURLVersionAppend}/${Channel}/${UpdateChannel}/${AB_CD}/$R0/$R1/$5/$6/$7/$8/$9/$ExitCode/$FirefoxLaunchCode/$DownloadRetryCount/$DownloadedBytes/$DownloadSizeBytes/$IntroPhaseSeconds/$OptionsPhaseSeconds/$0/$1/$DownloadFirstTransferSeconds/$2/$3/$4/$InitialInstallRequirementsCode/$OpenedDownloadPage/$ExistingProfile/$ExistingVersion/$ExistingBuildID/$R5/$R6/$R7/$R8/$R2/$R3/$DownloadServerIP/$PostSigningData/$ProfileCleanupPromptType/$CheckboxCleanupProfile/$DistributionID/$DistributionVersion/$WindowsUBR/$StubBuildID" \
"$PLUGINSDIR\_temp" /END
!endif
${Else}
${If} "$IsDownloadFinished" == "false"
; Cancel the download in progress
InetBgDL::Get /RESET /END
${EndIf}
; The following will exit the installer
SetAutoClose true
StrCpy $R9 "2"
Call RelativeGotoPage
${EndIf}
FunctionEnd
Function OnPing
InetBgDL::GetStats
# $0 = HTTP status code, 0=Completed
# $1 = Completed files
# $2 = Remaining files
# $3 = Number of downloaded bytes for the current file
# $4 = Size of current file (Empty string if the size is unknown)
# /RESET must be used if status $0 > 299 (e.g. failure)
# When status is $0 =< 299 it is handled by InetBgDL
${If} $2 == 0
${OrIf} $0 > 299
WebBrowser::CancelTimer $TimerHandle
${If} $0 > 299
InetBgDL::Get /RESET /END
${EndIf}
; The following will exit the installer
SetAutoClose true
StrCpy $R9 "2"
Call RelativeGotoPage
${EndIf}
FunctionEnd
Function CheckInstall
IntOp $InstallCounterStep $InstallCounterStep + 1
${If} $InstallCounterStep >= $InstallTotalSteps
WebBrowser::CancelTimer $TimerHandle
; Close the handle that prevents modification of the full installer
System::Call 'kernel32::CloseHandle(i $HandleDownload)'
StrCpy $ExitCode "${ERR_INSTALL_TIMEOUT}"
; Use a timer so the UI has a chance to update
${StartTimer} ${InstallIntervalMS} DisplayDownloadError
Return
${EndIf}
${If} $ProgressCompleted < ${PROGRESS_BAR_INSTALL_END_STEP}
IntOp $0 ${PROGRESS_BAR_INSTALL_END_STEP} - ${PROGRESS_BAR_DOWNLOAD_END_STEP}
IntOp $0 $InstallCounterStep * $0
IntOp $0 $0 / $InstallTotalSteps
IntOp $ProgressCompleted ${PROGRESS_BAR_DOWNLOAD_END_STEP} + $0
Call SetProgressBars
${EndIf}
${If} ${FileExists} "$INSTDIR\install.log"
Delete "$INSTDIR\install.tmp"
CopyFiles /SILENT "$INSTDIR\install.log" "$INSTDIR\install.tmp"
; The unfocus and refocus that happens approximately here is caused by the
; installer calling RefreshShellIcons to refresh the shortcut icons.
; When the full installer completes the installation the install.log will no
; longer be in use.
ClearErrors
Delete "$INSTDIR\install.log"
${Unless} ${Errors}
WebBrowser::CancelTimer $TimerHandle
; Close the handle that prevents modification of the full installer
System::Call 'kernel32::CloseHandle(i $HandleDownload)'
Rename "$INSTDIR\install.tmp" "$INSTDIR\install.log"
Delete "$PLUGINSDIR\download.exe"
Delete "$PLUGINSDIR\${CONFIG_INI}"
System::Call "kernel32::GetTickCount()l .s"
Pop $EndInstallPhaseTickCount
Call FinishInstall
${EndUnless}
${EndIf}
FunctionEnd
Function FinishInstall
StrCpy $ProgressCompleted "${PROGRESS_BAR_INSTALL_END_STEP}"
Call SetProgressBars
${If} ${FileExists} "$INSTDIR\${FileMainEXE}.moz-upgrade"
Delete "$INSTDIR\${FileMainEXE}"
Rename "$INSTDIR\${FileMainEXE}.moz-upgrade" "$INSTDIR\${FileMainEXE}"
${EndIf}
StrCpy $ExitCode "${ERR_SUCCESS}"
${CopyPostSigningData}
Pop $PostSigningData
Call LaunchApp
FunctionEnd
Function RelativeGotoPage
IntCmp $R9 0 0 Move Move
StrCmp $R9 "X" 0 Move
StrCpy $R9 "120"
Move:
SendMessage $HWNDPARENT "0x408" "$R9" ""
FunctionEnd
Function CheckSpace
${If} "$ExistingTopDir" != ""
StrLen $0 "$ExistingTopDir"
StrLen $1 "$INSTDIR"
${If} $0 <= $1
StrCpy $2 "$INSTDIR" $3
${If} "$2" == "$ExistingTopDir"
Return
${EndIf}
${EndIf}
${EndIf}
StrCpy $ExistingTopDir "$INSTDIR"
${DoUntil} ${FileExists} "$ExistingTopDir"
${GetParent} "$ExistingTopDir" $ExistingTopDir
${If} "$ExistingTopDir" == ""
StrCpy $SpaceAvailableBytes "0"
StrCpy $HasRequiredSpaceAvailable "false"
Return
${EndIf}
${Loop}
${GetLongPath} "$ExistingTopDir" $ExistingTopDir
; GetDiskFreeSpaceExW requires a backslash.
StrCpy $0 "$ExistingTopDir" "" -1 ; the last character
${If} "$0" != "\"
StrCpy $0 "\"
${Else}
StrCpy $0 ""
${EndIf}
System::Call 'kernel32::GetDiskFreeSpaceExW(w, *l, *l, *l) i("$ExistingTopDir$0", .r1, .r2, .r3) .'
StrCpy $SpaceAvailableBytes "$1"
System::Int64Op $SpaceAvailableBytes / 1048576
Pop $1
System::Int64Op $1 > ${APPROXIMATE_REQUIRED_SPACE_MB}
Pop $1
${If} $1 == 1
StrCpy $HasRequiredSpaceAvailable "true"
${Else}
StrCpy $HasRequiredSpaceAvailable "false"
${EndIf}
FunctionEnd
Function LaunchApp
StrCpy $FirefoxLaunchCode "2"
; Set the current working directory to the installation directory
SetOutPath "$INSTDIR"
ClearErrors
${GetParameters} $0
${GetOptions} "$0" "/UAC:" $1
${If} ${Errors}
${If} $CheckboxCleanupProfile == 1
${ExecAndWaitForInputIdle} "$\"$INSTDIR\${FileMainEXE}$\" -reset-profile -migration -first-startup"
${Else}
${ExecAndWaitForInputIdle} "$\"$INSTDIR\${FileMainEXE}$\" -first-startup"
${EndIf}
${Else}
StrCpy $R1 $CheckboxCleanupProfile
GetFunctionAddress $0 LaunchAppFromElevatedProcess
UAC::ExecCodeSegment $0
${EndIf}
StrCpy $AppLaunchWaitTickCount 0
${StartTimer} ${AppLaunchWaitIntervalMS} WaitForAppLaunch
FunctionEnd
Function LaunchAppFromElevatedProcess
; Set the current working directory to the installation directory
SetOutPath "$INSTDIR"
${If} $R1 == 1
${ExecAndWaitForInputIdle} "$\"$INSTDIR\${FileMainEXE}$\" -reset-profile -migration -first-startup"
${Else}
${ExecAndWaitForInputIdle} "$\"$INSTDIR\${FileMainEXE}$\" -first-startup"
${EndIf}
FunctionEnd
Function WaitForAppLaunch
FindWindow $0 "${MainWindowClass}"
FindWindow $1 "${DialogWindowClass}"
${If} $0 <> 0
${OrIf} $1 <> 0
WebBrowser::CancelTimer $TimerHandle
StrCpy $ProgressCompleted "${PROGRESS_BAR_APP_LAUNCH_END_STEP}"
Call SetProgressBars
Call SendPing
Return
${EndIf}
IntOp $AppLaunchWaitTickCount $AppLaunchWaitTickCount + 1
IntOp $0 $AppLaunchWaitTickCount * ${AppLaunchWaitIntervalMS}
${If} $0 >= ${AppLaunchWaitTimeoutMS}
; We've waited an unreasonably long time, so just exit.
WebBrowser::CancelTimer $TimerHandle
Call SendPing
Return
${EndIf}
${If} $ProgressCompleted < ${PROGRESS_BAR_APP_LAUNCH_END_STEP}
IntOp $ProgressCompleted $ProgressCompleted + 1
Call SetProgressBars
${EndIf}
FunctionEnd
Function DisplayDownloadError
WebBrowser::CancelTimer $TimerHandle
; To better display the error state on the taskbar set the progress completed
; value to the total value.
${ITBL3SetProgressValue} "100" "100"
${ITBL3SetProgressState} "${TBPF_ERROR}"
MessageBox MB_OKCANCEL|MB_ICONSTOP "$(ERROR_DOWNLOAD_CONT)" IDCANCEL +2 IDOK +1
Call LaunchHelpPage
Call SendPing
FunctionEnd
Function LaunchHelpPage
StrCpy $OpenedDownloadPage "1" ; Already initialized to 0
ClearErrors
${GetParameters} $0
${GetOptions} "$0" "/UAC:" $1
${If} ${Errors}
Call OpenManualDownloadURL
${Else}
GetFunctionAddress $0 OpenManualDownloadURL
UAC::ExecCodeSegment $0
${EndIf}
FunctionEnd
Function OpenManualDownloadURL
ClearErrors
ReadINIStr $0 "${PARTNER_INI}" "DownloadURL" "FallbackPage"
${IfNot} ${Errors}
ExecShell "open" "$0"
${Else}
ExecShell "open" "${URLManualDownload}&installer_arch=$ArchToInstall${URLManualDownloadAppend}"
${EndIf}
FunctionEnd
Function ShouldPromptForProfileCleanup
; This will be our return value.
StrCpy $ProfileCleanupPromptType 0
; Only consider installations of the same architecture we're installing.
${If} $ArchToInstall == ${ARCH_AMD64}
${OrIf} $ArchToInstall == ${ARCH_AARCH64}
SetRegView 64
${Else}
SetRegView 32
${EndIf}
; Make sure $APPDATA is the user's AppData and not ProgramData.
; We'll set this back to all at the end of the function.
SetShellVarContext current
${FindInstallSpecificProfile}
Pop $R0
${If} $R0 == ""
; We don't have an install-specific profile, so look for an old-style
; default profile instead by checking each numbered Profile section.
StrCpy $0 0
${Do}
ClearErrors
; Check if the section exists by reading a value that must be present.
ReadINIStr $1 "$APPDATA\Mozilla\Firefox\profiles.ini" "Profile$0" "Path"
${If} ${Errors}
; We've run out of profile sections.
${Break}
${EndIf}
ClearErrors
ReadINIStr $1 "$APPDATA\Mozilla\Firefox\profiles.ini" "Profile$0" "Default"
${IfNot} ${Errors}
${AndIf} $1 == "1"
; We've found the default profile
ReadINIStr $1 "$APPDATA\Mozilla\Firefox\profiles.ini" "Profile$0" "Path"
ReadINIStr $2 "$APPDATA\Mozilla\Firefox\profiles.ini" "Profile$0" "IsRelative"
${If} $2 == "1"
StrCpy $R0 "$APPDATA\Mozilla\Firefox\$1"
${Else}
StrCpy $R0 "$1"
${EndIf}
${Break}
${EndIf}
IntOp $0 $0 + 1
${Loop}
${EndIf}
GetFullPathName $R0 $R0
${If} $R0 == ""
; No profile to clean up, so don't show the cleanup prompt.
GoTo end
${EndIf}
; We have at least one profile present. If we don't have any installations,
; then we need to show the re-install prompt. We'll say there's an
; installation present if HKCR\FirefoxURL* exists and points to a real path.
StrCpy $0 0
StrCpy $R9 ""
${Do}
ClearErrors
EnumRegKey $1 HKCR "" $0
${If} ${Errors}
${OrIf} $1 == ""
${Break}
${EndIf}
${WordFind} "$1" "-" "+1{" $2
${If} $2 == "FirefoxURL"
ClearErrors
ReadRegStr $2 HKCR "$1\DefaultIcon" ""
${IfNot} ${Errors}
${GetPathFromString} $2 $1
${If} ${FileExists} $1
StrCpy $R9 $1
${Break}
${EndIf}
${EndIf}
${EndIf}
IntOp $0 $0 + 1
${Loop}
${If} $R9 == ""
StrCpy $ProfileCleanupPromptType 1
GoTo end
${EndIf}
; Okay, there's at least one install, let's see if it's for this channel.
SetShellVarContext all
${GetSingleInstallPath} "Software\Mozilla\${BrandFullNameInternal}" $0
${If} $0 == "false"
SetShellVarContext current
${GetSingleInstallPath} "Software\Mozilla\${BrandFullNameInternal}" $0
${If} $0 == "false"
; Existing installs are not for this channel. Don't show any prompt.
GoTo end
${EndIf}
${EndIf}
; Find out what version the default profile was last used on.
${If} ${FileExists} "$R0\compatibility.ini"
ClearErrors
ReadINIStr $0 "$R0\compatibility.ini" "Compatibility" "LastVersion"
${If} ${Errors}
GoTo end
${EndIf}
${WordFind} $0 "." "+1{" $0
; We don't know what version we're about to install because we haven't
; downloaded it yet. Find out what the latest version released on this
; channel is and assume we'll be installing that one.
Call GetLatestReleasedVersion
${If} ${Errors}
; Use this stub installer's version as a fallback when we can't get the
; real current version; this may be behind, but it's better than nothing.
StrCpy $1 ${AppVersion}
${EndIf}
${WordFind} $1 "." "+1{" $1
IntOp $1 $1 - 2
${If} $1 > $0
; Default profile was last used more than two versions ago, so we need
; to show the paveover version of the profile cleanup prompt.
StrCpy $ProfileCleanupPromptType 2
${EndIf}
${EndIf}
end:
SetRegView lastused
SetShellVarContext all
FunctionEnd
Function GetLatestReleasedVersion
ClearErrors
Push $0 ; InetBgDl::GetStats uses $0 for the HTTP error code
; $1 is our return value, so don't save it
Push $2 ; InetBgDl::GetStats uses $2 to tell us when the transfer is done
Push $3 ; $3 - $5 are also set by InetBgDl::GetStats, but we don't use them
Push $4
Push $5
Push $6 ; This is our response timeout counter
InetBgDL::Get /RESET /END
InetBgDL::Get "https://product-details.mozilla.org/1.0/firefox_versions.json" \
"$PLUGINSDIR\firefox_versions.json" \
/CONNECTTIMEOUT 120 /RECEIVETIMEOUT 120 /END
; Wait for the response, but only give it half a second since this is on the
; installer startup path (we haven't even shown a window yet).
StrCpy $6 0
${Do}
Sleep 100
InetBgDL::GetStats
IntOp $6 $6 + 1
${If} $2 == 0
${Break}
${ElseIf} $6 >= 5
InetBgDL::Get /RESET /END
SetErrors
GoTo end
${EndIf}
${Loop}
StrCpy $1 0
nsJSON::Set /file "$PLUGINSDIR\firefox_versions.json"
IfErrors end
${Select} ${Channel}
${Case} "unofficial"
StrCpy $1 "FIREFOX_NIGHTLY"
${Case} "nightly"
StrCpy $1 "FIREFOX_NIGHTLY"
${Case} "aurora"
StrCpy $1 "FIREFOX_DEVEDITION"
${Case} "beta"
StrCpy $1 "LATEST_FIREFOX_RELEASED_DEVEL_VERSION"
${Case} "release"
StrCpy $1 "LATEST_FIREFOX_VERSION"
${EndSelect}
nsJSON::Get $1 /end
end:
${If} ${Errors}
${OrIf} $1 == 0
SetErrors
StrCpy $1 0
${Else}
Pop $1
${EndIf}
Pop $6
Pop $5
Pop $4
Pop $3
Pop $2
Pop $0
FunctionEnd
; Determine which architecture build we should download and install.
; AArch64 is always selected if it's the native architecture of the machine.
; Otherwise, we check a few things to determine if AMD64 is appropriate:
; 1) Running a 64-bit OS (we've already checked the OS version).
; 2) An amount of RAM strictly greater than RAM_NEEDED_FOR_64BIT
; 3) No third-party products installed that cause issues with the 64-bit build.
; Currently this includes Lenovo OneKey Theater and Lenovo Energy Management.
; We also make sure that the partner.ini file contains a download URL for the
; selected architecture, when a partner.ini file eixsts.
; If any of those checks fail, the 32-bit x86 build is selected.
Function GetArchToInstall
StrCpy $ArchToInstall ${ARCH_X86}
${If} ${IsNativeARM64}
StrCpy $ArchToInstall ${ARCH_AARCH64}
GoTo downloadUrlCheck
${EndIf}
${IfNot} ${IsNativeAMD64}
Return
${EndIf}
System::Call "*(i 64, i, l 0, l, l, l, l, l, l)p.r1"
System::Call "Kernel32::GlobalMemoryStatusEx(p r1)"
System::Call "*$1(i, i, l.r2, l, l, l, l, l, l)"
System::Free $1
${If} $2 L<= ${RAM_NEEDED_FOR_64BIT}
Return
${EndIf}
; Lenovo OneKey Theater can theoretically be in a directory other than this
; one, because some installer versions let you change it, but it's unlikely.
${If} ${FileExists} "$PROGRAMFILES32\Lenovo\Onekey Theater\windowsapihookdll64.dll"
Return
${EndIf}
${If} ${FileExists} "$PROGRAMFILES32\Lenovo\Energy Management\Energy Management.exe"
Return
${EndIf}
StrCpy $ArchToInstall ${ARCH_AMD64}
downloadUrlCheck:
; If we've selected an architecture that doesn't have a download URL in the
; partner.ini, but there is a URL there for 32-bit x86, then fall back to
; 32-bit x86 on the theory that we should never use a non-partner build if
; we are configured as a partner installer, even if the only build that's
; provided is suboptimal for the machine. If there isn't even an x86 URL,
; then we won't force x86 and GetDownloadURL will stick with the built-in URL.
ClearErrors
ReadINIStr $1 "${PARTNER_INI}" "DownloadURL" "X86"
${IfNot} ${Errors}
${If} $ArchToInstall == ${ARCH_AMD64}
ReadINIStr $1 "${PARTNER_INI}" "DownloadURL" "AMD64"
${If} ${Errors}
StrCpy $ArchToInstall ${ARCH_X86}
${EndIf}
${ElseIf} $ArchToInstall == ${ARCH_AARCH64}
ReadINIStr $1 "${PARTNER_INI}" "DownloadURL" "AArch64"
${If} ${Errors}
StrCpy $ArchToInstall ${ARCH_X86}
${EndIf}
${EndIf}
${EndIf}
FunctionEnd
Function GetDownloadURL
Push $0
Push $1
; Start with the appropriate URL from our built-in branding info.
${If} $ArchToInstall == ${ARCH_AMD64}
StrCpy $0 "${URLStubDownloadAMD64}${URLStubDownloadAppend}"
${ElseIf} $ArchToInstall == ${ARCH_AARCH64}
StrCpy $0 "${URLStubDownloadAArch64}${URLStubDownloadAppend}"
${Else}
StrCpy $0 "${URLStubDownloadX86}${URLStubDownloadAppend}"
${EndIf}
; If we have a partner.ini file then use the URL from there instead.
ClearErrors
${If} $ArchToInstall == ${ARCH_AMD64}
ReadINIStr $1 "${PARTNER_INI}" "DownloadURL" "AMD64"
${ElseIf} $ArchToInstall == ${ARCH_AARCH64}
ReadINIStr $1 "${PARTNER_INI}" "DownloadURL" "AArch64"
${Else}
ReadINIStr $1 "${PARTNER_INI}" "DownloadURL" "X86"
${EndIf}
${IfNot} ${Errors}
StrCpy $0 "$1"
${EndIf}
Pop $1
Exch $0
FunctionEnd
Function CommonOnInit
; Remove the current exe directory from the search order.
; This only effects LoadLibrary calls and not implicitly loaded DLLs.
System::Call 'kernel32::SetDllDirectoryW(w "")'
StrCpy $PingAlreadySent "false"
StrCpy $AbortInstallation "false"
StrCpy $LANGUAGE 0
; This macro is used to set the brand name variables but the ini file method
; isn't supported for the stub installer.
${SetBrandNameVars} "$PLUGINSDIR\ignored.ini"
StrCpy $CpuSupportsSSE "0"
Call CheckCpuSupportsSSE
; Windows 8.1/Server 2012 R2 and lower are not supported.
${Unless} ${AtLeastWin10}
StrCpy $ExitCode "${ERR_PREINSTALL_SYS_OS_REQ}"
${If} "$CpuSupportsSSE" == "0"
strCpy $R7 "$(WARN_MIN_SUPPORTED_OSVER_CPU_MSG)"
${Else}
strCpy $R7 "$(WARN_MIN_SUPPORTED_OSVER_MSG)"
${EndIf}
MessageBox MB_OKCANCEL|MB_ICONSTOP "$R7" /SD IDCANCEL IDCANCEL +2
ExecShell "open" "${URLWinPre10NeedsEsr115}"
StrCpy $AbortInstallation "true"
Return
${EndUnless}
; SSE2 CPU support
${If} "$CpuSupportsSSE" == "0"
StrCpy $ExitCode "${ERR_PREINSTALL_SYS_HW_REQ}"
MessageBox MB_OKCANCEL|MB_ICONSTOP "$(WARN_MIN_SUPPORTED_CPU_MSG)" /SD IDCANCEL IDCANCEL +2
ExecShell "open" "${URLSystemRequirements}"
StrCpy $AbortInstallation "true"
Return
${EndIf}
Call GetArchToInstall
${If} $ArchToInstall == ${ARCH_AARCH64}
${OrIf} $ArchToInstall == ${ARCH_AMD64}
StrCpy $INSTDIR "${DefaultInstDir64bit}"
${Else}
StrCpy $INSTDIR "${DefaultInstDir32bit}"
${EndIf}
!insertmacro IsTestBreakpointSet ${TestBreakpointArchToInstall}
; Require elevation if the user can elevate
${ElevateUAC}
; If we have any existing installation, use its location as the default
; path for this install, even if it's not the same architecture.
SetRegView 32
SetShellVarContext all ; Set SHCTX to HKLM
${GetSingleInstallPath} "Software\Mozilla\${BrandFullNameInternal}" $R9
${If} "$R9" == "false"
${If} ${IsNativeAMD64}
${OrIf} ${IsNativeARM64}
SetRegView 64
${GetSingleInstallPath} "Software\Mozilla\${BrandFullNameInternal}" $R9
${EndIf}
${EndIf}
${If} "$R9" == "false"
SetShellVarContext current ; Set SHCTX to HKCU
${GetSingleInstallPath} "Software\Mozilla\${BrandFullNameInternal}" $R9
${EndIf}
StrCpy $PreviousInstallDir ""
${If} "$R9" != "false"
StrCpy $PreviousInstallDir "$R9"
StrCpy $INSTDIR "$PreviousInstallDir"
${EndIf}
; Used to determine if the default installation directory was used.
StrCpy $InitialInstallDir "$INSTDIR"
; Initialize the majority of variables except those that need to be reset
; when a page is displayed.
StrCpy $ExitCode "${ERR_UNKNOWN}"
StrCpy $IntroPhaseSeconds "0"
StrCpy $OptionsPhaseSeconds "0"
StrCpy $EndPreInstallPhaseTickCount "0"
StrCpy $EndInstallPhaseTickCount "0"
StrCpy $StartDownloadPhaseTickCount "0"
StrCpy $EndDownloadPhaseTickCount "0"
StrCpy $InitialInstallRequirementsCode ""
StrCpy $IsDownloadFinished ""
StrCpy $FirefoxLaunchCode "0"
StrCpy $CheckboxShortcuts "1"
StrCpy $CheckboxCleanupProfile "0"
StrCpy $ProgressCompleted "0"
!ifdef MOZ_MAINTENANCE_SERVICE
; We can only install the maintenance service if the user is an admin.
Call IsUserAdmin
Pop $0
${If} "$0" == "true"
StrCpy $CheckboxInstallMaintSvc "1"
${Else}
StrCpy $CheckboxInstallMaintSvc "0"
${EndIf}
!else
StrCpy $CheckboxInstallMaintSvc "0"
!endif
!insertmacro IsTestBreakpointSet ${TestBreakpointMaintService}
StrCpy $FontFamilyName ""
!ifdef FONT_FILE1
${If} ${FileExists} "$FONTS\${FONT_FILE1}"
StrCpy $FontFamilyName "${FONT_NAME1}"
${EndIf}
!endif
!ifdef FONT_FILE2
${If} $FontFamilyName == ""
${AndIf} ${FileExists} "$FONTS\${FONT_FILE2}"
StrCpy $FontFamilyName "${FONT_NAME2}"
${EndIf}
!endif
${If} $FontFamilyName == ""
StrCpy $FontFamilyName "$(^Font)"
${EndIf}
InitPluginsDir
File /oname=$PLUGINSDIR\bgstub.jpg "bgstub.jpg"
; Detect whether the machine is running with a high contrast theme.
; We'll hide our background images in that case, both because they don't
; always render properly and also to improve the contrast.
System::Call '*(i 12, i 0, p 0) p . r0'
; 0x42 == SPI_GETHIGHCONTRAST
System::Call 'user32::SystemParametersInfoW(i 0x42, i 0, p r0, i 0)'
System::Call '*$0(i, i . r1, p)'
System::Free $0
IntOp $UsingHighContrastMode $1 & 1
SetShellVarContext all ; Set SHCTX to All Users
; If the user doesn't have write access to the installation directory set
; the installation directory to a subdirectory of the user's local
; application directory (e.g. non-roaming).
Call CanWrite
${If} "$CanWriteToInstallDir" == "false"
${GetLocalAppDataFolder} $0
StrCpy $INSTDIR "$0\${BrandFullName}\"
Call CanWrite
${EndIf}
Call CheckSpace
${If} ${FileExists} "$INSTDIR"
; Always display the long path if the path exists.
${GetLongPath} "$INSTDIR" $INSTDIR
${EndIf}
; Check whether the install requirements are satisfied using the default
; values for metrics.
${If} "$InitialInstallRequirementsCode" == ""
${If} "$CanWriteToInstallDir" != "true"
${AndIf} "$HasRequiredSpaceAvailable" != "true"
StrCpy $InitialInstallRequirementsCode "1"
${ElseIf} "$CanWriteToInstallDir" != "true"
StrCpy $InitialInstallRequirementsCode "2"
${ElseIf} "$HasRequiredSpaceAvailable" != "true"
StrCpy $InitialInstallRequirementsCode "3"
${Else}
StrCpy $InitialInstallRequirementsCode "0"
${EndIf}
${EndIf}
Call CanWrite
${If} "$CanWriteToInstallDir" == "false"
StrCpy $ExitCode "${ERR_PREINSTALL_NOT_WRITABLE}"
MessageBox MB_OK|MB_ICONEXCLAMATION "$(WARN_WRITE_ACCESS_QUIT)$\n$\n$INSTDIR" /SD IDOK
StrCpy $AbortInstallation "true"
Return
${EndIf}
!insertmacro IsTestBreakpointSet ${TestBreakpointCanWriteToDir}
Call CheckSpace
${If} "$HasRequiredSpaceAvailable" == "false"
StrCpy $ExitCode "${ERR_PREINSTALL_SPACE}"
MessageBox MB_OK|MB_ICONEXCLAMATION "$(WARN_DISK_SPACE_QUIT)"
StrCpy $AbortInstallation "true"
Return
${EndIf}
!insertmacro IsTestBreakpointSet ${TestBreakpointCheckSpace}
${InitHashAppModelId} "$INSTDIR" "Software\Mozilla\${AppName}\TaskBarIDs"
File /oname=$PLUGINSDIR\stub_common.css "stub_common.css"
File /oname=$PLUGINSDIR\stub_common.js "stub_common.js"
FunctionEnd
; .onGUIInit isn't needed except for RTL locales
!ifdef ${AB_CD}_rtl
Function .onGUIInit
${MakeWindowRTL} $HWNDPARENT
FunctionEnd
!endif
Function .onGUIEnd
Delete "$PLUGINSDIR\_temp"
Delete "$PLUGINSDIR\download.exe"
Delete "$PLUGINSDIR\${CONFIG_INI}"
${UnloadUAC}
FunctionEnd
|