NSIS adalah salah satu tool gratis dan open source untuk membuat paket instalasi. Oke sebelum kita melangkah lebih jauh, berikut adalah hal-hal yang perlu kita persiapkan :
- NSIS
- MySQL versi noninstall disesuaikan dengan versi MySQL yang terinstall di komputer Anda
- Connector ODBC yang sudah terinstall biasanya ada di C:\Program Files\MySQL\Connector ODBC 5.1
- Database yang sudah di backup/dump
- Untuk editor, bagi Anda yang buta warna cukup pake notepad , saya sendiri menggunakan notepad++ atau kalo pengen lebih nyaman bisa menggunakan eclipse kemudian download plug-in NSIS
Memang kalo dilihat dari segi skrip, Inno Setup lebih simple dibandingkan NSIS tetapi setelah saya bandingkan hasil paket instalasi NSIS lebih kecil dibandingkan Inno Setup.
Skrip Inno Setup dan NSIS sama-sama dikelompokkan dalam section-section bedanya kalo Inno Setup untuk nama sectionnya sudah fix (misal Setup, Tasks, Files de el el) sedangkan NSIS untuk nama sectionnya bebas dan tentunya dalam penamaan section di NSIS disesuaikan dengan isinya (misal Install MySQL 5).
Salah satu bagian penting dari skrip NSIS yang kita bahas disini adalah skrip yang digunakan untuk membuat service MySQL, mendaftarkan driver MySQL Connector ODBC dan melakukan proses undump skrip databse (.sql).
Saya ambil contoh untuk membuat service MySQL tentunya dilihat dari versi windows yang terinstall kalo keluarga Win9x jelas tidak bisa karena belum mendukung pembuatan service, oleh karena itu sebelum menjalankan perintah membuat service akan dilakukan pengecekan versi windows terlebih dulu.
Nah disini akan terlihat jelas perbedaan skrip Inno Setup dan NSIS dimana untuk melakukan ini inno setup cukup menambahkan flag MinVersion, misal :
3 | Filename: "{app}\mysql\bin\mysqld.exe" ; Parameters: "install " "MySQL" "" ; StatusMsg: "Sedang menginstall service MySQL ..." ; Flags: runhidden; MinVersion: 0 , 5.01 . 2600 sp 2 ; Tasks: installmysql |
Sedangkan untuk NSIS kita perlu mendownload Version plug-in terlebih dulu dan mengekstraknya kemudiakan mengcopykan file version.dll ke folder instalasi NSIS\Plugins, walaupun sebenarnya kita bisa membuat fungsi sendiri di NSIS untuk mengecek versi windows yang terinstall.
Contoh skrip NSIS untuk mengecek versi windows dan menginstall service MySQL :
01 | Section "Install MySQL 5" |
04 | Pop $ 0 ;nilai var $ 0 akan bersisi 1 jika windows XP selain itu 0 |
05 | StrCmp $ 0 "1" ItIsWindowsXP ItIsNotWindowsXP ;StrCmp sama seperti fungsi IIF di VB |
14 | DetailPrint "Sedang menginstall service MySQL ..." |
15 | ExecWait '"$MYSQL_DIR\bin\mysqld.exe" install "MySQL"' |
Gimana lumayan beda kan?
Khusus untuk file-file Runtime VB memerlukan penanganan khusus dan untuk memudahkan Anda mencoba sample skrip ini download terlebih dahulu file Runtime VB disini dan jangan lupa diekstrak.
Persiapan terakhir untuk struktur folder saya buat seperti berikut :
Dan saya tidak akan menjelaskan fungsi-fungsi/perintah yang digunakan dalam skrip NSIS karena sudah saya sisipkan komentar di sample skrip instalasi NSIS.
Jika masih kesulitan Anda bisa langsung membaca manual NSIS yang penjelasannya sudah sangat lengkap.
Berikut contoh skrip instalasi lengkap menggunakan NSIS :
001 | ;Skrip instalasi by k 4 m 4 r 82 |
004 | !include VB 6 RunTime.nsh |
007 | ; format pemanggilan ${NAMA_KONSTANTA} |
008 | !define APP_NAME "Sistem Pembelian Bahan Baku PT. ALBASI" |
009 | !define APP_PUBLISHER "K4m4r82's Laboratory" |
010 | !define APP_VERSION "2.0.50" |
012 | BrandingText /TRIMCENTER "-- ${APP_PUBLISHER} --" |
013 | Name "${APP_NAME} ${APP_VERSION}" |
014 | Caption "${APP_NAME} ${APP_VERSION}" |
016 | CompletedText "Instalasi sudah selesai" |
019 | LoadLanguageFile "${NSISDIR}\Contrib\Language files\Indonesian.nlf" |
020 | OutFile "output\DemoSetupNSIS.exe" |
022 | ShowUninstDetails show |
026 | ;informasi default folder instalasi |
027 | InstallDir "$PROGRAMFILES\SPBB" |
029 | ;informasi folder instalasi disimpan disini |
030 | ;informasi ini akan memudahkan kita untuk membuat program update |
031 | InstallDirRegKey HKCU "Software\PT ALBASI\SPBB" "InstallDir" |
033 | VIAddVersionKey /LANG=${LANG_INDONESIAN} "ProductName" "${APP_NAME}" |
034 | VIAddVersionKey /LANG=${LANG_INDONESIAN} "Comments" "" |
035 | VIAddVersionKey /LANG=${LANG_INDONESIAN} "CompanyName" "${APP_PUBLISHER}" |
036 | VIAddVersionKey /LANG=${LANG_INDONESIAN} "LegalTrademarks" "${APP_NAME} is a trademark of ${APP_PUBLISHER}" |
037 | VIAddVersionKey /LANG=${LANG_INDONESIAN} "LegalCopyright" "Copyright © 2009. ${APP_PUBLISHER}" |
038 | VIAddVersionKey /LANG=${LANG_INDONESIAN} "FileDescription" "${APP_NAME}" |
039 | VIAddVersionKey /LANG=${LANG_INDONESIAN} "FileVersion" "2.0.0.50" |
040 | VIProductVersion "2.0.0.50" |
042 | RequestExecutionLevel admin |
044 | AddBrandingImage left 150 | 234 |
045 | Page custom BrandingImage |
050 | UninstPage custom un.BrandingImage |
051 | UninstPage uninstConfirm |
055 | ; format pemanggilan $NAMA_VARIABEL ingat ada sedikit perbedaan dg konstanta |
060 | ;section yang diawali karakter -, pilihannya tidak ditampilkan |
061 | Section "-Inisialisasi Variabel" |
062 | StrCpy $MainDir $INSTDIR |
063 | StrCpy $MySQLDir $MainDir\mysql |
066 | Section "-Visual Basic Runtime" |
068 | IfFileExists "$MainDir\Albasi.exe" 0 new_installation |
069 | StrCpy $AlreadyInstalled 1 |
072 | !insertmacro VB 6 RunTimeInstall "dll&ocx\vb6runtime" $AlreadyInstalled |
075 | Section "-My Application Runtime" |
077 | File "main\Albasi.exe.manifest" |
078 | File "main\Albasi.exe" |
082 | File "dll&ocx\LVbuttons.OCX" |
083 | RegDLL "$SYSDIR\LVbuttons.ocx" |
085 | File "dll&ocx\MSMASK32.OCX" |
086 | RegDLL "$SYSDIR\MSMASK32.ocx" |
088 | File "dll&ocx\cTreeOpt6.ocx" |
089 | RegDLL "$SYSDIR\cTreeOpt6.ocx" |
091 | File "dll&ocx\Comdlg32.ocx" |
092 | RegDLL "$SYSDIR\Comdlg32.ocx" |
094 | File "dll&ocx\vbalDTab6.ocx" |
095 | RegDLL "$SYSDIR\vbalDTab6.ocx" |
097 | File "dll&ocx\vbalExpBar6.ocx" |
098 | RegDLL "$SYSDIR\vbalExpBar6.ocx" |
100 | File "dll&ocx\MSCOMCTL.OCX" |
101 | RegDLL "$SYSDIR\MSCOMCTL.ocx" |
103 | File "dll&ocx\vbalIml6.ocx" |
104 | RegDLL "$SYSDIR\vbalIml6.ocx" |
106 | File "dll&ocx\cPopMenu6.ocx" |
107 | RegDLL "$SYSDIR\cPopMenu6.ocx" |
109 | File "dll&ocx\cNewMenu6.dll" |
110 | RegDLL "$SYSDIR\cNewMenu6.DLL" |
112 | File "dll&ocx\scrrun.dll" |
113 | RegDLL "$SYSDIR\scrrun.DLL" |
115 | File "dll&ocx\vbalMDITabs6.dll" |
116 | RegDLL "$SYSDIR\vbalMDITabs6.DLL" |
118 | File "dll&ocx\SSubTmr6.dll" |
119 | RegDLL "$SYSDIR\SSubTmr6.DLL" |
121 | File "dll&ocx\msado21.tlb" |
122 | RegDLL "$SYSDIR\msado21.tlb" |
126 | SectionGroup /e "Komponen Server" |
127 | Section "Install MySQL 5" |
128 | ; param /r -> recursive |
129 | SetOutPath $MySQLDir\bin |
130 | File /r "mysql-5.1.36-win32\bin\*.*" |
132 | SetOutPath $MySQLDir\Docs |
133 | File /r "mysql-5.1.36-win32\Docs\*.*" |
135 | SetOutPath $MySQLDir\lib |
136 | File /r "mysql-5.1.36-win32\lib\*.*" |
138 | SetOutPath $MySQLDir\share |
139 | File /r "mysql-5.1.36-win32\share\*.*" |
141 | SetOutPath $MySQLDir\data |
142 | File /r "mysql-5.1.36-win32\data\*.*" |
145 | File "mysql-5.1.36-win32\*.*" |
147 | ;informasi lokasi instalasi mysql |
148 | WriteINIStr $MySQLDir\my.ini "mysqld" "basedir" $MySQLDir |
149 | WriteINIStr $MySQLDir\my.ini "mysqld" "datadir" $MySQLDir\data |
151 | ;proses membuat dan menjalankan service mysql, cek versi windows terlebih dulu |
152 | ;untuk contoh disini baru di tes untuk windows xp sp 2 |
155 | Pop $ 0 ;nilai var $ 0 akan bersisi 1 jika windows XP selain itu 0 |
156 | StrCmp $ 0 "1" ItIsWindowsXP ItIsNotWindowsXP ;StrCmp sama seperti fungsi IIF di VB |
165 | DetailPrint "Sedang menginstall service MySQL ..." |
166 | ExecWait '"$MySQLDir\bin\mysqld.exe" install "MySQL"' |
168 | ;jalankan service MySQL |
169 | DetailPrint "Sedang menjalankan service MySQL ..." |
170 | ExecWait '"$SYSDIR\net.exe" start "MySQL"' |
172 | ;mendaftarkan port default mysql ( 3306 ) ke firewall |
173 | DetailPrint "Sedang mendaftarkan port MySQL ..." |
174 | ExecWait '"$SYSDIR\netsh.exe" firewall add portopening TCP 3306 "Port MySQL"' |
176 | ;mengganti password default root (blank). ex : masterkey |
177 | DetailPrint "Mengganti password root" |
178 | ExecWait '"$MySQLDir\bin\mysqladmin.exe" -uroot password masterkey' |
180 | ;menghapus user default 1 (user=blank, password=blank) |
181 | ExecWait '"$MySQLDir\bin\mysql.exe" -uroot -pmasterkey -e "DELETE FROM mysql.user WHERE Host=$\'localhost$\' AND User=$\'$\'"' |
182 | ExecWait '"$MySQLDir\bin\mysql.exe" -uroot -pmasterkey -e "FLUSH PRIVILEGES"' |
184 | ;menghapus user default 2 (user=root, password=blank) |
185 | ExecWait '"$MySQLDir\bin\mysql.exe" -uroot -pmasterkey -e "DELETE FROM mysql.user WHERE Host=$\'127.0.0.1$\' AND User=$\'root$\'"' |
186 | ExecWait '"$MySQLDir\bin\mysql.exe" -uroot -pmasterkey -e "FLUSH PRIVILEGES"' |
188 | ;set agar user root bisa login dari mesin lain (kalo diperlukan) |
189 | ExecWait '"$MySQLDir\bin\mysql.exe" -uroot -pmasterkey -e "GRANT ALL PRIVILEGES ON *.* TO root@$\'%$\' IDENTIFIED BY $\'masterkey$\'"' |
190 | ExecWait '"$MySQLDir\bin\mysql.exe" -uroot -pmasterkey -e "FLUSH PRIVILEGES"' |
196 | Section "Install MySQL Connector ODBC" |
199 | ;dll mysql odbc tidak perlu diregistrasikan |
200 | ;jadi otomatis tidak perlu memanggil fungsi RegDLL |
201 | File "C:\Program Files\MySQL\Connector ODBC 5.1\myodbc5.dll" |
202 | File "C:\Program Files\MySQL\Connector ODBC 5.1\myodbc5S.dll" |
203 | File "C:\Program Files\MySQL\Connector ODBC 5.1\myodbc5.lib" |
204 | File "C:\Program Files\MySQL\Connector ODBC 5.1\myodbc5S.lib" |
205 | File "C:\Program Files\MySQL\Connector ODBC 5.1\myodbc-installer.exe" |
210 | StrCmp $ 0 "1" ItIsWindowsXP ItIsNotWindowsXP |
213 | Goto installdriverodbc |
219 | ;install driver myodbc |
220 | DetailPrint "Tunggu sedang mendaftarkan driver MySQL Connector ODBC 5.1.5" |
221 | ExecWait '"$SYSDIR\myodbc-installer.exe" -d -a -n "MySQL ODBC 5.1 Driver" -t "DRIVER=myodbc5.dll;SETUP=myodbc5S.dll"' |
227 | Section "Install Database" |
228 | SetOutPath $MySQLDir\bin |
230 | File "main\albasi.sql" |
236 | StrCmp $ 0 "1" ItIsWindowsXP ItIsNotWindowsXP |
245 | ;membuat database kosong |
246 | ExecWait '"$MySQLDir\bin\mysql.exe" -uroot -pmasterkey -e "CREATE DATABASE albasi"' |
248 | ;menjalankan file batch exec.cmd untuk melakukan proses undump |
249 | ExecWait '"$MySQLDir\bin\exec.cmd"' |
256 | SectionGroup /e "Buat Shortcut" |
257 | Section "Start Programs" |
258 | SectionIn RO ;RO -> Read Only |
260 | CreateDirectory "$SMPROGRAMS\PT. ALBASI" |
261 | CreateShortCut "$SMPROGRAMS\PT. ALBASI\${APP_NAME}.lnk" "$MainDir\Albasi.exe" "" "$MainDir\Albasi.exe" 0 |
265 | ;CreateDirectory "$DESKTOP\SPBB" |
266 | CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$MainDir\Albasi.exe" "" "$MainDir\Albasi.exe" 0 |
269 | Section "Quick Launch" |
270 | ;CreateDirectory "$QUICKLAUNCH\SPBB" |
271 | CreateShortCut "$QUICKLAUNCH\${APP_NAME}.lnk" "$MainDir\Albasi.exe" "" "$MainDir\Albasi.exe" 0 |
275 | Section "-Registry Windows" |
277 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SPBB" "DisplayName" "${APP_NAME}" |
278 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SPBB" "UninstallString" '"$MainDir\uninstaller.exe"' |
279 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SPBB" "DisplayIcon" '"$MainDir\uninstaller.exe"' |
281 | WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SPBB" "NoModify" 1 |
282 | WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SPBB" "NoRepair" 1 |
284 | WriteUninstaller $MainDir\uninstaller.exe |
287 | Section "-File Konfigurasi Program" |
288 | WriteINIStr $MainDir\infoprogram.ini "Sistem" "serverName" "127.0.0.1" |
289 | WriteINIStr $MainDir\infoprogram.ini "Sistem" "dbName" "albasi" |
294 | DetailPrint "Menghentikan Service MySQL ..." |
295 | ExecWait '"$SYSDIR\net.exe" stop "MySQL"' |
298 | DetailPrint "Sedang menghapus service MySQL ..." |
299 | ExecWait '"$MySQLDir\bin\mysqld.exe" remove "MySQL"' |
301 | ;driver MySQL Connector ODBC 5.1 |
302 | DetailPrint "Tunggu sedang menghapus driver MySQL Connector ODBC 5.1" |
303 | ExecWait '"$SYSDIR\myodbc-installer.exe" -d -r -n "MySQL ODBC 5.1 Driver"' |
305 | ; Remove registry keys |
306 | DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\SPBB" |
308 | ; Remove files and uninstaller |
313 | Delete "$SMPROGRAMS\PT. ALBASI\*.*" |
314 | RMDir "$SMPROGRAMS\PT. ALBASI" |
316 | Delete "$DESKTOP\${APP_NAME}.lnk" |
317 | Delete "$QUICKLAUNCH\${APP_NAME}.lnk" |
320 | ;fungsi untuk menampilkan gambar/banner pada saat instalasi |
321 | ;untuk contoh disini posisi gambar di sebelah kiri |
322 | Function BrandingImage |
325 | SetFileAttributes SetupModern 21 .bmp temporary |
326 | File SetupModern 21 .bmp |
327 | SetBrandingImage "$TEMP\SetupModern21.bmp" /resizetofit |
330 | ;fungsi untuk menampilkan gambar/banner pada saat uninstall |
331 | Function un.BrandingImage |
332 | SetBrandingImage "$TEMP\SetupModern21.bmp" /resizetofit |
Di dalam skrip instalasi ada file exec.cmd, isinya adalah :
1 | mysql -uroot -pmasterkey albasi < albasi.sql |
Isi file exec.cmd sebenarnya untuk proses undump dan ternyata Inno Setup dan NSIS gagal menjalankan perintah tersebut, padahal perintah-perintah yang lainnya sukses.
Contoh hasil instalasi :
Gambar 1
Gambar 2
Gambar 3
Gambar 4
Selamat mencoba
sumber
0 comments:
Posting Komentar