Results 1 to 4 of 4

Thread: Package and Deployment Wizard

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Apr 2006
    Posts
    126

    Package and Deployment Wizard

    Hi friends,
    I used to create installation package in VB6 using Package and Deployment wizard. But I'm not getting how to do it in Vb.net. Can anybody please tell me where I can find Package and Deployment Wizard in VB.net and steps for creating the package. Thanks in advance.
    Regards,
    Ajay

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Package and Deployment Wizard

    There is no Package & Deployment Wizard. That doesn't mean that there aren't deployment tools though.

    If you're using VB Express then the only inbuilt option is ClickOnce. You can right-click on your project and select Publish or you can open the Publish tab of the project properties. You should do some reading on ClickOnce before using it to find out what it can and can't do.

    If you're using VS then you can use ClickOnce or you can add a Setup project to your solution. There's also a Setup Wizard project template that will allow you to initially configure a Setup project using a wizard. Any advanced steps must be performed after the wizard has completed. Again, there's plenty of information available on MSDN regarding Setup projects.

    Having said all that, if your application is simple then you may prefer to just opt for XCOPY deployment, which is a fancy way of saying just copying the required files to the target machine. .NET apps and DLLs don't require registration so if you don't need to do anything beyond copy your EXE and maybe some supporting files then that's probably the easiest option. This will require the user to already have the appropriate .NET Framework version installed or to then install it manually, while the other two options can install the .NET Framework automatically if required, even downloading it if necessary.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Package and Deployment Wizard

    Moved To Application Deployment

  4. #4
    PowerPoster dilettante's Avatar
    Join Date
    Feb 2006
    Posts
    24,487

    Re: Package and Deployment Wizard


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width