Jump to content

Repack installer request?


oguz

Recommended Posts

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... ;-)

 

 

tLgdPHL.jpg

Edited by alfreire
Link to comment
Share on other sites

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
Link to comment
Share on other sites

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
Link to comment
Share on other sites

@alfreire

Just created my own RePack of IDM v6.21b1, without the help of your repack. Its not an Inno Setup, neither did I use your script. here is my own version, created by me independently, with stylish GUI. It's an Advanced Installer project.

http://www.wincert.net/forum/topic/12694-repackinternet-download-manager-v62111-with-silent-install-switch/

I didnt even know that RePacking IDM was possible at the beginning :unsure: .  But after your RepAck then I tried and it worked! ;)  :) :

 

BTW, your Inno Setup is locked version (unable to extract even with InnoUnp & UniExtractor). How did you do it? What tool did you use?

Edited by niTe_RiDeR_Pro
Link to comment
Share on other sites

 

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... ;-)

 

yupCZ2E.jpg

 

 

How about my Avast Free antivirus RePack with stylish GUI: http://www.wincert.net/forum/topic/12693-repack-avast-free-antivirus-v902021515-repack-with-silent-install-switch/

Link to comment
Share on other sites

The new java 8 is a tough one to repack, the installer has changed significantly and I have not been able to figure it out

It's easy. let me tell you what I did:

 

I first downloaded the exe. Ran it. Then I found that it extracts the msi to the following folder: %USERPROFILE%\AppData\LocalLow\Sun\Java\jre1.8.0_20.

Then I extracted the msi using MsiX extraction method in UniExtractor. In the extracted files, there is a file named: Binary.installerexe. Rename the file to Binaryinstaller.exe. Now extract files from the exe using 7-zip. Here it is! Now here are the files. Now only you have to do is to repack them.

NOTE==> The program files are only the 2 folders 'bin' and 'lib'. The other files like COPYRIGHT, LICENSE, README, release, etc are useless.

 

I also found out that the installer is an InstallShield Wizard. 

So, to repack it, you can either import the main msi(which extracts to the AppData\LocalLow\Sun\Java\jre1.8.0_20 folder) in Advanced Installer and then add the 7-zip extracted files(as Advanced Installer doesnt automatically detect the program files)    OR      Directly edit/import the msi using InstallShield.

Edited by niTe_RiDeR_Pro
Link to comment
Share on other sites

  • 1 month later...

Could someone make a repack of the newest versions MagicISO and MagicDisc with an option for silent install?

 

HashTab (also with an option for silent install) would also be nice because the addon in the Win Toolkit section isn't working for me.

 

Why do you want a repack for HashTab? It also has a silent switch (/S), and also there is a wintoolkit addon for hashtab.  :icon_cool:

Link to comment
Share on other sites

 

Why do you want a repack for HashTab? It also has a silent switch (/S), and also there is a wintoolkit addon for hashtab.   :icon_cool:

 

OK then. Just a repack of MagicISO and MagicDisc then.

What do you mean, do you want a repack of both of them together?

 

I can make it for ya ;)

Edited by niTe_RiDeR_Pro
Link to comment
Share on other sites

 

Why do you want a repack for HashTab? It also has a silent switch (/S), and also there is a wintoolkit addon for hashtab.  :icon_cool:

 

OK then. Just a repack of MagicISO and MagicDisc then.

 

 

Here you go. http://www.wincert.net/forum/topic/12799-magiciso-maker-v55build-281-magicdisc-v27106-repack/

Link to comment
Share on other sites

 

Why do you want a repack for HashTab? It also has a silent switch (/S), and also there is a wintoolkit addon for hashtab.  :icon_cool:

HashTab has a normal setup and a commercial setup. Which one has the silent switch?

 

Btw, if my reply on the topic itself wasn't even enough, thanks for the repack. I really appreciate it.

 

You're welcome ;)

I dont know, but I download from here: http://www.softpedia.com/get/System/File-Management/HashTab.shtml

Link to comment
Share on other sites

 

 

@niTe_RiDeR_Pro

Could you make latest nvidia driver x64 less size plsss  :crying_anim02:

http://www.guru3d.com/files-get/geforce-344-75-whql-driver-download,2.html

Will try, currently downloading (Data Usage Limit over, currently at 56KB/sec... :(

 

Thanks so much my friend  :crying_anim02: god bless you  :crying_anim02:

 

Sorry, not possible :(

Link to comment
Share on other sites

  • 2 weeks later...
  • 4 weeks later...
  • 4 weeks later...

hello,

 

Is it possible to make one from unchecky please ?

http://unchecky.com/files/unchecky_setup.exe

 

Thank you.

Here you go, repack of unchecky v0.3.6 beta: http://www.wincert.net/forum/topic/12960-unchecky-v036-beta/

BTW the silent install switch of the original installer is: -install. Help dialog box switch: -?

 

Cheers & Regards :)

Edited by niTe_RiDeR_Pro
Link to comment
Share on other sites

Here you go: Intel PROSet + Network Drivers Pack for Windows 7 - Dual x86-x64 RePack

Download: https://mega.co.nz/#!sxhliIhR!lDkc1wQiIxO6d3VQbJvcgyguFXksd9yUyCJNTUXF1QE

File Name: Intel-PROSet+NetworkDrivers-Dual-RePack.exe

File Size: 28.9 MB (303,99,855 bytes)

MD5: e3af75c3822560c9a304e1706298c31b

SHA-256: c5aa1f178b8feddee4ca3f8b9d55bb56a221e464d57696c7e91a84e14f29eccd

Command-Line Parametershttp://pastebin.com/DXBR4HjP

Intel products supported by this programhttp://pastebin.com/T2hxCTyT

Details: Installs base drivers, Intel® PROSet Software for Windows* Device Manager, advanced networking services (ANS) for teaming and VLANs, and SNMP for Intel® Network Adapters for Windows 7. This is dual x64-x86 repack, it automatically selects x86 or x64 setup according to system architecture. This repack is compressed, to save 25.4MB. :)

Intel DownloadCenter Website: https://downloadcenter.intel.com/Detail_Desc.aspx?DwnldID=18713

VirusTotal.com Scan Report: {Currently Scanning}

 

Cheers & Regards  :icon_cool:

Edited by niTe_RiDeR_Pro
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...