Posts posted by alfreire
-
-
-
Posted ·
Edited by alfreire
[Repack] Internet Download Manager 6.23 build 11... ;-)
-Multilanguage (Installer only English/Spanish)
-Automatic install Firefox Plugin... (Need restart Firefox if is running...)
-For correct Uninstall, choose Reboot manually at the end...
/silent or /verysilent to silent install...
Regards...;-)
Mega:
-
-
Posted ·
Edited by alfreire
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:
Quote -
-
updated to 6.21 build 16 final and added a Windows-8 style toolbar buttons pack for IDM, in v2.2
-Shortcut in desktop have bad syntax "C:\Program Files (x86)\Internet Download Manager\]\IDMan.exe"...
-Program group haven't shrotcuts...
-First run have problem with plugin integration into browsers...
Regards... ;-)
-
Edited by alfreire
I don't use that particular MSI installer, I use the business version (because it has no update services running in the bg)
http://www.skype.com/go/getskype-msi
That being said, updated
The link goes to the previous version 6.21...
Regards & thanks... ;-)
-
-
-
-
-
Edited by alfreire
There is an error. The setup runs into maintenance mode every time. Im currently fixiing it.===EDIT ON 13 October 2014 7:45 PM IST Time (Iam an Indian)===
And, now it's fixed! Uploaded the new fixed version.
This one's 100% working - tested in my computer(running windows 8) and also in a virtual machine (runnning windows 7)
Not works for me... I try install in normal mode and basic silent... My system is Win7 x64 spanish (in VBox)...
Regards... ;-)
-
Edited by alfreire
alfeire, Could you please upload the Inno Script file so that I can make a few changes in it?
Yes, here it is...
Regards... ;-)
;InnoSetupVersion=5.5.0 (Unicode)[Setup]#define AppName "Internet Download Manager"#define AppVersion "6.21b11"#define AppDir "Internet Download Manager"#define AppExe "IDMan.exe"AppName={#AppName} by -=alfreire=-AppVerName={#AppName} v{#AppVersion}AppVersion={#AppVersion}AppPublisher=Tonec IncAppPublisherURL=http://www.internetdownloadmanager.comAppSupportURL=http://www.internetdownloadmanager.com/support/index.htmlAppUpdatesURL=http://www.internetdownloadmanager.com/download.htmlAppMutex={#AppName}DefaultDirName={pf}\{#AppDir}DefaultGroupName={#AppName}UninstallDisplayIcon={app}\Uninstall.exeOutputBaseFilename=IDM.v{#AppVersion}.MultiLang.SetupOutputDir=.Compression=lzma2/ultraInternalCompressLevel=ultraSolidCompression=trueSetupIconFile=embedded\Setup.icoDisableDirPage=autoDisableProgramGroupPage=autoAllowNoIcons=yesWizardImageFile=embedded\WizardImage.bmpWizardSmallImageFile=embedded\WizardSmallImage.bmp[Files]Source: "{app}\*"; DestDir: "{app}"; Flags: ignoreversion createallsubdirs recursesubdirs[Run]Filename: "{app}\{#AppExe}"; Description: "{cm:LaunchProgram,{#AppName}}"; Flags: postinstall skipifsilent nowait[UninstallRun]Filename: "{app}\Uninstall.exe"; [Icons]Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExe}";Name: "{group}\Uninstall IDM"; Filename: "{uninstallexe}"; IconFilename: "{app}\Uninstall.exe"; Name: "{group}\Web IDM"; Filename: "http://www.internetdownloadmanager.com"; Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExe}"; Tasks: desktopicon; Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#AppName}"; Filename: "{app}\{#AppExe}"; Tasks: quicklaunchicon; [Tasks]Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; OnlyBelowVersion: 0.0,6.01; Flags: uncheckedName: "pintaskbar"; Description: "{cm:PinToTask,{#AppName}}"; GroupDescription: "{cm:AdditionalIcons}"; MinVersion: 0.0,6.1; Flags: unchecked[UninstallDelete]Type: dirifempty; Name: "{app}"; Type: files; Name: "{commondesktop}\Internet Download Manager.lnk";Type: filesandordirs; Name: "{group}\Internet Download Manager";[CustomMessages]PinToTask=Pin %1 to TaskBarEnglish.PinToTask=Pin %1 to TaskBar English.NameAndVersion=%1 version %2English.AdditionalIcons=Additional icons:English.CreateDesktopIcon=Create a &desktop iconEnglish.CreateQuickLaunchIcon=Create a &Quick Launch iconEnglish.ProgramOnTheWeb=%1 on the WebEnglish.UninstallProgram=Uninstall %1English.LaunchProgram=Launch %1English.AssocFileExtension=&Associate %1 with the %2 file extensionEnglish.AssocingFileExtension=Associating %1 with the %2 file extension...English.AutoStartProgramGroupDescription=Startup:English.AutoStartProgram=Automatically start %1English.AddonHostProgramNotFound=%1 could not be located in the folder you selected.%n%nDo you want to continue anyway?Spanish.PinToTask=Anclar %1 a la Barra de TareasSpanish.NameAndVersion=%1 versión %2Spanish.AdditionalIcons=Iconos adicionales:Spanish.CreateDesktopIcon=Crear un icono en el &EscritorioSpanish.CreateQuickLaunchIcon=Crear un icono de &Inicio RápidoSpanish.ProgramOnTheWeb=%1 en la WebSpanish.UninstallProgram=Desinstalar %1Spanish.LaunchProgram=Ejecutar %1Spanish.AssocFileExtension=&Asociar %1 con la extensión de archivo %2Spanish.AssocingFileExtension=Asociando %1 con la extensión de archivo %2...Spanish.AutoStartProgramGroupDescription=Inicio:Spanish.AutoStartProgram=Iniciar automáticamente %1Spanish.AddonHostProgramNotFound=%1 no pudo ser localizado en la carpeta seleccionada.%n%n¿Desea continuar de todas formas?[Languages]Name: "English"; MessagesFile: "embedded\English.isl";Name: "Spanish"; MessagesFile: "embedded\Spanish.isl"; [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 API#ifdef UNICODE #define A "W"#else #define A "A"#endiffunction LoadLibrary(lpFilename : String) : LongInt;external 'LoadLibrary{#A}@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 'LoadString{#A}@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('{app}'), '{#AppExe}'); end;end;
-
-
Edited by alfreire
does that idm repack include crack and registry entry?
Cracking not allowed in this forum, you can be banned... Crack or Serial are not included in installer...
Read here: http://www.wincert.net/forum/topic/2-wincertnet-forum-rules/
1. This is not a warez site! Links or Requests to warez and/or illegal material (porn, cracks, serials, braindumps, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated. Advertising is strongly forbidden here. If you ignore any of the aforementioned you will be banned without previous notice.
Regards... ;-)
-
Edited by alfreire
Hi, @Ricktendo http://www.wincert.net/forum/user/29-ricktendo/, could you pleas make a silent repack of Internet Download Manager? Here's the link:
http://mirror2.internetdownloadmanager.com/idman621build11.exe?b=1&filename=idman621build11.exe
I want to silently install this software, but even after a lot of research in google, I couldn't find a silent install. Yes, there was a silent repack made by someone: http://kickass.to/internet-download-manager-6-21-build-10-silent-install-kpojiuk-t9573023.html but there was some error (IDM integration error), it was saying that some spyware has damaged IDM intgration to browsers; this means that there is some crapware or something in it.
So I want a proper repack, and you, Rick, you are the only person I know who can help me. So please repack it also with a silent install switch!
Thank You,
niTe_RiDeR
Here it is... IDM 6.21 build 11 Multilanguage
To silent install use /silent or /verysilent... Installer only English/Spanish...
Regards... ;-)
-
Edited by alfreire
You can use USB Driverpack updated (40. DP_xUSB_14101.7z) from here:
http://driveroff.net/sam/http://www.unibytes.com/folder/ILRmHpt6fPUBhttp://turbobit.net/download/folder/1532984http://www.gigabase.com/folder/cbcv8AZeKsHjAkenvVrjPQBBhttp://www.share4web.com/folder/byq7Y5S8Cqldm1b_RjSwulE8rRePL.RY
Regards... ;-)
-
Edited by alfreire
Slightly improved code...Change this:
function 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
to this:
#ifdef UNICODE #define A "W"#else #define A "A"#endiffunction LoadLibrary(lpFilename : String) : LongInt;external 'LoadLibrary{#A}@kernel32.dll stdcall delayload'; function FreeLibrary(hModule : LongInt) : BOOL;external 'FreeLibrary@kernel32.dll stdcall delayload';function LoadString(hInstance:LongInt; uId:UINT; lpBuffer:String; nBufferMax:Integer) : Integer;external 'LoadString{#A}@user32.dll stdcall delayload';
to automatic Unicode/No Unicode library selection... not my code, I found searching in internet... (I don't know programming... X-D)
Regards... ;-)
-
Edited by alfreire
who can repack free antivirus software here? i like avira free antivirus
who can make avira free antivirus small size remove junk and useless component removed? LoL ty
Hi... try this: (not installed junk)
https://mega.co.nz/#!d1IzRJia!eJmE1SeQDbLy8pwlhghrldn8IDhbseX412AC9lgwmzQ
Regards... ;-)
-
Skype 6.20.32.104
Regards... ;-)
Here is silent install
https://www.firedrive.com/file/60E4A044C05174AF
Thanks... this post is for [Tweaked] not for Silent...
Regards... ;-)
-
-
would be nice to have:
Potplayer x86 and x64 with default English language. For silent installation.
Hi... Try this:
https://mega.co.nz/#!Ywh2RZJD!sdr4xPLKvDSGQI7Js5SKjbop1B6W1w841-3VhvRslv0
It's x86/x64 English default, but no extra codecs, integrations, or associations are included in installer, you can associate and integrate by settings...
Silent switch is /silent or /verysilent...
Regards... ;-)
-
-
[Repack] Avast! Free Antivirus v9.0.2021.515 RePack with Silent Install Switch
in Installer Repacks
Works perfect, thank you...
Regards... ;-)