forked from clear-code/fx-meta-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.nsh.sample
71 lines (60 loc) · 2.74 KB
/
config.nsh.sample
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
;Copyright (C) 2008-2012 ClearCode Inc.
;This file must be encoded in Shift_JIS
;====================== CUSTOMIZABLE SECTION =======================
!define PRODUCT_FULL_NAME "Fx Meta Installer"
!define PRODUCT_NAME "FxMetaInstaller"
!define PRODUCT_VERSION "0.0.0.0"
!define PRODUCT_YEAR "2012"
!define PRODUCT_PUBLISHER "ClearCode Inc."
!define PRODUCT_DOMAIN "clear-code.com"
!define PRODUCT_WEB_SITE "http://www.clear-code.com/"
!define PRODUCT_WEB_LABEL "Go to Clear Code Inc."
!define PRODUCT_LANGUAGE "Japanese"
!define REQUIRE_ADMIN
;!define ADMIN_CHECK_DIR ""
; Type of the wizard
; NORMAL : Show full wizard
; PASSIVE : Show message dialog but process installation automatically
; (semi-silent install)
; QUIET : Silent install
!define PRODUCT_INSTALL_MODE "NORMAL"
!define APP_NAME "Firefox"
;!define APP_EXE "something.exe"
;!define APP_KEY "Vendor\Something"
!define APP_MIN_VERSION "10.0"
!define APP_MAX_VERSION "99.99"
;!define APP_ALLOW_DOWNGRADE
;!define APP_DOWNLOAD_PATH "\\fileserver\shared\Firefox Setup 15.0.1.exe"
;!define APP_DOWNLOAD_URL "http://download.mozilla.org/?product=firefox-15.0.1&os=win&lang=ja"
;!define APP_HASH "8d017402de51a144d0e0fe4d3e2132cb"
;!define APP_EULA_PATH "\\fileserver\shared\Firefox Setup 15.0.1.txt"
;!define APP_EULA_URL "http://www.mozilla.com/en-US/legal/eula/firefox2-en.txt"
!define APP_ENABLE_CRASH_REPORT
;!define DEFAULT_CLIENT "StartMenuInternet\FIREFOX.EXE"
;!define DISABLED_CLIENTS ""
; Type of installation of Firefox/Thunderbird itself
; NORMAL : Show full wizard
; QUIET : Silent install (recommended)
; SKIP : Do not install Firefox/Thunderbird
!define APP_INSTALL_MODE "QUIET"
!define FX_ENABLED_SEARCH_PLUGINS "*"
!define FX_DISABLED_SEARCH_PLUGINS ""
; Requirement of a clean environment with no existing profile
; REQUIRED : Requires a clean environment. If there is any existing
; Firefox/Thunderbird profile, then cancels the installation
; process automatically.
; PREFERRED : Recommends a clean environment. The wizard asks to the user to
; continue installation process, so the user can cancel the
; insta
; Otherwise : No alert.
!define CLEAN_INSTALL ""
;!define CLEAN_REQUIRED_TITLE ""
;!define CLEAN_REQUIRED_MESSAGE ""
;!define CLEAN_PREFERRED_TITLE ""
;!define CLEAN_PREFERRED_MESSAGE ""
;!define INSTALL_ADDONS ""
;!define EXTRA_INSTALLERS ""
;!define EXTRA_SHORTCUTS ""
;!define FINISH_TITLE ""
;!define FINISH_MESSAGE ""
;===================================================================