Tagged Questions
The self-extracting tag has no wiki summary.
6
votes
1answer
509 views
How does Burn in WiX 3.6 bundle MSI files into an .exe
I've been digging in the WiX source code for a few hours, but since I'm not much of a C++ programmer, I figured I would save some time and ask here.
I'm interested in knowing how WiX is bundling the ...
5
votes
2answers
138 views
Creating self-opening documents
I'm working on a project that has a proprietary file format. The project has a large install-necessary program and a smaller viewer that requires no install. I would like to be able to export files ...
3
votes
2answers
526 views
self-extractor that will extract and run a file
i have two files, an EXE an DLL
the exe is a build of a vb.net application and i need the DLL in there too
what i want is a self extractor that will put these files together, then when run it will ...
3
votes
9answers
3k views
What is a good free utility to create a self-extracting executable with an embedded file version?
According to the answers to this question, I cannot embed a file version in my .msi file.
The installer that I give the client needs to have a file version.
So, what I want to do is create a ...
2
votes
1answer
126 views
7zip self extracting installer erases files before installation completes
We made a new installer that works pretty well using Visual Studio and WIX. Now I'm trying to zip it up and make a self extracting installer for distribution.
I can create the installer.exe just ...
2
votes
0answers
86 views
What is the difference between 7zip's 7z.sfx and 7zsd.sfx?
I can't figure out what the difference is between the 7z.sfx file available with 7zip and the downloadable 7zsd.sfx from the developer's site, which is not bundled with 7zip. The 7z.sfx appears not ...
2
votes
1answer
200 views
Deploy ClickOnce online installation filetree as a single .exe file for installing offline
Any ideas how to pack ClickOnce online installation filetree in a single .exe file for installing offline? I know it's not designed for this purpose, but using Windows Installer is NOT an option for ...
1
vote
2answers
88 views
Self-Extracting Zip: Specify Extraction Path With .exe File
I'm working on a deployment plan for a C# Winforms application and would like to use a self-extracting .zip file to distribute all of the required files. Here is the file structure of the SFX:
...
1
vote
1answer
76 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
1answer
578 views
7zip command line self extractor not asking for path
I've created my self extracting .exe file from 7zip command line using the
7z a -sfx <name.exe> <filelist...>
commands but when I run this from windows explorer it does not ask me for ...
1
vote
0answers
291 views
create self-extract auto installer winzip on linux to run on windows
i have created an installer using nsis and a data file included, i m trying to create a self auto extractor containing both of those files via linux so that they would run on windows(exe).
is that ...
1
vote
1answer
99 views
How do you create an rpm from a self-extracting executable?
I have a .bin file (Linux self extracting binary files), say installme.bin
I want to make an RPM out of it.
What would be the simplest strategy?
An almost empty spec file with:
%post
...
1
vote
1answer
119 views
Providing self-extracting encrypted downloads from a web site
The web site I'm working on currently provides an option for the user to download their data in an encrypted zip file. Standard zip file encryption is nearly worthless (so I've read), so I'm looking ...
1
vote
2answers
347 views
Creating a selfextracting executable which will copy itself to temp directory on Windows and launch itself
I want to distribute a setup in a self extracting executable form. I want to pack versions for 32 bit and 64 windows. So I have a program which first checks the version of Windows OS running and then ...
1
vote
2answers
423 views
Creating a self extracting bash script for linux using Ant on Windows
I'm trying to generate a self extracting script using the method discussed here: http://www.linuxjournal.com/node/1005818
Using ANT (on windows) I create the payload archive using TAR task(gzip ...
1
vote
2answers
539 views
Can I launch an Android app from incoming SMS/MMS messages?
I would like to know if I can launch a program via incoming MMS/SMS? More on the MMS side of things.
Workflow:
MMS sent to Android device
self executable MMS
Any thoughts?
1
vote
1answer
614 views
How to specify output folder for self-extracting ZIP file
extracting ZIP files that have been created using:
PKSFX(R) Version 2.50 FAST! Self Extract Utility for Windows 95/NT 4-15-1998
Is there an option to specify which folder the files contained in ...
1
vote
4answers
353 views
Encrypted, password-protected file creation
I'm writing a program that creates a Word document with sensitive information. I'd like to encrypt and password protect the document and distribute it in a self-extracting file so that the user can ...
0
votes
0answers
42 views
Editing .ini file in InstallShield self extracting exe
I have a self-extracting exe created using InstallShield 2010. I need to modify the setup.ini file in it, without fully unpacking the installer. I downloaded the internal_setupini.exe utility from ...
0
votes
1answer
98 views
Trying to execute self extracting zip file silently in command line
I have these self extracting zip files that I'm trying to extract on 2008/7 machines remotely. But they are coming in a way of .exe and it require user to double click and choose the extractions ...
0
votes
1answer
250 views
Run self extracting exe after extraction C# - DotNetZip
I am trying to create a self extracting exe. Creating it is no problem. Where I am facing problems is
Setting the extraction path where the exe exists
Running the extracted exe.
For the second ...
0
votes
1answer
158 views
Java: creating self extracting jar that can extract parts of itself out of the archive?
I know how to create a executable .jar file. There are many examples of that on the internet. What I am wondering, is if anyone knows of a way that a executable .jar file can auto extract out parts ...
0
votes
4answers
178 views
Extracting self-extracting exe archive via php
I have a problem. I have the service which is giving me .exe file which they claim is in fact zip archive. A self-extracting archive.
Problem is that I am downloading that with my app (php) to server ...
0
votes
2answers
226 views
Add a directory to a CAB project in Visual Studio 2008
We just recently converted our help file from the CHM format to HTML. Since our installer is Wix, rather than add each new file to the installer, I set up a build of a 7-Zip SFX file that takes every ...
0
votes
1answer
148 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" />
...
0
votes
0answers
82 views
Self Extract Winrar codeSign certification
I have some VB code to code sign MSI file and also do some other stuff, I want to code sign the self extractable file but the code exit before the Winrar done that because the unsynchronized, is there ...
0
votes
1answer
394 views
Self-extracting program with C#
when you create a zip/rar file with Winrar, it gives you the chance to create an exe from the zip you just created. Is it possible to do that from C# code???
I'm suspecting the DotNetZip Library can ...
0
votes
1answer
1k views
How to extract a Win32 Cabinet Self-Extractor without executing the extracted file then
For a coursework, I have to analyse a malware.
It is a .EXE Win32 Cabinet Self-extractor file. (that's how windows see it, it actually start with 4D 5A 00 03 Hex).
When run, it extract all the files ...
0
votes
3answers
246 views
Self Extract ZIP?
I need help creating a self extracting zip file that does not display anything. I just need it to extract the files to a given place in the background. Everything I have found displays a dialog, but I ...
0
votes
1answer
193 views
Rubyzip - possible to set extraction folder?
My problem is that I need to set the root extraction folder for a zip-file I'm generating by using Rubyzip. The zip-file will be opened in Windows as self-extractable. Is this option available in ...
0
votes
3answers
273 views
Automate Self-Extractor
I am a little new to programming so please bear with me. I create a lot of self-extractors that I upload to a ftp site which my clients then download (with the self-extractor putting the files I ...
0
votes
2answers
1k views
Create self extracting archive with autorun on linux for windows platform
Our application is distributed as a zip file, with a small bat/shell script that the user runs after extracting the archive to install the application. This zip file is currently created via mavens ...