Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
1743 connectés 

  FORUM HardWare.fr
  Programmation
  C++

  projet VC++6 instalable

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

projet VC++6 instalable

n°1425624
stanfordia​s
Posté le 15-08-2006 à 15:55:16  profilanswer
 

Bonjour,  
jai un projet en VC++6 et je voudrai creer un installable pour que mon projet puisse fonctionner meme si VC++ n'est pas installé
comment je peux le faire
Merci d avance

mood
Publicité
Posté le 15-08-2006 à 15:55:16  profilanswer
 

n°1425629
stanfordia​s
Posté le 15-08-2006 à 16:08:28  profilanswer
 

Je crois que c est realisable avec installShield  mais je ne sais pas comment

n°1425667
stanfordia​s
Posté le 15-08-2006 à 19:34:28  profilanswer
 

y a pas quelqu un qui puisse m eclairer un peu

n°1425679
icareo
Posté le 15-08-2006 à 20:13:37  profilanswer
 

pour tous les types d'installeurs comme installshield il me semble qu'il y a un programme spécial pour "créer" l'instaleur... google est ton ami, perso je peux pas plus t'aider :)

n°1425682
karlkox
Posté le 15-08-2006 à 20:23:51  profilanswer
 

NSIS est ton amis.

n°1425822
_darkalt3_
Proctopathe
Posté le 16-08-2006 à 09:13:40  profilanswer
 

+1 pour NSIS

n°1426065
stanfordia​s
Posté le 16-08-2006 à 14:59:41  profilanswer
 

J ai installé easyinstaller on m a  dit qu il est tres bien  
mais je ne sais pas comment l utiliser
j ai besoin de votre precieux aide  
merci d avance

n°1426080
_darkalt3_
Proctopathe
Posté le 16-08-2006 à 15:18:22  profilanswer
 

toute la doc là à priori ...
http://www.codeproject.com/tools/EasyInstaller.asp
 
Cela dit, à mon avis il y a plus simple à utiliser que ce truc...


---------------
Töp of the plöp
n°1426171
pfuitt
Posté le 16-08-2006 à 16:47:08  profilanswer
 

sinon sous le pack VS il y a les solution de deployement, mais je ne sais plus si elle est dispo sous la VS 6 standard. en tout cas sous la 2005 non beta elle y est
 


---------------
Fight with the best, die with the rest ...
n°1426189
_darkalt3_
Proctopathe
Posté le 16-08-2006 à 17:03:42  profilanswer
 

Avec NSIS, voici le genre de script qui fait des installers au poil:


; install.nsi
;
; Script d'installation pour MonSoft
;------------------------------------------------------------------------------
 
Name "MonSoft Installer"
OutFile "MonSoft Installer.exe"
ReleaseDir "..\src\Solution_MonSoft\bin\Release"
InstallDir $PROGRAMFILES\MonSoft
 
 
;------------------------------------------------------------------------------
; Pages
 
Page directory
Page instfiles
 
 
;------------------------------------------------------------------------------
; The stuff to install
 
Section ""
 
SetOutPath $INSTDIR
File $ReleaseDir\MonSoft.exe
WriteUninstaller "uninstall.exe"
 
 
SetOutPath $INSTDIR\help
File $ReleaseDir\help\helpfile.chm
 
SetOutPath $INSTDIR\conf
File $ReleaseDir\conf\config.ini
 
SetOutPath $INSTDIR\logo
File $ReleaseDir\logo\logo.bmp
 
SectionEnd ; end the section
 
 
;------------------------------------------------------------------------------
; Creation des shortcuts du menu demarrer
 
Section "Start Menu Shortcuts"
 
CreateDirectory "$SMPROGRAMS\MonSoft"
CreateShortCut "$SMPROGRAMS\MonSoft\MonSoft (MonSoft).lnk" "$INSTDIR\MonSoft.exe" "" "$INSTDIR\MonSoft.exe" 0
CreateShortCut "$SMPROGRAMS\MonSoft\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
 
SectionEnd
 
 
;------------------------------------------------------------------------------
; Uninstaller
 
Section "Uninstall"
   
; Remove files and uninstaller
Delete $INSTDIR\conf\*.*
Delete $INSTDIR\help\*.*
Delete $INSTDIR\logo\*.*
 
RMDir "$INSTDIR\conf"
RMDir "$INSTDIR\help"
RMDir "$INSTDIR\logo"
 
Delete $INSTDIR\*.*
RMDir "$INSTDIR"
 
Delete "$SMPROGRAMS\MonSoft\*.*"
 
; Remove directories used
RMDir "$SMPROGRAMS\MonSoft"
 
SectionEnd


---------------
Töp of the plöp

Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Programmation
  C++

  projet VC++6 instalable

 

Sujets relatifs
projet C#/.NET fonction d'impression de page[Projet] MMORPG
eclipse projet classpathRecherche codeur php/sql pour projet hebergement web
Le projet Dig To FragProjet Championnat
Petit projet...besoin d'aide :)Mon projet XML+XSL
Besoin de quelqu'un pour un petit projetAide publication d'un projet
Plus de sujets relatifs à : projet VC++6 instalable


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR