Questions tagged [iexpress]

Windows utility to create self-extracting setup files

IExpress.exe is a Windows utility for creating self-extracting setup files. Instructions on using it can be found at, for example, https://learn.microsoft.com/en-us/cpp/ide/deploying-visual-cpp-application-by-using-the-vcpp-redistributable-package.

92 questions
50
votes
5 answers

How can a .bat file be 'converted' to .exe without third party tools?

There are many reasons to want to 'convert' a .bat to .exe - to hide/obfuscate implementation, passwords, path to resources , to create a service from batch file ... and mainly to make your work to look more complicated and important than it really…
npocmaka
  • 55,367
  • 18
  • 148
  • 187
19
votes
6 answers

How can I convert a VBScript to an executable (EXE) file?

I'd looked around for information to convert a VBScript (*.vbs) to an executable and realised that most of the tools available are actually wrapping the script in the executable. Tried a few tools and it didn't worked as well as expected. I tried…
Alex Cheng
  • 691
  • 2
  • 9
  • 21
18
votes
7 answers

Unable to open the Report file (iexpress)

I'm trying to create a installer with iexpress for a WAV Audio Player in C that I finished today, but, when I'm on the last step, it cames up with the following error message: "Unable to open the Report file C:\Users\Poleto\Desktop\~SWAV.RPT" Any…
Guilherme Poleto
  • 327
  • 1
  • 2
  • 13
12
votes
2 answers

iexpress command line example to create EXE packages

I need help with Example for Use iexpress command line to create EXE package. I have a folder With multiple files and folders inside, and I want to create a single EXE file from this folder. Is it possible to help me with an example of how to create…
Danny
  • 161
  • 1
  • 2
  • 7
9
votes
3 answers

How can I edit an exe's resources (File Description, Icon, etc.) using a command line utility?

The whole story: I have created a fancy .NET program which has an installer created by the Visual Studio Installer (VSI). The VSI creates 2 files (setup.exe and MyProgramSetup.msi). I understand the reasons for both files being needed, however, I…
Coder7862396
  • 415
  • 1
  • 6
  • 13
6
votes
2 answers

iexpress extract files then run script referring extracted file

I was trying to deploy my project with IExpress. I have the following scenario. I want to extract some files to a location preferably c:\program files\. Then after it copies all the files i want it to run a .cmd file (which is a script). the script…
Anirudh Goel
  • 4,571
  • 19
  • 79
  • 109
6
votes
2 answers

iexpress hard-coded extraction destination folder?

I'm using iexpress to make a self extracting executable. Is there a way I can hard-code an extraction destination folder (preferably into a temp folder somehwere) so as to not have the extraction pop up the "Please type the location where you want…
Seth
  • 5,596
  • 8
  • 42
  • 56
5
votes
5 answers

Create Batch file for iexpress

I am trying to use iexpress to run my batch file which will execute the 2 exe & 1 msi files for me. when i try to do it manually, it works. following is the code in my batch file. Start /wait %CD%\1.exe /q Start /wait %CD%\2.exe /q msiexec.exe /i…
Sangram Nandkhile
  • 17,634
  • 19
  • 82
  • 116
4
votes
1 answer

Iexpress for large files (corrupted Cabinet file)

I wish to combine many installers and make an exe using Iexpress. Total size of installers is 750MB. I tried combine and generated using Iexpress but the created exe file size is only 80MB. And when i double click and attempt to run the exe, its…
4
votes
1 answer

iexpress resulting executable not a valid win32 application on XP

I'm using the 32-bit iexpress.exe found in c:\windows\syswow64. The resulting .exe file is fine on Windows 7 and Windows 8 (x64) where I can confirm it is a 32-bit app. However when trying to run that on XP, it won't, claiming that it's not a…
user2604499
4
votes
1 answer

IExpress output file version

How can I set custom version of IExpress output file. I found this article http://www.mdgx.com/INF_web/custver.htm and everything except File version is working fine. Whatever I try I can't seem to set custom file version. It looks like IExpress is…
3
votes
2 answers

IExpress - create exe with custom icon

With the help of IExpress I created an exe from a bat file and would like to set a custom icon for the exe. Is this possible? Regards
orschiro
  • 19,847
  • 19
  • 64
  • 95
2
votes
1 answer

IExpress cannot find msi after reboot

I'm using IExpress to combine my bootstrapper and msi file. It works fine except that if I install the program on a machine without any of the prerequisites (.net 4, sql ce), it will fail. It always fails after rebooting, which happens after…
wangburger
  • 1,073
  • 1
  • 18
  • 28
2
votes
2 answers

IExpress Post Installation Batch with NodeJS not finding NPM immediately

I'm trying to use iExpress to install dependencies on a small script that I've created on NodeJS. The iExpress package simply installs the packages Node: msiexec /i node.msi Then runs a Post installation Batch to put the Javascript into a folder in…
Moe
  • 4,744
  • 7
  • 28
  • 37
2
votes
1 answer

Using command line arguments in exe files created via Iexpress

I have a bat script that takes a single string as a command line argument to determine which configuration files to copy. The bat code is pretty simple for the variable assignment (paraphrased below) and it works as expected with any command line…
T K
  • 21
  • 4
1
2 3 4 5 6 7