Jump to content

ricktendo

Members
  • Posts

    8,715
  • Joined

  • Last visited

  • Days Won

    444

Reputation Activity

  1. Like
    ricktendo got a reaction from alfreire in [Repak] Microsoft Silverlight 5.1.41212   
    Updated
  2. Like
    ricktendo got a reaction from schitthoch2 in [Repak] Microsoft Silverlight 5.1.41212   
    KB3056819: Security update for Microsoft Silverlight 5
    About: Took the Silverlight MSI and integrated/updated with the MSP (so you don't get the extra uninstall entry in "View installed updates") and rebuilt into a single package
    x86: http://my.repacks.space/Silverlight.msi
    Size: 7.68 MB
    MD5: d10f3e54d720e4a30ed83523f12e5ca0
    x64: http://my.repacks.space/Silverlight_x64.msi
    Size: 15.1 MB
    MD5: bee00e0c4273a01353731cbd9de41023
  3. Like
    ricktendo got a reaction from Flashman 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  
  4. Like
    ricktendo got a reaction from ylx2014 in [Proper] Microsoft DirectX Redistributable (June 2010)   
    Microsoft DirectX end-user Redistributable (June 2010)
    Version: 9.29.1974
    Supported operating systems: Windows 8, Windows 7, Windows Vista, Windows Server 2012/2008+R2/2003 SP1+, Windows XP SP2+
    Website: http://www.microsoft.com/en-us/download/details.aspx?id=8109
     
     
    x86/x64: removed
    MD5: 2ef61d694dbcb3b3d0f47f1bbc0ca831
    Size: 90.7 MB
    x86: removed
    MD5: 0f51f57cff0bf51aa368f90da1c8b525
    Size: 42.8
  5. Like
    ricktendo got a reaction from Docthal 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>  
  6. Like
    ricktendo got a reaction from dingo 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  
  7. Like
    ricktendo got a reaction from Kees030 in [Slim] .NET Framework 4.6.1 Full x86/x64 (2-27-2016)   
    4.6 updated to RC
  8. Like
    ricktendo got a reaction from ozmania in [Slim] .NET Framework 4 Full x86/x64 (1-10-2016)   
    Some tools and resources for (re)creating your own slim (intl) installer
     
    http://support2.microsoft.com/hotfix/KBHotfix.aspx?kbnum=1234567  
    Changelog:
     
     
     
    Hotfix list:
     
     
     
  9. Like
    ricktendo got a reaction from Piet in [Slim] .NET Framework 4.6.1 Full x86/x64 (2-27-2016)   
    4.6 updated to RC
  10. Like
    ricktendo got a reaction from halomaster in [Proper] Microsoft DirectX Redistributable (June 2010)   
    Link was to older file, (fixed) now replaced with current
  11. Like
    ricktendo got a reaction from alfreire in [Repak] Adobe Shockwave Player 12.2.2.172   
    Updated
  12. Like
    ricktendo got a reaction from SuperLOL in [Legacy] .NET Framework AIO for XP x86 (1-10-2016)   
    Redid installers once more, I think I finally solved the problem with 2894842
  13. Like
    ricktendo got a reaction from SuperLOL in [Legacy] .NET Framework AIO for XP x86 (1-10-2016)   
    1.1: 3037572
    2.0: 3037577, 3048798
    4.0: 3037578
  14. Like
    ricktendo got a reaction from alfreire in [Legacy] .NET Framework AIO for XP x86 (1-10-2016)   
    1.1: 3037572
    2.0: 3037577, 3048798
    4.0: 3037578
  15. Like
    ricktendo got a reaction from Thedivorcee in [Repak] Universal Extractor 1.9.16.202   
    Universal Extractor
    Features: Includes updates and program improvements by gora, SendTo shortcut is on by default, Quick Launch only offered to Vista or bellow
    Download:
    Size: 7.55 MB
    Website: http://legroom.net/software/uniextract
    Gora: http://gora.7zsfx.info/addons
     
    ComponentList = 'docs - Documentation and licensing information | lang - Language files for internationalization support | kgb - Support for KGB files | pea - Support for Pea files | sit - Support for StuffIt files';TaskList = 'associate - Enable Explorer context menu integration | associate\files - Add UniExtract Files... to context menu | associate\here - Add UniExtract Here to context menu | associate\subdir - Add UniExtract to Subdir to context menu | associate\force - Force association with all supported archive formats | modifypath - Add Universal Extractor to your system path | sendtoicon - Create a SendTo icon | desktopicon - Create a Desktop icon | quicklaunchicon - Create a Quick Launch icon';ParameterList = '/APPENDEXT - Enables using TrID to identify and append file extensions to unknown files | /NOHISTORY - Disables archive and directory history functionality | /NOREMOVEDUPE - Duplicate files extracted by InstallExplorer will not be removed | /NOREMOVETEMP - Temporary files extracted by WUN will not be removed | /NOWARNEXECUTE - Do not display warning prompt before executing files for extraction | /NOUPDATE - Disables automatic update functionality';
  16. Like
    ricktendo got a reaction from moszter 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>  
  17. Like
    ricktendo got a reaction from widow2 in [Proper] Microsoft DirectX Redistributable (June 2010)   
    Microsoft DirectX end-user Redistributable (June 2010)
    Version: 9.29.1974
    Supported operating systems: Windows 8, Windows 7, Windows Vista, Windows Server 2012/2008+R2/2003 SP1+, Windows XP SP2+
    Website: http://www.microsoft.com/en-us/download/details.aspx?id=8109
     
     
    x86/x64: removed
    MD5: 2ef61d694dbcb3b3d0f47f1bbc0ca831
    Size: 90.7 MB
    x86: removed
    MD5: 0f51f57cff0bf51aa368f90da1c8b525
    Size: 42.8
  18. Like
    ricktendo got a reaction from steven4554 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  
  19. Like
    ricktendo got a reaction from HJSC in [Tweaked] Skype 7.18.32.111 (Multilanguage)   
    Thanks for the heads up, updated
  20. Like
    ricktendo got a reaction from alfreire in [Tweaked] Skype 7.18.32.111 (Multilanguage)   
    Thanks for the heads up, updated
  21. Like
    ricktendo got a reaction from el_espaniol in [Enero] Update Pack Latino v2.0.6   
    Disculpe mi ausencia, para contestarles no creo que voy a poder continuar actualizando el update pack
    WeBeRiO gracias por todo tu apoyo todos estos años
    el_espaniol, tienes problemas con el de Enero?
    De todas formas aquí tienes la versión previa
    http://www.mediafire.com/download/9huuz7qn458fd5t/Ricks_XPsp3esUpdatePack2.0.5.7z
  22. Like
    ricktendo got a reaction from niTe_RiDeR_Pr0 in [Legacy] .NET Framework AIO for XP x86 (1-10-2016)   
    Updated
    3.5: KB3031991
    4.0: KB3031985
  23. Like
    ricktendo got a reaction from alfreire in [Tweaked] Skype 7.18.32.111 (Multilanguage)   
    Updated, also added option to start with windows option to installer (default is disabled, commandline is RUN=1 to enable)

  24. Like
    ricktendo got a reaction from cyberloner in [Repak] VMware Workstation Lite 12.1.0-3272444   
    Updated
  25. Like
    ricktendo got a reaction from HJSC in [Tweaked] Skype 7.18.32.111 (Multilanguage)   
    Updated, also added option to start with windows option to installer (default is disabled, commandline is RUN=1 to enable)

×
×
  • Create New...