Jump to content

alfreire

Members
  • Posts

    314
  • Joined

  • Last visited

  • Days Won

    9

Reputation Activity

  1. Like
    alfreire got a reaction from SunLion in [inno setup] A way to pin a shortcut onto taskbar in code   
    If I'm not mistaken:
    [Code]varPinTaskBarCheck : TNewCheckBox;//the function is work well on Unicode Inno Setup, //if Non Unicode Inno Setup, one need to modify,//and I think you can do it!//Inno use Win32 APIfunction LoadLibrary(lpFilename : String) : LongInt;external 'LoadLibraryW@kernel32.dll stdcall delayload'; //if Non Unicode Inno Setup, use LoadLibraryAfunction FreeLibrary(hModule : LongInt) : BOOL;external 'FreeLibrary@kernel32.dll stdcall delayload';function LoadString(hInstance:LongInt; uId:UINT; lpBuffer:String; nBufferMax:Integer) : Integer;external 'LoadStringW@user32.dll stdcall delayload'; //if Non Unicode Inno Setup, use LoadStringA//here is the function//@param strPath The App's directory,//@param strApp The App's name//@example zylPinAppToTaskbar('c:\window', 'notepad.exe');procedure zylPinAppToTaskbar(strPath, strApp: string); var vShell, vFolder, vFolderItem, vItemVerbs: Variant; vPath, vApp: Variant; i: Integer; sItem: String; h: LongInt; szPinName: String; filenameEnd : Integer; filename : String; strEnd : String;begin SetLength(szPinName, 255); h := LoadLibrary(ExpandConstant('{sys}\Shell32.dll')); LoadString(h, 5386, szPinName, 255); FreeLibrary(h); strEnd := #0; filenameEnd := Pos(strEnd, szPinName); filename := Copy(szPinName, 1, filenameEnd - 1); if (Length(filename) > 0) then //WinXp or lower, no pin taskbar function begin vShell := CreateOleObject('Shell.Application'); vPath := strPath; vFolder := vShell.NameSpace(vPath); vApp := strApp; vFolderItem := vFolder.ParseName(vApp); vItemVerbs := vFolderItem.Verbs; for i := 1 to vItemVerbs.Count do begin sItem := vItemVerbs.Item(i).Name; if (sItem = filename) then begin // 63 63 72 75 6E 2E 63 6F 6D vItemVerbs.Item(i).DoIt; break; end; end; end;end; //You can use zylPinAppToTaskbar like thisprocedure CurPageChanged(CurPageID: Integer);begin //When Finished page is shown, call the function //You can also call is when the "Finish" button clicked. if CurPageID = wpFinished then begin if IsTaskSelected('pintaskbar') then zylPinAppToTaskbar(ExpandConstant('{sys}'), 'magnify.exe'); end;end;zylPinAppToTaskbar(ExpandConstant('{sys}'), 'magnify.exe');
     
    Regards... ;-)
  2. Like
    alfreire got a reaction from SunLion in [inno setup] A way to pin a shortcut onto taskbar in code   
    Hi... to help you better, what is the program, which you want make installer...?
    Regards... ;-)
  3. Thanks
    alfreire got a reaction from geodasoft in WinRAR SFX Maker 3.2   
    Thanks again...
    Regards... ;-)
  4. Like
    alfreire reacted to ricktendo in Unable to crearte a new Autounattend   
    You can take a look at my Autounattend.xml I have sanitized. it YOU just change the /IMAGE/INDEX Value to the number of the image you want to install in install.wim
    My XML does not automatically format your drive and install, it will however create a local administrator account and auto login once. It also creates and sets a new Ultimate Performance power plan and registers some of my shell extension DLLs (also schedule PC shutdown at 0400)
     
    <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <InputLocale>0409:00000409</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-US</UserLocale> <SetupUILanguage> <UILanguage>en-US</UILanguage> </SetupUILanguage> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/INDEX</Key> <Value>1</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> <UserData> <AcceptEula>true</AcceptEula> <FullName>Your Name Here</FullName> <Organization></Organization> <ProductKey> <Key></Key> </ProductKey> </UserData> </component> </settings> <!-- <settings pass="offlineServicing"> <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <EnableLUA>false</EnableLUA> </component> </settings> !--> <settings pass="specialize"> <component name="Microsoft-Windows-ErrorReportingCore" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DisableWER>1</DisableWER> </component> <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DisableFirstRunWizard>true</DisableFirstRunWizard> <Home_Page>about:Tabs</Home_Page> <SuggestedSitesEnabled>false</SuggestedSitesEnabled> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ComputerName>Name-PC</ComputerName> </component> <component name="Microsoft-Windows-SystemRestore-Main" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DisableSR>1</DisableSR> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <InputLocale>0409:00000409</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> <UserLocale>en-US</UserLocale> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AutoLogon> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>Name Here</Username> <Password> <Value>3n(rypt3d</Value> <PlainText>false</PlainText> </Password> </AutoLogon> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>powercfg -h off</CommandLine> <Description>Disable Hibernate</Description> <Order>1</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61</CommandLine> <Description>Enable Ultimate Performance Mode</Description> <Order>2</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>powercfg -s e9a42b02-d5df-448d-aa00-03f14749eb61</CommandLine> <Description>Sets Ultimate Performance Mode Power Plan</Description> <Order>3</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>cmd /c for %i in (CmdOpen HashCheck) do if exist %SystemRoot%\System32\ShellExt\%i.dll regsvr32 /s /i:&quot;NoCopy&quot; /n %SystemRoot%\System32\ShellExt\%i.dll</CommandLine> <Description>Install ShellExt</Description> <Order>4</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>cmd /c for %i in (HashTab) do if exist %SystemRoot%\System32\ShellExt\%i.dll regsvr32 /s %SystemRoot%\System32\ShellExt\%i.dll</CommandLine> <Description>Register ShellExt</Description> <Order>5</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>schtasks /create /sc DAILY /tn &quot;Power Off&quot; /tr &quot;shutdown /s /t 60 /c \&quot;Your PC will shutdown in aproximately 1 minute.\&quot;&quot; /st 04:00 /f</CommandLine> <Description>Power Off Shedule</Description> <Order>6</Order> </SynchronousCommand> </FirstLogonCommands> <OOBE> <HideEULAPage>true</HideEULAPage> <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen> <HideOnlineAccountScreens>true</HideOnlineAccountScreens> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <ProtectYourPC>3</ProtectYourPC> </OOBE> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Description>Personal account</Description> <Group>Administrators</Group> <Name>Name Here</Name> <Password> <Value>3n(rypt3d</Value> <PlainText>false</PlainText> </Password> </LocalAccount> </LocalAccounts> </UserAccounts> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>cmd /c for %i in (CmdOpen HashCheck) do if exist %SystemRoot%\SysWOW64\ShellExt\%i.dll regsvr32 /s /i:&quot;NoCopy&quot; /n %SystemRoot%\SysWOW64\ShellExt\%i.dll</CommandLine> <Description>Install ShellExt</Description> <Order>1</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>cmd /c for %i in (HashTab) do if exist %SystemRoot%\SysWOW64\ShellExt\%i.dll regsvr32 /s %SystemRoot%\SysWOW64\ShellExt\%i.dll</CommandLine> <Description>Register ShellExt</Description> <Order>2</Order> </SynchronousCommand> </FirstLogonCommands> </component> </settings> <cpi:offlineImage cpi:source="wim:c:/img/sources/install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>  
  5. Like
    alfreire reacted to Legolash2o in Unattended Creator   
    This will let you have you Windows installed unattended. It's not the most complete unattended out there but it's better than nothing.

    Luckily most of this is self-explanatory, note it is recommended to leave 'Architecture' set to 'AnyCPU' which means it should work for both x64 and x86 installs.
    Main
    This is where you select the most important parts of the unattended file, like your name, serial key, time zone, screen resolution, updates, Auto-Logon, etc...
    Users
    The 'Users' tab lets your add pre-installed usernames on the computer, with passwords, user group, description, again self-explanatory.
    Editor (Advanced)
    It is recommended to leave this alone unless you know what you're doing, since W7T does not have full unattended features it allows users to add their own entries and save them to a file, it also allows the user to see what will be saved.
    Serial Keys
    These serial keys are known as 'Default Keys', they are basically just used to make the install unattended by leave Windows de-activated and keeps the 30 day trial.
    WARNING: If you use a Ultimate serial key then you must install Ultimate otherwise it will error.
    Integration
    You can use the 'WIM Manager' to integrate a unattended file.
  6. Like
    alfreire reacted to luis in Foxit Reader 10.0.0.35798 (Español Es) Silent   
    Foxit Reader 10.0.0.35798 - Español Es

     
    Este instalador silent de Foxit Reader tiene las siguientes caracteristicas:
    Sin ASK toolbar
    Sin V9.com
    Sin Foxit Search Bar
    Solo un acceso directo en el menu inicio
    Se removió el Add Banner en la ventana de Foxit Reader.
    Se asocia como manejador PDF predeterminado
    Skin Blue como predeterminado
    Modo Ribbon como predeterminado
    Impresora Virtual PDF Predeterminada
    En Español
    y con los siguientes Add-ons criticos:
    Javascript Support - Eastern Asian Language - Spell Checker - Firefox Plugin
     
    Nombre:      FoxitReader_Silent.exe
    Tamaño: 92.25MB
    CRC32:     85430A39
    MD5:       75347094799B5CDF1A6977E9542FF576
    SHA-1:     A5FC11CF444E0D617090A56C2B5A70BE0BF3784B

      Descargar de MediaFire
     
  7. Like
    alfreire got a reaction from -=R3p4ck3R=- in [Repack] Avast! Free Antivirus 2016 v12.3.3154 [Multilang]... ;-)   
    Hi... to find switches you must do this:
    Run offline installer in Virtual Machine and wait to the program is iddle (yo can see Google offfer window) Go to %temp% folder and copy _av_iup.tm~a*** folder to other location Finalize installation and then open C:\ProgramData\AVAST Software\Persistent Data\Avast\Logs\Setup.log file with Notepad Search for instup.exe" /edition (in line 9 +-) Command: '"C:\Users\Administrador\AppData\Local\Temp\_av_iup.tm~a00668\instup.exe" /edition:1 /ga_clientid:124e581d-f162-47a7-a518-f372afb62e8d /guid:21e128e4-bea6-4bc6-b618-a46c75ccefec /prod:ais /sfx /sfxstorage:C:\Users\Administrador\AppData\Local\Temp\_av_iup.tm~a00668' You can edit comand like this: You must run command from the folder that contain Avast files copied from temp folder Change C:\AvastFiles for your own folder edition:1 is Free version, you can discover the other version numbers by runing same steps installing other Avast versions Cheers... ;-)
  8. Like
    alfreire got a reaction from -=R3p4ck3R=- in [Repack] Avast! Free Antivirus 2016 v12.3.3154 [Multilang]... ;-)   
    [Repack] Avast! Free Antivirus 2016 v v12.3.3154 [Multilang]... ;-)
     
    -To Silent install use /silent or /verysilent...
    -No install Toolbars or other junks...
     
    Thanks to @darkblood by his installer & silent switches... http://www.wincert.net/forum/topic/12693-repack-avast-free-antivirus-v902021515-repack-with-silent-install-switch/#entry115021
     
    Regards... ;-)
     
    Download:
     

     

  9. Like
    alfreire reacted to Legolash2o in WinToolkit Development   
    For those having issues with WTK v1 and Windows 10. I've now removed the expiry limit entirely and uploaded the new version 1.5.4.9
  10. Like
    alfreire reacted to bphlpt in Silent Install Switches   
    To help you a little bit with silent installers, let's get a bit more basic first.
     
    When you install an app, any app,the default behavior is usually to do as you implied above - click Install, Next, Next, change any options you want, Next, ..., Finish, and sometimes Restart.  All very interactive, with maybe the chance to change options, etc.  All well and good, but there are two main problems folks have with that method: [1] Even if you were willing to accept all the default options you still had to do all of that darn clicking which was annoying and took extra time and raised the slight possibility for you to click the wrong thing in your haste, and [2] If you wanted to install applications during an OS install then you had to physically be there to do all that clicking which kind of defeated the whole "unattended" approach that you might want so you could have it all done for you while you were at lunch or something.  If you get rid of the need for the clicking, then the installation of the app is considered "unattended", but that doesn't mean it is necessarily silent.  You could still have progress screens show which would let you know how things are going with the install and so you could figure out about how much time is left with the app install IF you were familiar with that particular app's install process.  Some people like to see that.  Depending on the circumstances it gives sort of a sense of comfort that things are progressing normally.  If you get rid of the need to do the clicking and you also get rid of any display or interaction with the user whatsoever, then the installation is considered "silent".  If an app is silent it is automatically also unattended, but if it is unattended that does not necessarily mean it is silent, understand?
     
    For an app to be able to be installed either unattended or silently, it can be given that option by the app creator or by someone else who repacks it.  As I said above, the normal way to install an app is to click on "install" or "setup".  For an app to be installed either unattended or silently it usually has to be invoked through the command line, not by clicking on something.  These days, there are enough folks who want to install apps either unattended or silently, such as in a business situation installing many computers, that many app creators build those options in, but not all do.  Some apps do not have those options built in, and for those apps there is no tool, not even Win Toolkit, that can install that app as it is silently.  That is one reason why someone else might repack an app.  Another reason to repack an app is to slim it down by removing undesired toolbars, or desktop shortcuts, or unneeded runtimes, etc.  there are other reasons but that's enough for now.  Some apps are relatively easy to repack and others are a real bear to do, if they can be done at all.
     
    Anyway, just because an app can be installed unattended or silently does not mean that the commands to do so are exactly the same.  Just look at the first post and throughout this thread to see the different syntax and options necessary for the various apps to be installed silently.  IF the version of the app that you want to install can be installed silently, and IF the commands, or switches, to do so are known, and IF Lego has that information, and IF he has added it to the current version of Win Toolkit, then and only then will you probably be able to install that version of the app easily and silently using Win Toolkit's Silent Installers tab.  If you know the switches then you can manually add them even if Win Toolkit doesn't already know them, but that's one more thing you have to do manually.  And if the app does not have the option available then you're out of luck.  It will probably be easier and more reliable to install those apps manually after the OS is installed.
     
    That's a simplification of the situation, but I hope you now see that just because you want to install an app silently doesn't mean you can necessarily do so using Win Toolkit or any other tool.
     
    I'll let others respond to your particular questions.
     
    By the way, many folks still like to install apps silently even after the OS is installed just to avoid all of the darn clicking.
     
    Cheers and Regards
  11. Like
    alfreire reacted to Legolash2o in WinToolkit Development   
    There are too many issues in one thread to make sense of it all.
     
    xForce: on the 16th October post it seems like you was trying to integrate 32bit updates into an x64 OS.
    Thiersee: When you upgraded the image, did you save and unmount first or did you keep it mounted and then upgraded? 'Known Issues' updates usually prevent all other updates after it from being integrated properly. Seems to be common with stack updates. I think from memory you should integrate those first > save & unmount > all other updates, tweaks, etc..
    Sweden: I got an email that KB3197868 and other rollups did not get integrated after IE. All update rollups should now go into the 2nd phase (After IE). I'm required to check my emails ALL the time so that's how I found out about that issue.
  12. Like
    alfreire reacted to Fantazma in Silent Install Switches   
    Hello,
    I will update this post with silent install switches for:
    Foxit Reader -  /ForceInstall /VERYSILENT DESKTOP_SHORTCUT="0" MAKEDEFAULT="0" VIEWINBROWSER="0" LAUNCHCHECKDEFAULT="0" AUTO_UPDATE="0" /passive /norestart - From the original post Foxit reader silent install
    PDF Creator - /ForceInstall /VERYSILENT /LANG=English /COMPONENTS="program,ghostscript" /NORESTART - From original post: Pdf Creator silent install
    Other silent install switches for applications like Adobe, Filezilla, Skype etc can be find on this web.
    I Hope you found this replay useful
    Best regards
  13. Like
    alfreire got a reaction from endo in Inno Setup Bundle 6.2.2   
    Hi, friend... if you want you can add to your Bunndle Pack Reg to ISS v0.1.4 by Serega... you can download from here:
    Original file is in Russian, but I translate to English and Spanish... You can rename Convert_*.exe and Convert_*.ini to Convert.exe and Convert.ini (original names)...
    Works very good for me from a long time ago...
     
    Regards... ;-)
  14. Like
    alfreire reacted to niTe_RiDeR_Pr0 in [AiO RePack] Adobe Flash Player 22 + Shockwave Player 12.1 + Adobe AIR 22 (13-6-2016)   
    CATEGORY: Adobe Runtimes/AiOs
    ABOUT: Adobe Flash Player v21.0.0.242 & v22.0.0.168beta (PPAPI+NPAPI Plugin & ActiveX) + Shockwave Player 12.2.4.194 + Adobe AIR v21.0.0.215 & v22.0.0.149beta Runtimes --> All-in-One RePack. [13.6.2016]

    + +
     
     
    INFO/NOTES:
    You can select which runtimes to install in the setup wizard. Shockwave player original msi installer repacked by me to slim it up (better compression, LZMA2). Removed Shockwave Player 10 compatibility files. NEW: Also added beta version AiO, containing latest beta versions of the runtimes. Updated on 13 June 2016.  
    DOWNLOADS: 
    Stable version: https://mega.nz/#!poRT2LxJ!KnikLatcxudi2HO3snwUhXbf6N5VRAG2IsuEdgVveqU
    Beta version: https://mega.nz/#!15QxRRZJ!W2ROf4zgxhLi2rVtOzUdazdMGkKKxVQw-mu9hWINsFA
    Architecture: x86 & x64
    VirusTotal Scan Report: Will be uploading later, but I am sure it is 100% safe.

    Enjoy!
    Cheers...
  15. Like
    alfreire reacted to pennsylvaniaron in Donations   
    Liam:
    Another donation coming after I write this. WTK v.1 has been an indispensible tool for me. I also thank you for updating the wtk win 7 iso's for april 2016 and hope you will do so from time to time. would also be nice if some win 10 iso's are eventually forthcoming. Also hope that v.2 gets finished. keep up the great work. thx buddy...
    ron
  16. Like
    alfreire got a reaction from Mavericks Choice in Avira.Free v15.0.16.282 Free [English] [Silent]... ;-)   
    Avira.Free v15.0.16.282 Free [English] [Silent]... ;-)
    Download:
     
    Features:
    -Not install Toolbars or other junk...
    -To Silent Install use /silent or /verysilent switch...
     
    Cheers... ;-)
     

     

  17. Like
    alfreire got a reaction from Mavericks Choice in [Repack] VirtualBox v5.1.4-r110228 x86/x64 [Multilanguage]... ;-)   
    VirtualBox v5.1.4-r110228 x86/x64 [Multilanguage]... ;-)
     
    I extract *.msi installers from original *.exe Installer, Extension Packs, and Certificate to make x86/x64 installer... I hope it is useful...
    -Installer language: MULTILANGUAGE ...
    -VirtualBox: MULTILANGUAGE...
    -To silent install use /silent or /verysilent
     
    Changelog:
    https://www.virtualbox.org/wiki/Changelog Regards... ;-)
     
    Download:
     

     

     

  18. Like
    alfreire reacted to niTe_RiDeR_Pr0 in [Dual x86+x64 RePack] RT 7 Lite v2.6.0 - Windows 7 customization tool   
    RT Se7en Lite v2.6.0 Beta - x86 + x64 2-in-1 RePack [Installer]
    About RePack: Removed all other app languages except Spanish & English; & replaced old 7z.exe & 7z.dll with latest version (15.14). Setup size reduced from (total) 30.8 MB to (repack) 23.1 MB [7.7 MB decreased].

    Optional Command Line Switches:


    DOWNLOAD: https://mega.nz/#!8w4WxRJL!rIQRkahNv0CR9-loJO087rWwbVyN8m7w3VYNRXHv7_E
    File Name:  RT7Lite_2.6.0.Dual_RePack.exe 
    File Size: 23.1 MB 
    Enjoy!
    Cheers...
  19. Like
    alfreire got a reaction from niTe_RiDeR_Pr0 in [Repack] VirtualBox v5.1.4-r110228 x86/x64 [Multilanguage]... ;-)   
    Updated to v5.0.18-r106667...
    Regards... ;-)
  20. Like
    alfreire reacted to bphlpt in updat win toolkit   
    Good question.  We have to wait for Lego. We can only hope that he is just busy with school.
    Cheers and Regards
  21. Like
    alfreire reacted to niTe_RiDeR_Pr0 in [AiO RePack] Adobe Flash Player 22 + Shockwave Player 12.1 + Adobe AIR 22 (13-6-2016)   
    Hi everyone,
    Sorry for the huge delay. I am now back on track, from today I will be updating rapidly. Enjoy!
    New update coming today/tomorrow.
    Cheers & Regards
  22. Like
    alfreire reacted to niTe_RiDeR_Pr0 in [AiO RePack] Adobe Flash Player 22 + Shockwave Player 12.1 + Adobe AIR 22 (13-6-2016)   
    Updated to Shockwave Player v12.1.7.157
     
    Cheers & Regards.
  23. Like
  24. Like
    alfreire reacted to niTe_RiDeR_Pr0 in [RePack] ConvertXtoDVD v6.0.0.29   
    ConvertXtoDVD v6.0.0.29 - RePack by niT€_RiDeR_Pr0
    About RePack: Removed some (not-so-good) themes, some operation sounds (like burn complete sound, notification sound, etc.), all languages other than english, and improved/enhanced the compression (LZMA2).Nothing is added.
     
    Optional Command-Line Switches:
     
    DOWNLOAD: Mega | File Name:  ConvertXtoDVD_6.0.0.29_RePack.exe | File Name: 35.7 MB  | File Hashes: http://pastebin.com/jwcCn9qk
    Enjoy!
  25. Like
    alfreire reacted to niTe_RiDeR_Pr0 in [Repack] Java SE Runtime Environment 8.0.1210.13 [Revision 1]   
    Wow! Only repack in the forum to have this language! Thanks for adding an Indian language (the native language of the state where I am presently staying, Karnataka)
×
×
  • Create New...