Jump to content

Boskorp

Members
  • Posts

    32
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Boskorp reacted to mooms in Flash Player Plugins SFX & AddOn Maker   
    This script can make silent installers & nLite/RVMi AddOns for Adobe Flash Player ActiveX, NPAPI and PPAPI Plugins.
     
    Why using this script instead of an already made addon/SFX?
    No need to wait after someone to create/update addon/SFX (and downloading it on file sharing website with annoying ads & captchas). The script always download the latest version(s) available directly on Adobe servers. You are sure there is no adware/spyware inside.  
     
    Usage: 
    - Extract the content of the archive and run Flash_Maker.cmd
    - The script will ask you which version(s) of Flash Player you want:
    ActiveX is for Internet Explorer in Windows XP/Vista/7 NPAPI is for Firefox, Palemoon, and other browsers using Nestcape Plugin API. PPAPI is for Chromium, Opera, and other browsers using Pepper Plugin API. Internet Explorer in Windows 8/8.1/10 and Chrome have their own Flash Player Plugin embedded.
    - Then it will download (in the download folder) the latest setup(s) from Adobe website and repack it (or them) into a silent installer (& AddOn) in the output folder.
     
     
     
    Switches available:
    -ai autoupdate disabled, autoupdate task deleted, autoupdate service uninstalled & deleted. -ai1 autoupdate disabled -ai2 autoupdate enabled  If no switch is used, autoupdate is not configured (only check but ask for update, default behavior of Flash Player)  
    The silent installer can be used in any Windows version that is compatible with the originals setups.
    If you also want to make an AddOn ( designed for RVMi & nLite ), you have to set a variable to 1 in the script (open it with Notepad).


     

    MD5: 95ee24b2418f321a5113d12f51ccdc8e
    Size: 1005 KB
    Flash_Silent_Install_Maker_3.8.zip
  2. Like
    Boskorp reacted to ricktendo in Couple suggestions   
    Would be nice Lego if you could add the rebuilt .net 4.5 installer (people may prefer it because its less heavily moddified than the slim) to your downloads section (IDK maybe remove the 4.0?)
    And dont you think it would be better to move WinToolkit sub forum out from under the Windows 7 sub forum since WTK also supports Windows 8?
  3. Like
    Boskorp reacted to mooms in Update target editions.   
    Meanwhile, if someone ( rick, if you read me ) can post the commands used to update and export, it would be great.
  4. Like
    Boskorp reacted to x23piracy in Export current tweaks to a .reg file   
    Hi,
     
    the most easy way would be that lego implements a save button! finished!
     
     
    Regards
  5. Like
    Boskorp reacted to mooms in IE11   
    See also this thread.
  6. Like
    Boskorp reacted to ricktendo in [Tweaked] Skype 7.18.32.111 (Multilanguage)   
    About: This is the business version of Skype MSI so by default it has no junk!
    Tweaked: Shortcut moved out of sub folder into All Programs, Run on Windows startup removed, Run after standard GUI install removed
    Differences between Skype installers:
    VBS Editor Script
    Option Explicit Dim ws, installer, fs, db, view, record, x Set ws = WScript.CreateObject("WScript.Shell") Set fs = CreateObject("Scripting.FileSystemObject") Set installer = WScript.CreateObject("WindowsInstaller.Installer") If WScript.Arguments.Count <> 0 Then For each x in WScript.Arguments ProcessMSI x Next Else If fs.FileExists("SkypeSetup.msi") Then ProcessMSI "SkypeSetup.msi" End If '********************************************************************** '** Function; Query MSI database ** '********************************************************************** Function QueryDatabase(arrOpts) On Error Resume Next Dim query, file, binary : binary = false If LCase(TypeName(arrOpts)) = "string" Then query = arrOpts Else If fs.FileExists(arrOpts(0)) Then file = arrOpts(0) query = arrOpts(1) Else query = arrOpts(0) file = arrOpts(1) End If binary = true End If WScript.Echo query If binary Then Set record = installer.CreateRecord(1) record.SetStream 1, file End If Set view = db.OpenView (query) : CheckError If binary Then view.Execute record : CheckError Else view.Execute : CheckError End If view.close Set view = nothing If binary Then Set record = nothing binary = false db.commit : CheckError End Function '********************************************************************** '** Subroutine; Check errors in most recently executed MSI command ** '********************************************************************** Sub CheckError Dim message, errRec If Err = 0 Then Exit Sub message = Err.Source & " " & Hex(Err) & ": " & Err.Description If Not installer Is Nothing Then Set errRec = installer.LastErrorRecord If Not errRec Is Nothing Then message = message & vbNewLine & errRec.FormatText End If Wscript.Echo "" : Wscript.Echo message : Wscript.Echo "" Wscript.Quit 2 End Sub '********************************************************************** '** Function; Push changes to MSI ** '********************************************************************** Function ProcessMSI(file) Set db = installer.OpenDatabase(file, 1) On Error Resume Next QueryDatabase("DELETE FROM `AdminExecuteSequence` WHERE `Action` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `AdminUISequence` WHERE `Action` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `AdvtExecuteSequence` WHERE `Action` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `Component` WHERE `Directory_` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `Component` WHERE `Directory_` = 'UpdaterFolder'") QueryDatabase("DELETE FROM `CustomAction` WHERE `Action` = 'SkypeStart1'") QueryDatabase("DELETE FROM `CustomAction` WHERE `Action` = 'SkypeStart2'") QueryDatabase("DELETE FROM `CustomAction` WHERE `Action` = 'SkypeUpdaterCleanup'") QueryDatabase("DELETE FROM `CustomAction` WHERE `Action` = 'SkypeUpdaterConfig'") QueryDatabase("DELETE FROM `CustomAction` WHERE `Action` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `Directory` WHERE `Directory` = 'SystemFolder'") QueryDatabase("DELETE FROM `Directory` WHERE `Directory` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `Directory` WHERE `Directory` = 'UpdaterFolder'") QueryDatabase("DELETE FROM `Feature` WHERE `Feature` = 'Updater'") QueryDatabase("DELETE FROM `FeatureComponents` WHERE `Component_` = 'C_CENTRAL_msvcp120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `FeatureComponents` WHERE `Component_` = 'C_CENTRAL_msvcr120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `FeatureComponents` WHERE `Component_` = 'C_CENTRAL_vccorlib120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `FeatureComponents` WHERE `Feature_` = 'Updater'") QueryDatabase("DELETE FROM `File` WHERE `Component_` = 'C_CENTRAL_msvcp120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `File` WHERE `Component_` = 'C_CENTRAL_msvcr120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `File` WHERE `Component_` = 'C_CENTRAL_vccorlib120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `File` WHERE `Component_` = 'SkypeUpdater'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'DeleteServices'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'InstallServices'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'SkypeUpdaterCleanup'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'SkypeUpdaterConfig'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'StartServices'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'StopServices'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `InstallUISequence` WHERE `Action` = 'SystemFolder_x86_VC.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'SkypeStart1'") QueryDatabase("DELETE FROM `InstallExecuteSequence` WHERE `Action` = 'SkypeStart2'") QueryDatabase("DELETE FROM `ModuleComponents` WHERE `Component` = 'C_CENTRAL_msvcp120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `ModuleComponents` WHERE `Component` = 'C_CENTRAL_msvcr120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `ModuleComponents` WHERE `Component` = 'C_CENTRAL_vccorlib120_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `ModuleSignature` WHERE `ModuleID` = 'Microsoft_VC120_CRT_x86.194841A2_D0F2_3B96_9F71_05BA91BEA0FA'") QueryDatabase("DELETE FROM `MsiShortcutProperty` WHERE `Shortcut_` = 'SkypeDesktopShortcut'") QueryDatabase("DELETE FROM `Property` WHERE `Value` = 'DirectoryTable'") QueryDatabase("DELETE FROM `Registry` WHERE `Component_` = 'SkypeUpdater'") ' QueryDatabase("DELETE FROM `Registry` WHERE `Key` = 'Software\Microsoft\Windows\CurrentVersion\Run'") ' QueryDatabase("DELETE FROM `ServiceControl`") ' QueryDatabase("DELETE FROM `ServiceInstall`") QueryDatabase("DELETE FROM `Shortcut` WHERE `Shortcut` = 'SkypeDesktopShortcut'") QueryDatabase("INSERT INTO `Component` (`Component`,`ComponentId`,`Directory_`,`Attributes`,`Condition`,`KeyPath`) VALUES ('SkypeRegistryRun','{7D53301D-E4F0-403A-9A1C-876F1544939E}','PhoneFolder','4','RUN = 1','reg08D3E7E5CD85CB55680CCDE42A2E2625')") QueryDatabase("INSERT INTO `Control` (`Dialog_`,`Control`,`Type`,`X`,`Y`,`Width`,`Height`,`Attributes`,`Property`,`Text`,`Control_Next`) VALUES ('InstallDirDlg','Run','CheckBox','20','140','370','18','19','RUN','&Start Skype when I start Windows','Next')") QueryDatabase("INSERT INTO `FeatureComponents` (`Feature_`,`Component_`) VALUES ('Phone','SkypeRegistryRun')") QueryDatabase("INSERT INTO `Property` (`Property`,`Value`) VALUES ('LicenseAccepted','1')") QueryDatabase("UPDATE `Shortcut` SET Directory_ = 'ProgramMenuFolder' WHERE `Directory_` = 'ProgramMenuDir'") QueryDatabase("UPDATE `Registry` SET Component_ = 'SkypeRegistryRun' WHERE `Registry` = 'reg08D3E7E5CD85CB55680CCDE42A2E2625'") QueryDatabase("UPDATE `Control` SET Control_Next = 'Run' WHERE `Control` = 'ChangeFolder'") Set db = nothing End Function  
  7. Like
    Boskorp reacted to ricktendo in [Repak] Adobe Shockwave Player 12.2.2.172   
    I was able to update & upload this instaler
  8. Like
    Boskorp reacted to ricktendo in [Repak] Adobe Reader XI Lite 11.0.10 (de en es fr hu it pl ptb ru tr)   
    This is my updated, lite installer with a few Adobe Customization Wizard tweaks from this tutorial by Aaron Parker
    Details: Integrated latest MSP update, old Visual C++ runtimes removed, also other stuff removed and made "Lite", recompiled MSI, applied custom MST tweaks (details bellow)
    English United States (en-US) Updated
    MD5: b67afb0cf53ab6bfe50db7dca4c55656
    Size: 54.3 MB
    German Germany (de-DE) Updated
    MD5: 21d78e42d4de9579474a68af54c5cf3c
    Size: 54.7 MB
    Spanish Spain (es-ES) Updated
    MD5: f98fd244b74adc30becd118e6d2f78e5
    Size: 54.7 MB
    French France (fr-FR) Updated
    MD5: 628c6bbaa9c9540fec8ce73c4dd75ed4
    Size: 54.7 MB
    Hungarian Hungary (hu-HU) Updated
    MD5: c94a243ed71a29b9bfba20ae7bc8af78
    Size: 54.7 MB
    Italian Italy (it-IT) (Mirror)
    MD5: ff1d6364469fc164ac18761afd84173a
    Size: 54.5 MB
    Polish Poland (pl-PL) Updated
    MD5: 89d69f6190a9b5cd1396c97965111249
    Size: 54.7 MB
    Portuguese Brazil (pt-BR) Updated
    MD5: 9b521f9b07b1440ac7352e765df7bf75
    Size: 54.7 MB
    Russian Russia (ru-RU) (Mirror)
    MD5: 84a70b1194ecac300042185f4914ce96
    Size: 54.5 MB
    Turkish Turkey (tr-TR) Updated
    MD5: 3d3f746bde2dab1f23e0bdd54ec75c4f
    Size: 54.7 MB
    CustWiz and other tweaks
    Hidden Menu Items

    //HideMenu.js // [File - Save As Other]app.hideMenuItem("SaveAsSubmenu"); // [File - Send File]app.hideMenuItem("Email"); // [Edit - Check Spelling]app.hideMenuItem("Spelling:Spelling"); // [Edit - Accessability]app.hideMenuItem("Accessibility"); // [View - Read Out Loud]app.hideMenuItem("ReadAloud"); // [Help - Online Support]app.hideMenuItem("OnlineSupport"); // [Help - Online Support - Knowledge Base]app.hideMenuItem("KnowledgeBase"); // [Help - Online Support - Adobe Support Programs]app.hideMenuItem("AdobeExpertSupport"); // [Help - Online Support - Adobe User Community]app.hideMenuItem("AdobeUserCommunity"); // [Help - Online Support - Accessibility Resource Center]app.hideMenuItem("AccessOnline"); // [Help - Online Support - Generate System Report]app.hideMenuItem("SystemInformation"); // [Help - Repair Adobe Reader Installation]app.hideMenuItem("DetectAndRepair");Some tools to create your own
    Adobe Customization Wizard (repack/removed old runtimes)http://adf.ly/1713566/custwizInstEd (yumeyao LZX:21 mod)http://adf.ly/1713566/instedmsiSlim down your installers:http://adf.ly/1713566/msislim
  9. Like
    Boskorp reacted to mooms in Internet Explorer 11 for Windows 7 is out   
    Download it here: http://windows.microsoft.com/en-us/internet-explorer/ie-11-worldwide-languages
     
    Or here:
    x64: http://www.microsoft.com/en-us/download/details.aspx?id=40901
    x86: http://www.microsoft.com/en-us/download/details.aspx?id=40902


    IE11 Administration Kit:
    http://www.microsoft.com/en-us/download/details.aspx?id=40903

    How to extract IE11 setup files:
    IE11setup.exe /x:c:\ie11Links to IE11 cabs (for integration) :
    (English only, you still have to add Language pack cab and spelling & hyphenation msu for your specific language, you can take them from IE11setup.exe or from the individual links below).
     
    x64:http://go.microsoft.com/fwlink/?LinkID=299197
    x86:http://go.microsoft.com/fwlink/?LinkID=299198
     
    Individual links for language packs:



     
     
     
    Spelling:




    Hyphenation:



     
     
    List of prerequisites on MS site
     
    Updated list of prerequisites by steven4554:
     
     
  10. Like
    Boskorp reacted to mooms in [14 Juin 2014] Updates Packs GDR Windows 7 SP1   
    To "non-French" users:
    You can use http://translate.google.com/ to (badly) translate this page in your language.
    These packs contains all (and only) updates requested by Windows Update, no more and no less (GDR).
    They are an alternative to repositories who contains all know updates (GDR + LDR)
    The main advantage are a quicker integration and less bloated image.
    You can integrate them with ImageX/DISM or with Win Toolkit.
    If you add .Net 4.5.2 you will have zero updates on Windows Update (except facultatives updates for remore desktop)
    Since Vista, updates are language neutral, so you can use these packs with any Windows 7 SP1 ISO.
    The only localized files are the IE11 setups. Choose the language you want.
     The RunOnce pack are complementary pack of no-integrable updates.



     
     ___________________________________________________
     
    Ces packs contiennent toutes (et uniquement) les mises à jour demandées par Windows Update (GDR).
    Vous pouvez intégrer les mises à jour avec ImageX/DISM ou Win Toolkit. (version 1.4.29 ou plus recommandée).
    Win Toolkit 1.4.29 et plus gère correctement l'intégration du setup de IE11.
    Attention à bien télécharger IE11 dans la langue correspondant à votre système.
    Si vous ajoutez .Net 4.5.2, aucune mise à jour prioritaire ne vous sera demandée sur Windows Update (Uniquement des majs  facultatives concernant le bureau à distance).
     
     
     

    Les liens des updates packs sont dans le fichier zip en pièce jointe:
    The links for the updates packs are in the zip file attached:
    update packs.zip
     
     
    Updates Runonce
    Certaines MAJ ne peuvent êtres intégrées et doivent être installées au premier démarrage de Windows.
    A rajouter dans la partie silent install+SFX de WinToolkit ou avec SetupComplete.cmd par exemple.
     
    Some updates are not integrable and must be installed at the first boot of Windows
    They can be added in the silent install+SFX tab of WinToolkit (or launched at first login by other means).
     
    KB2533552 X86 - X64
    KB2603229 X64
     
     
    Leurre pour MRT (KB890830)
    About leurre_MRT_x86-x64.exe see this post.
    Version de Juin 2014
    Compatible x86 et x64. A installer en RunOnce
    MD5: b7780f718ef70dc21be379305de575db
    Taille: 77,1 Ko
    Lien dans le dossier des update packs.
     
     
     
     
    Internet Explorer 11
     
    IE11 x64 & x86 all languages

     
    Mise à jour  pour IE11 Juin 2014
    Updates for IE11 2014 June

    KB2929437 x86 - x64
    KB2957689 x86 - X64
    KB2909210 x86 - x64
     
    Pour ajouter le setup de IE11 dans WinToolkit, procédez comme suit:
    To add IE11 setup to WinToolkit, follow these steps:
     

     

     
     
     
     
    WinToolkit Cleanup
    Pour effacer les fichiers et dossier laissés par WinToolkit, à ajouter dans l'onglet Silent Install+ SFX
    This will delete files and folder left by WinToolkit, add it to Silent Install+ SFX tab.
     
    Taille: 25 Ko
    MD5: 2314277bc407887a0f468ae7002f8281
    WTCleanup.exe
     
     
     
    Notes:
    - Si vous souhaitez empêcher l'apparition du ballot screen (choix du navigateur) une fois KB976002 installée, vous pouvez ajouter ce tweak: (WinToolkit permet d'importer un ou plusieurs fichiers reg)
    Windows Registry Editor Version 5.00;KB976002[HKEY_LOCAL_MACHINE\SOFTWARE\BrowserChoice]"Enable"=dword:00000000 
     
     
    - Autres solutions pour récupérer les mises à jour GDR:
    Windows Updates Downloader avec ses update lists ou ces listes alternatives.
    rhahgleuhargh a créé des Updates Lists GDR pour Windows 7 SP1 x64 et x86 basées sur mes packs.
  11. Like
    Boskorp reacted to Kelsenellenelvian in Update Catalog   
    Quote from mcrip
     
     
×
×
  • Create New...