--- /dev/null
+; Fluidbook\r
+\r
+;--------------------------------\r
+\r
+; The name of the installer\r
+Name "Le Guide des outils marketing"\r
+\r
+; The file to write\r
+OutFile "Installation-Guide-Outils-Marketing.exe"\r
+\r
+; The default installation directory\r
+InstallDir "$DESKTOP\Le Guide des outils marketing"\r
+\r
+; Request application privileges for Windows Vista\r
+RequestExecutionLevel user\r
+\r
+; Style\r
+XPStyle on\r
+\r
+Icon "essilor.ico"\r
+\r
+; not released\r
+;TargetMinimalOS 5.0\r
+\r
+; Langues\r
+LoadLanguageFile "C:/Program Files/NSIS/Contrib/Language files/French.nlf"\r
+\r
+; Pages\r
+\r
+Page directory\r
+Page instfiles\r
+\r
+; Compression\r
+SetCompress off\r
+\r
+;--------------------------------\r
+\r
+; The stuff to install\r
+Section "" ;No components page, name is not important\r
+\r
+ ; Set output path to the installation directory.\r
+ SetOutPath $INSTDIR\r
+ \r
+ ; Put file there\r
+ File /r ".\datas\*"\r
+ \r
+ ExecShell "" "$INSTDIR\Le Guide des outils marketing.exe"\r
+ \r
+SectionEnd ; end the section\r
+\r
+\r