Deployment Strategies

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am ready to deploy my first windows vb.net application. Which strategy should I use for this deployment?
Is XCOPY available

Thanks in advance!

Parveen
 
XCOPY is available assuming you have developed your application to support
it. If you application resides in one directory including all referenced
assemblies and does not use any outside assemblies stored in the GAC (other
then the system/microsoft/ or visualbasic assemblies) then you should not
have a problem.

Dan

Parveen said:
I am ready to deploy my first windows vb.net application. Which strategy
should I use for this deployment?
 
* "=?Utf-8?B?UGFydmVlbg==?= said:
I am ready to deploy my first windows vb.net application. Which strategy should I use for this deployment?
Is XCOPY available?

If it's a simple application that doesn't use any ActiveX controls or
stuff like that, just copy the executable into a folder on the
destination computer. Notice that the .NET Framework must be installed
on the computer in order to be able to start the application.
 
How about security?
I sent an EXE to a client hoping it would work and It didn't.
What I did was send an msi installation and worked fine

jc
 
* "Jose Caliente said:
How about security?
I sent an EXE to a client hoping it would work and It didn't.
What I did was send an msi installation and worked fine

What's the problem with that?
 
Security and Xcopy, In my case I sent an EXE and my client couldn just use
it. Even though
he has the framework 1.1 installed in his machine.

jc
 
* "Jose Caliente said:
Security and Xcopy, In my case I sent an EXE and my client couldn just use
it. Even though
he has the framework 1.1 installed in his machine.

Error message?

Are you sure, all required components and files were sent to the client?
 
If I use this method...of copying and pasting then other application on my user's computer will not
be affected right? they will still run fine

Parveen
 
Also, when I go to build the exectuable....if my solution only has one project in it, the do i choose
"build solution" or "build <project name>"

thanks

parveen
 
Back
Top