tags:

views:

43

answers:

2

i have a vb.net application

i published it

it made an app files diretory, setup.exe, and some other file

i need everything to be in one file because the users are not very computer savy

is there a way to bundle everything in one installation file?

+2  A: 

You could bundle the files into a self-extracting ZIP file.

SLaks
can u tell me how to do this please
I__
+1 for something that should be easy, but I've seen people run a self-extracting ZIP and freak out because it wasn't as mindless of an operation as clicking 'Next' three times. Sometimes, users just make things harder.
Jim Schubert
Press Start, Run, type `IExpress`, and follow the wizard. You can also use WinZip.
SLaks
thank you very much, unfortunately this is not working because it will not let me add a whole directory track, only files in the same folder
I__
You can also use WinZip or 7Zip.
SLaks
+1  A: 

You could try ILMerge. It will allow you to merge multiple assemblies into 1. You could set it up in a Post Build Event to merge all of your assemblies into 1 exe.

Matt Dearing
+1 I've never used ILMerge. Do you know if it will also add dependent files as resources?
Jim Schubert