All Questions
Tagged with sfx self-extracting
5 questions
0
votes
2
answers
632
views
Self-extracting file that takes arguments and return exitcode
I want to create a self-extracting file (SFX) named Setup.exe which contains a Windows application with some dependencies.
It is possible to start the Windows application with arguments, and I would ...
1
vote
2
answers
5k
views
Error Creating a 7-zip installer package
If this is not the correct place to ask this, I apologize.
I use 7zip to create an installer package. Recently, my computer was updated, and I can no longer get it to work. I use a Windows Installer ...
1
vote
1
answer
1k
views
WinRar -sp<> flag not working with self-extractors
I was using Winrar 3 to create self extractors and was using -sp flag to pass the arguments to the executable bundled inside. It was working fine.
After I updated WinRar to 5.1, it stopped working. -...
1
vote
1
answer
695
views
How to create SFX self executing or Bootstrapper setup with .NET
How to build the setup similar to microsoft's dotnet 3.5 which is SFX self executing setup.
So which will have the company information, and version info, etc of the project's setup.exe into the final ...
1
vote
1
answer
624
views
Problem extracting SFX during WiX-based install
I have the following code in my WiX project
<CustomAction Id="ExtractHelp" Directory="DocFolder" Execute="commit" Impersonate="no" ExeCommand="[MYAPPINSTALLFOLDER]Doc\help_zip.exe" />
&...