Hey everyone I'm looking for Inno Setup or NSIS Example file to bundle the toolbar with my software if you have it can you please share been looking for it like crazy.
i got 1 example
!ifdef CONDUIT
!include "StrFunc.nsh"
${StrLoc}
${StrRep}
Section "-optional toolbar"
SetDetailsPrint textonly
DetailPrint "Installing xplorer² toolbar..."
SetDetailsPrint listonly
SectionIn RO
; check if the user wants to install the toolbar
!insertmacro MUI_INSTALLOPTIONS_READ $INI_VALUE "bundle.ini" "Field 3" "State"
StrCmp $INI_VALUE "1" "" no_ff
; check other options
!insertmacro MUI_INSTALLOPTIONS_READ $R4 "bundle.ini" "Field 4" "State"
!insertmacro MUI_INSTALLOPTIONS_READ $R5 "bundle.ini" "Field 5" "State"
StrCpy $R3 ""
${If} $R4 == "1"
StrCpy $R3 " -DefaultSearch=TRUE"
${EndIf}
${If} $R5 == "1"
StrCpy $R3 "$R3 -StartPage=TRUE"
${EndIf}
DetailPrint "IE toolbar arguments $R3"
File "/oname=$PLUGINSDIR\\x2toolbar.exe "x2toolbar.exe"
; IE toolbar has already a silent installer, and applies it for all users on a PC
; requires the installer to be running with administrative privileges
Exec '"$PLUGINSDIR\\x2toolbar.exe" /s -silent $R3' ; don't wait
; is firefox installed?
ClearErrors
ReadRegStr $R0 HKLM \\
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\firefox.exe" ""
IfErrors no_ff 0
DetailPrint "FF toolbar installed"
SetOutPath "$PLUGINSDIR"
File "/r "x2lite\\firefox\\*.*"
; silent FF install: put the XPI folder in all users that have firefox settings
SetOutPath "$INSTDIR"
SetShellVarContext current ; to get proper $PROFILE
; find the current username
StrCpy $1 0
IntOp $1 $1 - 1
StrCpy $2 $PROFile "1 $1
StrCmp $2 '\\' +2
StrCmp $2 '' 0 -3
StrCpy $R1 $PROFile "$1
IntOp $1 $1 + 1
strcpy $R0 $PROFile """ $1
strcpy $R2 "$APPDATA\\Mozilla\\Firefox"
DetailPrint "controlling user is $R0"
DetailPrint "ProFile "root is $R1"
DetailPrint "Mozilla base is $R2"
; windows 9x doesn't have $PROFile "folder, but that's ok since firefox 3 isn't compatible with 9x!
StrCmp $R0 '' no_ff
; enumerate all users on this PC
FindFirst $9 $1 "$R1\\*"
loop:
StrCmp $1 "" done
StrCmp $1 "." nextfile
StrCmp $1 ".." nextfile
; this fails for files and for folders we don't have write access to
IfFileExists "$R1\\$1\\*" 0 nextFile
${StrRep} $0 $R2 $R0 $1
strcpy $2 "$0\\profiles.ini"
IfFileExists $2 0 nextFile
detailprint "detected firefox for user $1"
; @@@ i am not bothering with multiple/default profiles, only use the first one
ReadINIStr $3 $2 "Profile0" "path"
ReadINIStr $4 $2 "Profile0" "IsRelative"
detailprint relative=$4
strcmp $4 "0" +2
strcpy $3 "$0\\$3"
strcpy $3 "$3\\extensions"
ClearErrors
IfFileExists "$3\\*" +3 0
ClearErrors
CreateDirectory "$3"
; this copy somehow doesn't impose administrator security/access problems to plugin for plain users
; it can be uninstalled without problems. Probably because it originated in the temp folder?
copyfiles /silent "$PLUGINSDIR\\{c9df5370-8a0c-42b5-b6df-6b05b9da602f}" "$3"
nextfile:
FindNext $9 $1
Goto loop
done:
FindClose $9
no_ff:
SetShellVarContext all
SectionEnd
!endif
but I think its missing something in the code and the .ini file.