is it possible FrameWork inside the installer package ?!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • BRAHM

    is it possible FrameWork inside the installer package ?!

    Hi Folks,

    I am using VB.net 2005 and I have developed a windows forms app.

    Now I want to be able to redistribute my app. As I could see in
    prerequisites It is possible only fill out the url
    to download the framework and I want to put it inside of the installer
    package because some clients of mine will not have internet access.

    any idea ?

    Daniel

  • Herfried K. Wagner [MVP]

    #2
    Re: is it possible FrameWork inside the installer package ?!

    "BRAHM" <daniel.brahm@c ontronic.com.br schrieb:
    I am using VB.net 2005 and I have developed a windows forms app.
    >
    Now I want to be able to redistribute my app. As I could see in
    prerequisites It is possible only fill out the url
    to download the framework and I want to put it inside of the installer
    package because some clients of mine will not have internet access.
    Some resources on deploying the .NET Framework:

    Deploying the .NET Framework in a setup package
    <URL:http://dotnet.mvps.org/dotnet/faqs/?id=deployframe work&lang=en>

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

    Comment

    • =?Utf-8?B?RmFtaWx5IFRyZWUgTWlrZQ==?=

      #3
      RE: is it possible FrameWork inside the installer package ?!

      If I remember correctly, there is an option to download the prerequisite from
      the installation source. I thought that option did what you are trying to
      accomplish. I don't have access to full VS, so I cannot verify it here.

      "BRAHM" wrote:
      Hi Folks,
      >
      I am using VB.net 2005 and I have developed a windows forms app.
      >
      Now I want to be able to redistribute my app. As I could see in
      prerequisites It is possible only fill out the url
      to download the framework and I want to put it inside of the installer
      package because some clients of mine will not have internet access.
      >
      any idea ?
      >
      Daniel
      >

      Comment

      • RobinS

        #4
        Re: is it possible FrameWork inside the installer package ?!

        How are you distributing? If you are doing it with ClickOnce (the Publish
        option in VS), you can include the redistributable with your stuff. There's
        a checkbox on the Prerequisites screen that says "Download prerequisites
        from the same location as my application". Note that it's all-or-nothing -
        all prerequisites have to be included.

        RobinS.
        GoldMail, Inc.
        ------------------------
        "BRAHM" <daniel.brahm@c ontronic.com.br wrote in message
        news:7D27C918-477A-49ED-9CB5-25269B49971C@mi crosoft.com...
        Hi Folks,
        >
        I am using VB.net 2005 and I have developed a windows forms app.
        >
        Now I want to be able to redistribute my app. As I could see in
        prerequisites It is possible only fill out the url
        to download the framework and I want to put it inside of the installer
        package because some clients of mine will not have internet access.
        >
        any idea ?
        >
        Daniel
        >

        Comment

        • kimiraikkonen

          #5
          Re: is it possible FrameWork inside the installer package ?!

          On Feb 7, 6:15 pm, "BRAHM" <daniel.br...@c ontronic.com.br wrote:
          Hi Folks,
          >
          I am using VB.net 2005 and I have developed a windows forms app.
          >
          Now I want to be able to redistribute my app. As I could see in
          prerequisites It is possible only fill out the url
          to download the framework and I want to put it inside of the installer
          package because some clients of mine will not have internet access.
          >
          any idea ?
          >
          Daniel
          Some installer may require if you put full .NET framework setup file
          as prerequiste. A lot of third party applications allow you to put
          your own extra files to be installed during software installation,
          thus also the framework can be installed at the same time.

          Maybe the most basic way is to force user to read README
          file(autorun?) and requesting framework installation :-)

          Comment

          Working...