Jump to content

HJSC

Members
  • Posts

    34
  • Joined

  • Last visited

Reputation Activity

  1. Like
    HJSC 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
  2. Like
    HJSC reacted to ricktendo in [Rebuilt] .NET Framework 4.5.2 Full x86/x64 (9-19-2014)   
    Updated
    Add: 2789648
  3. Like
    HJSC reacted to ricktendo in [Slim] .NET Framework 4.6.1 Full x86/x64 (2-27-2016)   
    Slim Microsoft .NET Framework 4.6.1 Full x86/x64
    Slim Microsoft .NET Framework 4.6.1 Full x86/x64 Incl. Language Packs (ar cs da de el es fi fr he hu it ja ko nl no pl pt-BR pt-PT ru sv tr zh-Hans zh-Hant)
     

    Some tools and resources for (re)creating your own slim (intl) installer
    http://support2.microsoft.com/hotfix/KBHotfix.aspx?kbnum=1234567  
  4. Like
    HJSC reacted to ricktendo in [AIO] Microsoft Visual B/C++/F#/J# Redistributable x86/x64   
    KB2723430 VC++ 2010 files have been updated from v10.0.40219.434 to v10.0.40219.436
     
    Server might be down right now
  5. Like
    HJSC reacted to LiveFreeDead in [AIO] Microsoft Visual B/C++/F#/J# Redistributable x86/x64   
    I was getting annoyed at the error message's not allowing it to silently run this package so I made an autoit script to fix it:
     
     
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****#AutoIt3Wrapper_UseX64=n#AutoIt3Wrapper_Res_requestedExecutionLevel=requireAdministrator#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****#cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.8.1 Author:         myName Script Function:    Template AutoIt script.#ce ----------------------------------------------------------------------------#RequireAdmin; Script Start - Add your code below here$Runs = Run (@ScriptDir&"\VBCFJRedist_AIO_x86_x64-2013-02-07.exe /y", @ScriptDir)While ProcessExists($Runs)    If WinExists("Windows Installer") Then        ControlClick("Windows Installer", "OK", "[CLASS:Button; INSTANCE:1]")    EndIf    Sleep(100)WEnd

    Thanks rick, I read that using .msi instead of the .exe is what causes the errors to show (no way to disable them), but using the .msi is faster and smaller, so with protection agains it stopping I am happy again, this only continues when an error is found so if you manually uninstall the packages first it'll work as intended still, just in case someone needs this totally silent.
  6. Like
    HJSC 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
    HJSC reacted to ricktendo in [AIO] Microsoft Visual B/C++/F#/J# Redistributable x86/x64   
    Yep, sounds like photoshop did not check if it was already installed and installed it anyways (if it did you will get this error)
  8. Like
    HJSC reacted to ricktendo in [AIO] Microsoft Visual B/C++/F#/J# Redistributable x86/x64   
    Yes future "security" updates will be installed, but for the most part many vc updates are not usually available on WU
  9. Like
    HJSC reacted to ricktendo in [AIO] Microsoft Visual B/C++/F#/J# Redistributable x86/x64   
    Info: Microsoft Visual C++ 2005/2008/2010/2012/2013/2014/2015, Microsoft Visual F# 2.0, Microsoft Visual J# 2.0 redistributable packages (with setup junk removed.) Also includes "extra" Visual Basic and C runtimes (see list bellow)

    Same as above but excludes F# & J# runtimes
     

    Info: Microsoft Visual C++ 2005/2008/2010/2012/2013 redistributable packages (with setup junk removed.) Also includes "extra" Visual Basic and C runtimes (see list bellow)
    Some tools and resources for (re)creating your own installer
     
    Visual AIO SFX Maker v6 (installer repacker):http://adf.ly/1713566/visualsfxSilent "No GUI" SFX alternative v4:http://adf.ly/1713566/visualsfxngKB2538242 MST Windows Update fix v1.7:http://adf.ly/1713566/wufix5mstKB2538243 MST Windows Update fix v3:http://adf.ly/1713566/wufix8mstMsiTran.Exe -a <transform>.MST <installer>.MSI:http://adf.ly/1713566/msitranSlim down your vcredist 2005/2008 installers:http://adf.ly/1713566/msislim"Extra" Visual Basic/C runtimes installer sourceshttp://adf.ly/1713566/vbcsourceIf you cant find a hotfix try using the KB number w/ this URLhttp://support2.microsoft.com/hotfix/KBHotfix.aspx?kbnum=1234567 Hotfix list
     
     
     
    Also includes:
     
     
    name version/*-- Microsoft Visual Basic Runtimes -----------------------------------*/ comct232.ocx 6.0.98.39comct332.ocx 6.7.0.9839comctl32.ocx 6.0.98.39comdlg32.ocx 6.1.98.41dblist32.ocx 6.1.98.39mci32.ocx 6.1.98.39mscomct2.ocx 6.1.98.39mscomctl.ocx 6.1.98.39mscomm32.ocx 6.1.98.39msdatgrd.ocx 6.1.98.39msdatlst.ocx 6.1.98.39msflxgrd.ocx 6.1.98.39mshflxgd.ocx 6.1.98.39msinet.ocx 6.1.98.39msmask32.ocx 6.1.98.39msstdfmt.dll 6.1.98.39msstkprp.dll 6.1.98.39mswinsck.ocx 6.1.98.39 picclp32.ocx 6.1.98.39richtx32.ocx 6.1.98.39sysinfo.ocx 6.1.98.39tabctl32.ocx 6.1.98.39vb40032.dll 4.0.29.22/*-- Microsoft Visual Basic Runtimes (16bit) ----------------------------*/vb40016.dll 4.0.24.22vbrun100.dll <none>vbrun200.dll 2.0.9.8vbrun300.dll 3.0.5.38/*-- Microsoft Visual Basic Virtual Machine -----------------------------*/msvbvm50.dll 5.2.82.44/*-- Microsoft Visual C Runtimes ----------------------------------------*/atl70.dll 7.0.9975.0atl71.dll 7.10.6119.0mfc70.dll 7.0.9975.0mfc70chs.dll 7.0.9975.0mfc70cht.dll 7.0.9975.0mfc70deu.dll 7.0.9975.0mfc70enu.dll 7.0.9975.0mfc70esp.dll 7.0.9975.0mfc70fra.dll 7.0.9975.0mfc70ita.dll 7.0.9975.0mfc70jpn.dll 7.0.9975.0mfc70kor.dll 7.0.9975.0mfc70u.dll 7.0.9975.0mfc71.dll 7.10.6119.0mfc71chs.dll 7.10.6119.0mfc71cht.dll 7.10.6119.0mfc71deu.dll 7.10.6119.0mfc71enu.dll 7.10.6119.0mfc71esp.dll 7.10.6119.0mfc71fra.dll 7.10.6119.0mfc71ita.dll 7.10.6119.0mfc71jpn.dll 7.10.6119.0mfc71kor.dll 7.10.6119.0mfc71u.dll 7.10.6119.0msvci70.dll 7.0.9955.0msvcp70.dll 7.0.9466.0msvcp71.dll 7.10.6052.0msvcr70.dll 7.0.9981.0msvcr71.dll 7.10.7031.4msvcrt10.dll <none>  
  10. Like
    HJSC reacted to ricktendo in [Rebuilt] .NET Framework 4.5.2 Full x86/x64 (9-19-2014)   
    Rebuilt Microsoft .NET Framework 4.5.2 Full x86/x64 Download: http://adf.ly/1713566/dotnet451rpck
    Size: 97.6 MB
    MD5: cd10ddbc64b06f57d143d5c11b6ea47e
    Rebuilt Microsoft .NET Framework 4.5.2 Full x86/x64 Incl. Language Packs (ARA CHS CHT CSY DAN DEU ELL ESN FIN FRA HEB HUN ITA JPN KOR NLD NOR PLK PTB PTG RUS SVE TRK)
    Download: http://adf.ly/1713566/dotnet451intrpck
    Size: 284 MB
    MD5: 06cd3fc0fc190631297c969ddaf713ac
    Individual Rebuilt Language Packs:



    Changelog:



    Hotfix list:



  11. Like
    HJSC reacted to Geej in Foxit Reader v6.1.1.1031   
    Foxit Reader v6.1.1.1031 (final update by me)





    ********* About this addon package ************************
    Foxit Reader comes with the following characteristics:
    No ASK toolbar no V9.com No Foxit Search Bar Only 1 Start Menu shortcut Removed Add Banner in foxit reader window. Associate as default PDF file handler English, neutral, German, Spanish, French, Dutch, Italian, Portuguese_Brazilian & Turkish. (unneeded lang files are automatically removed) Default skin is blue* Included plugins: Firefox Plugin & Foxit Spell Checker. Includes PDF virtual printer  
    To change skin/lang/Toolbar, see instruction in [Remark] section of inf

    To view PDF web address in browser, navigate to this address in IE/Firefox/Opera/SeaMonkey/Pale Moon:
    http://cdn04.foxitsoftware.com/pub/foxit/manual/en_us/FoxitReader54_Manual.pdf
    You should be able to view the pdf file within it's browser, instead of prompt to download or open with Foxit Reader.

    Spanish version hosted by luis here


    FoxitReader6.1.1.1031_Addon.cab
    Size: 54.86 Mb (57,752,117 bytes)
    MD5: 4EEC9D57831503D8F6413DE050163AB4

    Compatible with win7 x86 (just extract the .cab to get the silent installer.exe)





  12. Like
    HJSC reacted to user_hidden in [Addon] Microsoft Silverlight 5.1.30514.0   
    Microsoft Silverlight 5.1.30514.0
    You can integrate this using RVMi v1.6.1 b2.1 and higher or nlite 1.4.9.1 or higher
    T13-SVCpack Silent Addon
    Link: Addon_Microsoft_Silverlight_5.1.30514.0.7z
    CRC-32: 42e486dd
    MD5: b37bf7125823f5aceded589be4fe11a5
    SHA-1: f208cd5c03a19161dfde96398277452e87b64a56
    Date: 20140723
    OS: WindowsXP (x86)
    Size: 6.8 MB
×
×
  • Create New...