Jump to content

mooms

Global Mods
  • Posts

    2,334
  • Joined

  • Last visited

  • Days Won

    138

Reputation Activity

  1. Like
    mooms got a reaction from Boskorp in SumatraPDF 3.1.2 & 3.5.2   
    Added version 3.2.11040 pre-release.
  2. Like
    mooms got a reaction from SunLion in WinRAR SFX Maker 3.2   
    Version 3.1
    Updated 7za to version 1805. Updated the icon of the sfx module from WinRAR 5.60. Added a theme in the Themes folder (the previous default theme of WinRAR). If you copy the file rar.reg in the setup folder, the old default theme will be applied. Rewritten the creation of the sfx config file: now the parameters are dynamically created when corresponding options are used (previously all parameters where added even if not used). If you embed theme(s) and create an AddOn, the sfx in the SVCPACK AddOn will be copied in a temp folder then executed at RunOnce (this way you can remove the install media after the install is finished). You can now install WinRAR 32 bits on a 64 bits Windows.
  3. Like
    mooms got a reaction from Reezo in WinRAR SFX Maker 3.2   
    With this maker you can create switchless installers (and RVMi/nLite AddOn), with your own license file, in the language of your choice, and with themes &  others customization.
     
    Tutorial:
     
    - Download and extract this archive:
     
    WinRAR_SFX_Maker_3.2.zip
    SHA-1: c67f8a7b50743d7f6a1ca9eef1bf031675a9ccc2
    Size: 554 KB


    - Download a copy of the WinRAR installer(s) in your language: https://www.rarlab.com/download.htm
    You can grab both x86 & x64 versions to make an universal installer, the sfx will take care to install the correct version.
     
    - Place the installer(s) in the setup folder. (keep the original names)
     
    - Optional: put a valid WinRAR license file (rarreg.key) in the setup folder
     
    - Optional: extract the theme(s) you want to add in \Themes\theme_name\
                         Each theme must be extracted in his own subfolder
                         Themes can be downloaded here: https://www.rarlab.com/themes.htm
     
    - Optional: If you want to add custom prefs to your WinRAR install (like enabling a theme you have added),
                      you can edit the file rar.reg accordingly and place it in the setup folder.
     
    - Optional: If you want to create an AddOn for RVMi/nLite, edit the script and change the value to "set addon=1"
                       Note that starting with version 6.10, WinRAR is not compatible anymore with Windows XP.


    - Run WinRAR_SFX_Maker.cmd

    The  switchless installer and AddOn are created in the output folder.
     

     
    As long as the WinRAR installer routine is not modified this maker will work, so keep it, it will be useful again when WinRAR will be updated.
    (Read this thread for an in depth explanation of the capability of this maker)
  4. Thanks
    mooms reacted to HackedPwned in Utilitaires [24.04.02]   
    Salut mooms !
    Merci pour la mise à jour .
    En voulant comparer tes batch avec ceux que j'avais créé à l'époque, je me suis rendu compte qu'on avait pratiquement la même fonction pour déterminer la taille du pack . Cependant, à titre d'information, je me permets de te montrer une légère (mais vraiment légère hein ) optimisation.
    Voici la fonction dans son état actuel, issue du "setup.cmd" (j'ai supprimé la ligne que tu avais commentée) :
    :taille for /f "tokens=3" %%A in ('dir /s "%ip%\"^|find "fichier(s)"') do set size=%%A set size=%size: =% set /a size=%size% /1024 goto :eof J'avais exactement la même fonction, à un ou deux petits détails près :
    :taille for /f "tokens=3" %%A in ('dir /s /-c /a "%ip%\"^|find "fichier(s)"') do set size=%%A set /a size/=1024 goto :eof Comme tu peux le voir, pas de gros changements :
    l'ajout du paramètre "/-c" permet de supprimer le séparateur de milliers ; aussi plus besoin de la ligne "set size=%size: =%" pour retirer les espaces ; l'ajout du paramètre "/a" permet de prendre en compte également les fichiers cachés / masqués. Grâce à ce paramètre, la taille récupérée est EXACTEMENT la même, à l'octet près, que celle indiquée dans la fenêtre de propriétés Windows ; le "set /a size=%size% /1024" devient "set /a size/=1024". C'est la même chose, mais en plus compact, mais là c'est juste une préférence personnelle, chacun ses habitudes . Bon c'est du chipotage, mais vu le nombre d'heures que j'avais passé à affiner la fonction pour avoir un résultat parfait, je me suis dis autant t'en faire profiter (juste à titre d'information, c'est pas ça qui changera le pack ^^).
    Concernant la procédure de désinstallation via "del.cmd", pour ma part j'avais opté pour une boucle lisant un fichier texte "liste_processus.txt", dans lequel sont notés tous les processus de tous les programmes.
    La commande pskill n'est alors appelée que si le processus est encore en cours d'exécution.
    Pas sûr du tout que ça fasse gagner du temps, c'est sans doute même le contraire, mais je trouvais ça plus "élégant", bien qu'une manière plus classe devrait exister, mais je n'en ai pas trouvé pour l'instant.
    Voici donc le "del.cmd" que j'avais fais :
    ::------------------------------------------------------------------------------ :: Désinstallation du pack d'utilitaires de mooms :: https://www.wincert.net/forum/index.php?/topic/10975-utilitaires-19-01-2018/ ::------------------------------------------------------------------------------ @echo off setlocal enabledelayedexpansion :: Création de la clé 'EulaAccepted' de PsKill reg add "HKCU\Software\Sysinternals\PsKill" /v EulaAccepted /t REG_DWORD /d 1 /f :: Boucle tuant tous les processus du pack étant encore en cours d'utilisation. :: La liste des processus est dans le fichier 'liste_processus.txt'. :: Si nécessaire, on peut commenter une ligne avec '#' à son début. pushd %~dp0 set "fichier_liste_processus=liste_processus.txt" for /f "tokens=* eol=#" %%a in (%fichier_liste_processus%) do ( set "processus=%%a" for %%A in (!processus!) do ( tasklist /FI "IMAGENAME eq %%A" 2>nul | find /i /n "%%A" >nul if "!errorlevel!"=="0" pskill -t %%A >nul ) ) :: Suppression de l'intégralité des fichiers du pack rmdir /s /q "%ProgramFiles%\utilitaires" rmdir /s /q "%LOCALAPPDATA%\VirtualStore\Program Files (x86)\utilitaires" rmdir /s /q "%LOCALAPPDATA%\VirtualStore\Program Files\utilitaires" rmdir /s /q "%ALLUSERSPROFILE%\Microsoft\Windows\Start Menu\Programs\Utilitaires" rmdir /s /q "%ALLUSERSPROFILE%\utilitaires" rmdir /s /q "%HOMEDRIVE%\Utilitaires" rmdir /s /q "%LOCALAPPDATA%\VirtualStore\ProgramData\Utilitaires" :: Suppression des clés de désinstallation 'Uninstall' reg delete "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Utilitaires_mooms" /f reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Utilitaires_mooms" /f Je ne pense pas que la commande "pushd %~dp0" soit nécessaire, mais je l'avais mise au cas où.
    Le fichier "liste_processus.txt" ressemble à ça :
    Voilà, c'est tout ^^. Comme dit, c'est du chipotage, mais vu le temps passé à l'époque, ça me fait un peu de mal de ne pas le partager ^^.
    A bientôt !
  5. Thanks
    mooms reacted to locutusdeborg in Simplix Update Pack pour Windows 7 & Server 2008r2   
    Nouvelle version 18.8.20
    https://update7.simplix.info/UpdatePatch-18.8.20.exe
    Historique des changements:
    Ajout de KB2920188-v7-x64 (prise en charge de TPM 2.0) Ajout de KB4343900-x86-x64 avec désactivation de la vérification de la télémétrie et du processeur (remplace KB4338818-x86-x64 et KB4345459-x86-x64) Ajout de KB4344152-x86-x64 (remplace KB4338423-x86-x64) Ajout de la clé / NVMe pour l'intégration des mises à jour et des pilotes NVMe dans le système de récupération et l'environnement
  6. Thanks
    mooms reacted to icare in icare [14 Jan 2020] SFX Microsoft   
    obsolete
     
  7. Like
    mooms reacted to HackedPwned in CCleaner SFX Maker 3.9   
    Merci mooms !
  8. Like
    mooms reacted to icare in icare [14 Jan 2020] SFX Microsoft   
    Bonjour,
    avec beaucoup de retard, version 2018-07 du DNF 4.7.2.
    Le DNF 4.7.2 est désormais installé par la KB4054530 qui contient les fichiers en version 4.7.3062 du 26 Mar 2018 et un patch (qui fut un temps appelé KB4087364) avec des fichiers en version 3081 du 06 Jun 2018.
    La mise à jour sécurité et qualité de Jul KB4338420 contient des fichiers en version 3130 du 05 Jun 2018 mais avec un bug sur les composants COM a obligé MS à publier la KB4346407 avec des fichiers version 3133 du 24 Jul 2018.
    @+
  9. Like
    mooms got a reaction from Jan Krohn in Downloading Windows 7 is interrupted up to 600 MB.   
    Try to use a download manager.
  10. Thanks
    mooms got a reaction from filter in WinRAR SFX Maker 3.2   
    Version 3.1
    Updated 7za to version 1805. Updated the icon of the sfx module from WinRAR 5.60. Added a theme in the Themes folder (the previous default theme of WinRAR). If you copy the file rar.reg in the setup folder, the old default theme will be applied. Rewritten the creation of the sfx config file: now the parameters are dynamically created when corresponding options are used (previously all parameters where added even if not used). If you embed theme(s) and create an AddOn, the sfx in the SVCPACK AddOn will be copied in a temp folder then executed at RunOnce (this way you can remove the install media after the install is finished). You can now install WinRAR 32 bits on a 64 bits Windows.
  11. Like
    mooms reacted to geodasoft in WinRAR SFX Maker 3.2   
    gracias tu aporte muy bueno  me sirvio de mucho
  12. Like
    mooms reacted to geodasoft in Flash Player Plugins SFX & AddOn Maker   
    GRACIAS Amigo
  13. Like
    mooms got a reaction from Boskorp in WinRAR SFX Maker 3.2   
    Version 3.1
    Updated 7za to version 1805. Updated the icon of the sfx module from WinRAR 5.60. Added a theme in the Themes folder (the previous default theme of WinRAR). If you copy the file rar.reg in the setup folder, the old default theme will be applied. Rewritten the creation of the sfx config file: now the parameters are dynamically created when corresponding options are used (previously all parameters where added even if not used). If you embed theme(s) and create an AddOn, the sfx in the SVCPACK AddOn will be copied in a temp folder then executed at RunOnce (this way you can remove the install media after the install is finished). You can now install WinRAR 32 bits on a 64 bits Windows.
  14. Like
    mooms got a reaction from kevins in windos lite   
    https://www.ntlite.com/
  15. Thanks
    mooms got a reaction from geodasoft in WinRAR SFX Maker 3.2   
    Version 3.1
    Updated 7za to version 1805. Updated the icon of the sfx module from WinRAR 5.60. Added a theme in the Themes folder (the previous default theme of WinRAR). If you copy the file rar.reg in the setup folder, the old default theme will be applied. Rewritten the creation of the sfx config file: now the parameters are dynamically created when corresponding options are used (previously all parameters where added even if not used). If you embed theme(s) and create an AddOn, the sfx in the SVCPACK AddOn will be copied in a temp folder then executed at RunOnce (this way you can remove the install media after the install is finished). You can now install WinRAR 32 bits on a 64 bits Windows.
  16. Like
    mooms got a reaction from SunLion in WinRAR SFX Maker 3.2   
    With this maker you can create switchless installers (and RVMi/nLite AddOn), with your own license file, in the language of your choice, and with themes &  others customization.
     
    Tutorial:
     
    - Download and extract this archive:
     
    WinRAR_SFX_Maker_3.2.zip
    SHA-1: c67f8a7b50743d7f6a1ca9eef1bf031675a9ccc2
    Size: 554 KB


    - Download a copy of the WinRAR installer(s) in your language: https://www.rarlab.com/download.htm
    You can grab both x86 & x64 versions to make an universal installer, the sfx will take care to install the correct version.
     
    - Place the installer(s) in the setup folder. (keep the original names)
     
    - Optional: put a valid WinRAR license file (rarreg.key) in the setup folder
     
    - Optional: extract the theme(s) you want to add in \Themes\theme_name\
                         Each theme must be extracted in his own subfolder
                         Themes can be downloaded here: https://www.rarlab.com/themes.htm
     
    - Optional: If you want to add custom prefs to your WinRAR install (like enabling a theme you have added),
                      you can edit the file rar.reg accordingly and place it in the setup folder.
     
    - Optional: If you want to create an AddOn for RVMi/nLite, edit the script and change the value to "set addon=1"
                       Note that starting with version 6.10, WinRAR is not compatible anymore with Windows XP.


    - Run WinRAR_SFX_Maker.cmd

    The  switchless installer and AddOn are created in the output folder.
     

     
    As long as the WinRAR installer routine is not modified this maker will work, so keep it, it will be useful again when WinRAR will be updated.
    (Read this thread for an in depth explanation of the capability of this maker)
  17. Thanks
    mooms got a reaction from hamzaaan in WinRAR SFX Maker 3.2   
    Version 3.1
    Updated 7za to version 1805. Updated the icon of the sfx module from WinRAR 5.60. Added a theme in the Themes folder (the previous default theme of WinRAR). If you copy the file rar.reg in the setup folder, the old default theme will be applied. Rewritten the creation of the sfx config file: now the parameters are dynamically created when corresponding options are used (previously all parameters where added even if not used). If you embed theme(s) and create an AddOn, the sfx in the SVCPACK AddOn will be copied in a temp folder then executed at RunOnce (this way you can remove the install media after the install is finished). You can now install WinRAR 32 bits on a 64 bits Windows.
  18. Thanks
    mooms got a reaction from hamzaaan in Firefox SFX Maker 5.5   
    Hi,
     
    No sorry, I don't use Chrome, it's a spyware from Google.
  19. Like
    mooms reacted to HackedPwned in Utilitaires [24.04.02]   
    Merci !
  20. Like
    mooms reacted to HackedPwned in Utilitaires [24.04.02]   
    Merci mooms !
  21. Like
    mooms got a reaction from Gn.D@nte in Hello This is Dante Shadow   
    Hi Dante, welcome.
  22. Like
    mooms got a reaction from filter in CCleaner SFX Maker 3.7.1   
    Version 3.1 is out:
    Updated the download urls (changed from piriform.com to ccleaner.com).  
  23. Thanks
    mooms got a reaction from filter in Firefox SFX Maker 5.5   
    Version 5.4:
    Renamed the shortcut for Firefox 58+
  24. Like
    mooms got a reaction from rhahgleuhargh in [14 janvier 2020] Update list GDR pour Windows 7 SP1 x86/x64 (Fr-En-De-Es-It)   
    Merci de l'info. Je ne suis pas certain que ça dure encore très longtemps ceci-dit...
    Pour le moment j'ai installé le patch de Janvier mais je l'ai désactivé avec Inspectre de GRC, qui permet de vérifier si on est patché et surtout de désactiver les fix Meltdown et Spectre (il faut redémarrer):
    Voici ce que ça donne chez moi avec un 6700K @4,4Ghz, une CM Z170, CrystalDiskMark x64 6.0 et un SSD 1To sous Windows 7 x64,
    Meltdown off:
    [
    Meltdown on:


    47% de perfs en moins en écriture 4Ko-Q1T1, et le core 1 à 100% en lecture 4Ko-Q8T8 (il ne dépasse pas les 85% en off).
    Les fix pour Spectre ne sont pas activés puisqu’il faut une màj du microcode.
     
     
     
    ___________________________________________________
     
    Plusieurs chercheurs ont clairement indiqué que les patchs des navigateurs étaient relativement simples à contourner, la méthode la plus sûre est de désactiver/limiter le JavaScript (au moins pour les domaines de tierce-partie puisque normalement on a confiance dans le site qu'on visite).
    Je recommande très fortement à tous d'utiliser uBlock Origin en mode medium, ça permet de bloquer les scripts (de tierce et/ou de première partie).
    Sans-même utiliser de filtres, ce simple réglage aura pour conséquence de désactiver 99% des pubs et du tracking, mais là ce n'est plus seulement une question de confort et de vie privée, mais de sécurité.
    Il faudra parfois ré-activer un script ou deux pour récupérer certaines fonctionnalités (typiquement les commentaires sur les sites qui les gèrent avec Disqus), mais le confort, le gain en vie privée et en sécurité est considérable et vaut le coup de s'embêter un (tout petit) peu plus.
     
  25. Thanks
    mooms reacted to Thiersee in Java Multi Maker   
    The Java-Maker works with 9.0.4 too; I didn't install it.
×
×
  • Create New...