Jump to content

mooms

Global Mods
  • Posts

    2,334
  • Joined

  • Last visited

  • Days Won

    138

Everything posted by mooms

  1. Si vous connaissez les archives 7zip sfx (archives autoextractibles souvent utilisées pour créer les installateurs silencieux) vous avez sans doute remarqué qu'a la différence de celles créées par Winrar on ne peut pas accéder au commentaire lorsque on les ouvre avec 7zip ou tout autre soft du même acabit. c'est là que 7zip SFX splitter est utile: il permet de décomposer votre archive 7zip sfx en trois fichiers distincts: - Le module sfx (.sfx) qui rend l'archive autoextractible. C'est le "moteur d'installation. - le fichier de configuration (.txt) ( format texte encodage UTF8) contenant les commentaires (les commandes à faire exécuter au module sfx) - L'archive 7zip (.7z) contenant les fichiers. Note: 7Zsplit ne fonctionne pas correctement si le fichier de config contient des commandes "récentes" comme la possibilité d'avoir des sections spécifiques à une langue ou une architecture, dans ce cas utilisez la commande installateur_sfx.exe -sfxconfig config.txt Lien sur mediafire Utiliser 7zip splitter en ligne de commande: 7ZSplit.exe archive_sfx.exe -rh -m module_sfx.sfx -c config.txt -a archive.7z La commande pour (re)créer une archive 7zip sfx : copy /b 7zsd.sfx + Config.txt + archive.7z installateur_sfx.exe Vous pouvez aussi obtenir les fichier de configuration d'un installateur 7zip SFX de cette manière: installateur_sfx.exe -sfxconfig config.txt Le fichier config.txt sera alors créé dans le dossier courant, il contient les commandes SFX Vous pouvez aussi connaitre la version du module SFX avec cette commande: installateur_sfx.exe -sfxversion
  2. Certains connaissent bien ce petit utilitaire, et je le partage aussi dans mon addon Utilitaires. Il permet de faire un cliché du registre avant les modifications qu'un programme va effectuer en s'installant ou au 1er lancement puis d'en faire un deuxième immédiatement après afin de comparer les différences. Version 32 bits standard préconfigurée en français et pour créer des fichier reg et inf (fonctionne aussi avec les OS 64 bits) Regshot-2.0.1.70 Fr.rar - 66 Ko Nécessite les runtimes Visual C++ 2005 installées (c'est genéralement le cas). La version originale, avec toutes les langues et toutes les éditions, à configurer selon ses besoins: http://www.wincert.net/forum/files/file/16-regshot-unicode/ Les versions ReleaseStatic(64) ont les runtimes Visual c++ 2005 intégrées dans l’exécutable. Mini tuto: 1- lancez Regshot 2- cliquez sur 1er cliché. 3- faites les modification souhaitées au registre (installation d'un logiciel, exécution d'un fichier reg ou inf, etc...) 4- cliquez sur 2ème cliché et fermez la page IE qui s'est ouverte ainsi que Regshot (cliquez non sur ses deux demandes) 5- rendez-vous dans C:/Hive Les fichiers redo contiennent les modifs venant d’être apportées au registre, les fichiers undo permettent de les annuler.
  3. C'est fait, NIM a gentiment accepté de me passer modo et il devrait créer de nouvelles sections d'ici peu. EDIT: sections créées ! On peut le remercier ! Si quelqu'un d'autre veut demander les droit de modération sur la section FR afin que je sois pas le seul modo, il est le bienvenu.
  4. @woody: malheureusement Moebius ne répond pas aux mails. @jaynbe: bonne idée, et puis ça n'empêchera pas de recréer un forum si le besoin s'en fait sentir. J'ai envoyé un MP à NIM pour voir si il est OK pour que je devienne modo de la section Fr et qu'il crée de nouveaux sous-forums car il y en a très peu pour l'instant. Si vous avez la possibilité de contacter certains membres pour les amener ici allez-y !
  5. Bonjour à tous. Depuis quelques jours http://www.forum-unattend.fr/ est inaccessible et Moebius, l'administrateur et créateur, est aux aux abonnés absents depuis plusieurs mois. Je crée donc ce topic afin que nous puissions en discuter et annoncer éventuellement l'ouverture d'un nouveau forum francophone sur les "unattended". @+ et bonnes fêtes.
  6. I think RAM drive will be faster than a SSD. I use a SSD to build the image, and even with minimal updates to satisfy MS Update, the process still take 15-20 mins for each edition.
  7. I'm trying sendpace right now, they have a 300 MB size limit per file for free users (200 for Mediafire) and you can upload and share without registering, like Mediafire before. Or you could just create a new Mediafire account....
  8. If no "txt file" is found (could be .ini or .lng btw), it would be in English by default, like now. It's just an idea to make the app better.
  9. I had also a DMCA blabla about a CPU driverpack which supposedly violed the copyright of some asian VPC pornsite (wtf!). Have mailed mediafire, never answered. It's only one way with them.... Good luck with them anyway !
  10. Correction des versions sans extensions qui n'étaient pas silencieuses
  11. Is it possible to change the order of execution of the silent installers without doing a rebuild ?
  12. No, go ahead. edit: hum, maybe my response was misunderstood, (not always easy to be understood in english) I meant, no problem, you can post it !
  13. Hi RicaNeaga, I'm not really a silent installer specialist, it's just a hobby, but i will try to answer you: Beside SFX Maker that you already know, you will maybe like to try 7-Zip SFX Maker. i do know RegFromApp, in fact i have used it before discovering RegShot, it is also in my utilities AddOn that i share here: [AddOn] Utilitaires. I'm curious of the reasons you think it is better than RegShot, in my opinion RehShot is more powerful, as it can see the whole registry, not only one app, and it also can export in inf format, something that RegFromApp can't do. However I don't know Reg2exe, thanks to mentioning it, have to try it some day ! I rarely use SFX (or AddOn) makers, i have tested a few and they generate sub optimal config files in my opinion so I prefer to populate the config file myself, it's a good practice ! About registry entries, there is many ways to add them with a sfx: The most simple way i'm aware: regedit /s RegFile.reg Can be run directly from the sfx, or by a batch/cmd file called by the sfx There is also the possibility to add the registry entries directly from the cmd, or even directly from the sfx config file because RunProgram="hidcon:cmd /c Will run a hidden CMD shell, and as you can see in my config file, you can directly enter some command lines in the config file (But with some subtle differences in the syntax, so it may be more simple to do all the command in a .bat/cmd file run by the sfx) RunProgram="hidcon:cmd /c del /f /q \"%PUBLIC%\\Desktop\\Virtual CloneDrive.lnk\"" is equivalent to del /f /q "%PUBLIC%\Desktop\Virtual CloneDrive.lnk" in a batch file. (you can see the syntax is slightly different ) I think your config file parameters is wrong, if your installer (VLC in this case) is in the sfx archive, you can run it this way: RunProgram="vlc-2.0.4-win32.exe /L=1033 /S" No need to add variables, the sfx will run it from a temporary folder and it will be deleted after execution so no need for deletion command neither in this case. 7 ZIP SFX is very powerfull especially if you use the modified module. (syntax is explained and some examples on this site) I also often open the sfx made by others (with 7zip split) and i try to understand what each command will do, it's the best way to learn.
  14. Nouvelles versions 13.0.0.513 - Les sfx sont dorénavant compressés avec la méthode LZMA2 pour gagner le maximum en compression (commande: 7za a -m0=LZMA2 -mx=9 )
  15. .net 3.5 is shipped with win7 (windows 6.1) so .net 3.5 updates are considered as Windows Updates.
  16. @ElmerBeFuddled : you have to create the $OEM$ folder in the root of your install source. But If you use WinToolkit just adding the KB in the silent installs /SFX tab of WinToolkit will be simpler. not in the last versions, have to do it manually.
  17. http://www.mozilla.org/en-US/firefox/17.0.1/releasenotes/ + ajout d'une version avec extensions incluses.
  18. Salut seiferflo Pour les runtimes: - Utiliser 7z SFX Archive splitter pour "décomposer" le sfx (cocher les 3 cases) - Supprimer vcredist_x86.exe de l’archive 7zip et la recréer ensuite (LZMA/LZMA2 compression ultra, taille des mots 128) - récréer le sfx avec cette commande: copy /b module_sfx.sfx + fichier_de_config.txt + archive.7z installateur.exe apntoolbarinstaller n'est pas supprimable. Pour Avira 2013, pas vu de différences majeures si ce n'est la prise en charge de Windows 8. Sur mon PC je suis encore sur la version 2012 et ça fonctionne bien.
  19. I have tested a capture with Regshot before and after enabling MS Update: As i was afraid, it's not just some registry keys. I don't use silverlight so i'm still looking for an other way. edit: I have attached the capture if someone want to look at it. Hive.rar
  20. next time i install Windows 7 i will do a capture with regshot, but i don't know if it will be enough.
  21. It's certainly possible if we know what is done when you activate MS Update. An addon would be great.
×
×
  • Create New...