FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Repacking APPS (https://fileforums.com/showthread.php?t=104101)

bundy-al 29-01-2021 07:54

Repacking APPS
 
Hi may I ask some questions here, I hope.
Is there also an Inno App creator made on this site ?
Everything I see is for Games.
Maybe someone has an App .iss script for me or a program to easily repack app's.

Greatz

Ele 29-01-2021 08:16

Quote:

Originally Posted by bundy-al (Post 490117)
Hi may I ask some questions here, I hope.
Is there also an Inno App creator made on this site ?
Everything I see is for Games.
Maybe someone has an App .iss script for me or a program to easily repack app's.

Greatz

You can see things only for games but you can also use it to repackage apps or whatever you want.

bundy-al 29-01-2021 09:41

Quote:

Originally Posted by Ele (Post 490119)
You can see things only for games but you can also use it to repackage apps or whatever you want.


Yes it might, but maybe someone has created an Inno program specifically for Repacking apps.
Most programs here are focused on Games.
Apps repacking is still a lot of work otherwise.
Thanks for your message.

Ele 29-01-2021 10:10

Quote:

Originally Posted by bundy-al (Post 490123)
Yes it might, but maybe someone has created an Inno program specifically for Repacking apps.
Most programs here are focused on Games.
Apps repacking is still a lot of work otherwise.
Thanks for your message.

When you focus on repackaging apps. I think you can use "Advanced Installer" instead. because it brings some facilities, especially for repackaging apps.

bundy-al 29-01-2021 10:46

Quote:

Originally Posted by Ele (Post 490124)
When you focus on repackaging apps. I think you can use "Advanced Installer" instead. because it brings some facilities, especially for repackaging apps.

You mean the app Advanced Installer by caphyon ?
Yes I know that one already, but I am trying with Inno setup.

KaktoR 29-01-2021 11:48

Well, what "features" do you need for a inno script for repacking apps?

bundy-al 29-01-2021 12:32

Quote:

Originally Posted by KaktoR (Post 490127)
Well, what "features" do you need for a inno script for repacking apps?

I was hoping for a program like this on the fileforums.com forum from user Suryam.
SICT(Simple Inno Creator Tool) It is A Tool Where You Can Create Your Own Repack With No Coding Just Compress And Compile And Then Done !

I am looking for a program or something to repack an app in an easy way.
I've done VLC media player now.
But I am also looking for .iss scripts of apps e.g. Winrar, Foxitreader etc. (just change it to the latest version and done).

Oops you are the creator of the app Custom Installer Ultimate v3.

Do you have something like this for making apps ?

Ele 29-01-2021 12:35

Quote:

Originally Posted by KaktoR (Post 490127)
Well, what "features" do you need for a inno script for repacking apps?

I think the usual stuff. like,
  • Creating some new registry for the relevant software.
  • Registering DLL files.
etc. :D

Ele 29-01-2021 12:41

Quote:

Originally Posted by bundy-al (Post 490129)
I was hoping for a program like this on the fileforums.com forum from user Suryam.
SICT(Simple Inno Creator Tool) It is A Tool Where You Can Create Your Own Repack With No Coding Just Compress And Compile And Then Done !

I am looking for a program or something to repack an app in an easy way.
I've done VLC media player now.
But I am also looking for .iss scripts of apps e.g. Winrar, Foxitreader etc. (just change it to the latest version and done).

Do you have anything maybe ?

You cannot just repack "VLC media player" without coding. This is because if you want a full-featured repackaging, you will need to create some registry files and register some DLL files. :rolleyes:

bundy-al 29-01-2021 12:48

Quote:

Originally Posted by Ele (Post 490131)
You cannot just repack "VLC media player" without coding. This is because if you want a full-featured repackaging, you will need to create some registry files and register some DLL files. :rolleyes:


create some registry files and register some DLL files.

Yes but I don't know how or if I should do that yet.
Should I do that with 1 of these apps ?
Reg From App
RegShot
RegistryChangesView v1.27
And then add that in Inno ?

KaktoR 29-01-2021 12:55

Quote:

Originally Posted by bundy-al (Post 490129)
I was hoping for a program like this on the fileforums.com forum from user Suryam.
SICT(Simple Inno Creator Tool) It is A Tool Where You Can Create Your Own Repack With No Coding Just Compress And Compile And Then Done !

I am looking for a program or something to repack an app in an easy way.
I've done VLC media player now.
But I am also looking for .iss scripts of apps e.g. Winrar, Foxitreader etc. (just change it to the latest version and done).

Oops you are the creator of the app Custom Installer Ultimate v3.

Do you have something like this for making apps ?

Well, in nature Inno Setup was build especially for this stuff - prepare software installers (to be fair, "software" also include games).

If you want to repack your software (apps), you just need just a few sections actually.

[Setup], [Files], [Registry]

I suggest to read the IS help about this sections, their layout and parameters to use to register your app (via registry and/or dll for example).

KaktoR 29-01-2021 12:57

Quote:

Originally Posted by bundy-al (Post 490132)
create some registry files and register some DLL files.

Yes but I don't know how or if I should do that yet.
Should I do that with 1 of these apps ?
Reg From App
RegShot
RegistryChangesView v1.27
And then add that in Inno ?

First of all, in this particullar case, you should know what types of registry VCL registers when installing, and of course what DLL files the VCL installer register on windows OS (most likely some codecs for audio/video playback).

bundy-al 29-01-2021 13:03

Quote:

Originally Posted by KaktoR (Post 490133)
Well, in nature Inno Setup was build especially for this stuff - prepare software installers (to be fair, "software" also include games).

If you want to repack your software (apps), you just need just a few sections actually.

[Setup], [Files], [Registry]

I suggest to read the IS help about this sections, their layout and parameters to use to register your app (via registry and/or dll for example).


Ok thanks.
That's why I asked for a program that might make it easy.

But then how can I know what all the app writes to in the registry ?
without using an app.

Ele 29-01-2021 14:10

Quote:

Originally Posted by bundy-al (Post 490136)
Ok thanks.
That's why I asked for a program that might make it easy.

But then how can I know what all the app writes to in the registry ?
without using an app.

Like I said before, to find out which registry are created, install your app through "Advanced Installer repackaging", it will take a snapshot instantly. Then you can figure out everything. ;)

bundy-al 30-01-2021 00:21

Quote:

Originally Posted by Ele (Post 490138)
Like I said before, to find out which registry are created, install your app through "Advanced Installer repackaging", it will take a snapshot instantly. Then you can figure out everything. ;)

Ele you surely meant this app anyway to repack.
From this site advancedinstaller.com


All times are GMT -7. The time now is 13:46.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com