A self-extracting archive is an archive that doesn't require any special application to extract its contents.

learn more… | top users | synonyms

0
votes
0answers
8 views

reason for writing a self-extracting virus

What is the rationale behind writing a self-extracting virus? By this I mean a virus that has it's payload encrypted, decrypts at runtime and runs it. How does this protect the virus from antivirus ...
1
vote
0answers
13 views

How do i protect my sfx from being opened by other winrar, winzip, 7zip applications?

How do i protect my sfx from being opened by other applications like winrar, winzip, 7zip, etc? I want to add password if it is opened by other applications like winrar? My sfx should never ask ...
1
vote
1answer
121 views

WinZip Self Extractor pass command line args to msi

I've created an installer using wix 3.6 which produces an msi file that includes several dialogs (EULA, install location, etc). I then create a self extracting zip file using WinZip Self Extractor in ...
0
votes
2answers
55 views

How do I set the file version and product version properties for a self-extracting zip file?

I have an EXE file which is a self-extracting zip file. How do I set the product version and file version on the EXE file? Windows lists them in the file properties, but they are all blank. The ...
1
vote
2answers
225 views

How can I identify a WinRAR SFX using a binary signature of some sort?

I'm looking for an answer similar to the one in this question, but for WinRAR instead of 7zip. Essentially I want an authoritative signature that I can say at least "All WinRAR generated ...
3
votes
1answer
2k views

The magic number in GZip header is not correct. Make sure you are passing in a GZip stream.(.exe file)

I want to extract a exe file. The exe file contain some files and folders. When I try to extract the file using winrar it gets extracted but when I am trying to extract the exe file using some ...
0
votes
1answer
170 views

How can I self-extract a binary resource (executable) using C++?

I need to extract a binary resource (that's in my project) however, I cannot think of any way I can do it, I'm using Windows/C++. How can I do it? (Any help will be appreciated)
2
votes
0answers
76 views

How can I programmatically identify a self extracting executable, and extract the contained files?

I did some basic research, and it seems that there is no one standard to create these. I saw a number of code project pages that had code for building such an exe, but no reference on how to identify ...
0
votes
2answers
299 views

How to control PE segment order in Visual C++

I am trying to write a packer/self extracting exe type program but I am having problems with the segment order created by Visual C++'s linker. Basically I have a stub program (the loader) that has a ...
0
votes
1answer
66 views

Unable to set the Version Information for Self Extractor in IExpress

Actually, trying to set a Version Info, for self extractor created through IExpress. After searching I got the following LINK, whereas, it does not recognize the values from Version Section, default ...
1
vote
1answer
260 views

Implement a self extracting archive?

I know i can use 7z or winrar but i want to learn this for myself. How would i implement a self extracting archive? I can use C# or C++ but let me run down the problem. When i open the exe i need ...
0
votes
1answer
54 views

Possible to create archive that will extract itself to a newly created directory?

If possible, I'd like to compress a number of files, and when the recipient of this zip file extract it (or double click on it) it creates a directory on the local disk and extracts the contained ...
0
votes
1answer
553 views

Issue with spaces in 7zip self-extracting exe “extract to” folder name

We've been using 7zip for a couple of years to zip up our software packages to create a single self-extracting executable. Our default InstallPath is a path without spaces e.g. C:\Install\Downloads ...
0
votes
2answers
273 views

RARSFX / ZipSFX - Passing a parameter to in-archive file

I've finished working on an application and it's now time to deliver it to the customer. Since it is a 5-file application which is smaller than 5 MB, i decided that the simplest and leanest way to ...
1
vote
2answers
268 views

reading/extracting a self extracting zip in JAVA

I was trying to read a self-extracting zip (located here ftp://ftp.dnr.state.oh.us/OilGas/Download/Production/By_Year/2010Production.exe) using java code. I tried three approaches, the one mentioned ...
1
vote
3answers
606 views

self extracting zip taking arguments

I am looking for a tool that will allow me to create a self extracting executable file which can take arguments. The arguments will later be passed on to the batch file that is residing within the ...
1
vote
0answers
319 views

Self-extracting EXE where command-line parameters are not compressed

I'm currently using WinZip to create self-extracting EXEs. In the past I have had to modify file names in the self-extracting EXE using a hex-editor, and this was easy because WinZip stores the file ...
2
votes
1answer
201 views

Self-extracting self-checking executable

I am distributing an authenticode signed self-extracting executable whose content I control. It contains a mushroom of MSI-based installers that controls a hot swap of a distributed system, so it ...
1
vote
0answers
33 views

unzipping self-extracting 7-zip exe files in java [duplicate]

Possible Duplicate: How can I read from a Winzip self-extracting (exe) zip file in Java? I need to unzip self-extracting 7-zip exe files in java. I tried looking through many posts which ...
0
votes
0answers
553 views

making a patcher / downloading and running exe files silent

ok, i have made a program that needs to also patch a client. rather then downloading each file and overwriting, i would like to make a self extracting WinRAR file download then run silently and ...
1
vote
1answer
6k views

How do I make a self-installing executable using WinRAR?

I've seen executables that extract themselves and run a compressed setup.exe afterwards: a double click on the file uncompresses it and then runs the formerly compressed setup.exe. How can I ...
0
votes
1answer
449 views

How to do vista aware self-extract installer

I distribute my software with a WinZip self-extract archive (SFX). I am aware of this and that. But those doesn't seem to work for SFX scenarios. While installing, the SFX unpacks and starts a ...
0
votes
0answers
535 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 ...
1
vote
2answers
2k 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 ...
2
votes
1answer
1k 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
1answer
1k 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
2answers
514 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
307 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 ...
0
votes
1answer
1k 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
2answers
816 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 ...
1
vote
2answers
4k 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 ...
0
votes
4answers
675 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 ...
5
votes
2answers
208 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 ...
0
votes
2answers
492 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
274 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
233 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 ...
6
votes
1answer
1k 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 ...
0
votes
1answer
666 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 ...
1
vote
0answers
469 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
275 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 ...
0
votes
1answer
3k 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 ...
1
vote
1answer
204 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
1k 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
831 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 ...
2
votes
1answer
467 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 ...
5
votes
2answers
1k 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 ...
0
votes
3answers
489 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 ...
1
vote
2answers
910 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?
0
votes
1answer
260 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 ...
1
vote
1answer
2k 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 2