Archive: How to make a cab file to exe file?


How to make a cab file to exe file?
I had made my own cab file,now I want to use NSIS software to creat a exe file,or a very simple installing file just like xxxxxx.exe.

please help me to make it.


regards,
david


If you need to extract the cab file, then just use the standard File command to include the CAB file in your install.

If you need to extract the contents of the cab file, then you might try the CabDLL plugin. (although you could just as easily include the individual files in your setup rather the entire CAB file.)


The most simple way to achieve that is: Create a ZIP file (instead of CAB) and then use the "NSIS\bin\zip2exe.exe" tool to create the EXE file...