PDA

Click to See Complete Forum and Search --> : How do I deploy App without the need of installation?


blazen2009
Apr 2nd, 2010, 11:54 PM
How do I deploy a application so that the user can immediately use it and not need to install it on their pc?

EDIT: I code in VB.NET

dilettante
Apr 3rd, 2010, 12:28 AM
The answer will vary depending on what you're programming in and what the program does. Some kinds of applications can't be run without installation by their nature or for technical reasons.

blazen2009
Apr 3rd, 2010, 12:39 AM
The answer will vary depending on what you're programming in and what the program does. Some kinds of applications can't be run without installation by their nature or for technical reasons.

Hello dilettant,

I code in VB.NET, and seen a VB.NET application run without a installation before.

blazen2009
Apr 3rd, 2010, 01:04 AM
Well I don't know if this is the proper way to do it, but it seems for VB.NET projects you can go to the Debug folder and just copy the application as is if you don't want the application to have a installation wizard. If this is wrong or not proper please someone correct me.

techgnome
Apr 3rd, 2010, 03:34 AM
Release folder... I wouldn't distribute the debug files.

If the user already has .NET installed, then you can simply copy & paste the files. Hopwever, that could be argued that is an installation as well...

What's wrong with creating an actual installation package?

-tg