Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. How can i install .net 3.5 setup project without .net frameowrk 3.5?

How can i install .net 3.5 setup project without .net frameowrk 3.5?

Scheduled Pinned Locked Moved C#
csharpquestiondotnetworkspace
25 Posts 12 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Narendra Reddy Vajrala

    Hi Experts, I have developed a c#.Net 3.5 windows Application, i created a setup project and everything fine. when am going to install that setup engine in a machine where there is no .net framework 3.5 it is asking to install .net framework 3.5. without .net framework 3.5 how can i install my setup project? please reply me. Thanks In Advance --Naren

    H Offline
    H Offline
    Henry Minute
    wrote on last edited by
    #3

    You might be able to install it, I'm not sure, but it certainly won't run without the appropriate framework.

    Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

    N 1 Reply Last reply
    0
    • P Paddy Boyd

      You can't. You need to install the framework.

      N Offline
      N Offline
      Narendra Reddy Vajrala
      wrote on last edited by
      #4

      oh really? i want to install my .msi file in my client machine where there is no .net framework hoe can i?

      D 1 Reply Last reply
      0
      • H Henry Minute

        You might be able to install it, I'm not sure, but it certainly won't run without the appropriate framework.

        Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

        N Offline
        N Offline
        Narendra Reddy Vajrala
        wrote on last edited by
        #5

        i want to install my .msi file in my client machine where there is no .net framework how can i?

        H H 2 Replies Last reply
        0
        • N Narendra Reddy Vajrala

          i want to install my .msi file in my client machine where there is no .net framework how can i?

          H Offline
          H Offline
          HuntingWabbits
          wrote on last edited by
          #6

          How are you expecting to run the application without the framework? You need to install the framework.

          1 Reply Last reply
          0
          • N Narendra Reddy Vajrala

            Hi Experts, I have developed a c#.Net 3.5 windows Application, i created a setup project and everything fine. when am going to install that setup engine in a machine where there is no .net framework 3.5 it is asking to install .net framework 3.5. without .net framework 3.5 how can i install my setup project? please reply me. Thanks In Advance --Naren

            M Offline
            M Offline
            musefan
            wrote on last edited by
            #7

            why do you try talking sense? are you saying you have created an application using .Net Framework that installs another application? And please tell me why on earth you would want to install a program that you never intend to work?

            Life goes very fast. Tomorrow, today is already yesterday.

            N 1 Reply Last reply
            0
            • N Narendra Reddy Vajrala

              Hi Experts, I have developed a c#.Net 3.5 windows Application, i created a setup project and everything fine. when am going to install that setup engine in a machine where there is no .net framework 3.5 it is asking to install .net framework 3.5. without .net framework 3.5 how can i install my setup project? please reply me. Thanks In Advance --Naren

              S Offline
              S Offline
              SeMartens
              wrote on last edited by
              #8

              What you need is a bootstrapping mechanism. I would suggest using the WiX toolset to create a msi file. Then integrate a bootstrapper that will check if the .NET Framework is present and if not to install it. Worked great for me. WiX toolset: http://wix.sourceforge.net/[^] Integrating bootstrapper: http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg14865.html[^] Regards Sebastian

              It's not a bug, it's a feature! Check out my CodeProject article Permission-by-aspect. Me in Softwareland.

              1 Reply Last reply
              0
              • N Narendra Reddy Vajrala

                i want to install my .msi file in my client machine where there is no .net framework how can i?

                H Offline
                H Offline
                Henry Minute
                wrote on last edited by
                #9

                An .msi file is just a file. You can copy it onto pretty much any computer. However, the Application will not be able to run without the framework.

                Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”

                1 Reply Last reply
                0
                • M musefan

                  why do you try talking sense? are you saying you have created an application using .Net Framework that installs another application? And please tell me why on earth you would want to install a program that you never intend to work?

                  Life goes very fast. Tomorrow, today is already yesterday.

                  N Offline
                  N Offline
                  Narendra Reddy Vajrala
                  wrote on last edited by
                  #10

                  oh no yaar, i created a setup (.msi) file to my application and i want to install that in a client machine where there is no .net framework 3.5. i hope am clear.

                  M 1 Reply Last reply
                  0
                  • N Narendra Reddy Vajrala

                    Hi Experts, I have developed a c#.Net 3.5 windows Application, i created a setup project and everything fine. when am going to install that setup engine in a machine where there is no .net framework 3.5 it is asking to install .net framework 3.5. without .net framework 3.5 how can i install my setup project? please reply me. Thanks In Advance --Naren

                    J Offline
                    J Offline
                    Jimmanuel
                    wrote on last edited by
                    #11

                    1. Don't Cross Post 2. Open the installer project, go to [View -> Editor -> Launch Conditions] 3. You've gotten the same answer about 10 times now and responded the same way to all of them but whether you like it or not you need to install .Net for a .Net app to run. What you want to do makes no sense.

                    :Badger:

                    N 1 Reply Last reply
                    0
                    • N Narendra Reddy Vajrala

                      oh no yaar, i created a setup (.msi) file to my application and i want to install that in a client machine where there is no .net framework 3.5. i hope am clear.

                      M Offline
                      M Offline
                      musefan
                      wrote on last edited by
                      #12

                      well as far as i know the .msi will run as long as the machine has the right windows installer on it. So your application should install. But it wont work as you will need to install the .Net Framework. What you should do is include the re distributable with your setup as it is a requirement of the application. If by some how you are trying to ask if you can 'embed' the framework in your application or something like that then the answer is no. Basically if your don't want to use the .Net Framework on client machine then don't develop with it in the first place.

                      Life goes very fast. Tomorrow, today is already yesterday.

                      1 Reply Last reply
                      0
                      • J Jimmanuel

                        1. Don't Cross Post 2. Open the installer project, go to [View -> Editor -> Launch Conditions] 3. You've gotten the same answer about 10 times now and responded the same way to all of them but whether you like it or not you need to install .Net for a .Net app to run. What you want to do makes no sense.

                        :Badger:

                        N Offline
                        N Offline
                        Narendra Reddy Vajrala
                        wrote on last edited by
                        #13

                        If you are in position what you will do?

                        L N J 3 Replies Last reply
                        0
                        • N Narendra Reddy Vajrala

                          If you are in position what you will do?

                          L Offline
                          L Offline
                          Lost User
                          wrote on last edited by
                          #14

                          Personally? I would install the .net framework, or next time if a requirement is no .net framework, then guess what... I wouldn't use a .net language! DING DING DING, fail.

                          Check out the CodeProject forum Guidelines[^]

                          1 Reply Last reply
                          0
                          • N Narendra Reddy Vajrala

                            Hi Experts, I have developed a c#.Net 3.5 windows Application, i created a setup project and everything fine. when am going to install that setup engine in a machine where there is no .net framework 3.5 it is asking to install .net framework 3.5. without .net framework 3.5 how can i install my setup project? please reply me. Thanks In Advance --Naren

                            N Offline
                            N Offline
                            Narendra Reddy Vajrala
                            wrote on last edited by
                            #15

                            Thanks to all for your suggestions. :-O

                            1 Reply Last reply
                            0
                            • N Narendra Reddy Vajrala

                              If you are in position what you will do?

                              N Offline
                              N Offline
                              Nagy Vilmos
                              wrote on last edited by
                              #16

                              Narendra Reddy Vajrala wrote:

                              If you are in position what you will do?

                              Standing beside you. I would take aim at your stupid and bitch slap you until your eyes pop out. Asking the same question. I would read what other people have written in response and realise I am being an outstanding feckwit thinking that I can run a program that uses a specific runtime library without having the library installed. You cannot run a .NET x.x program without installing .NET x.x runtime. That is it. There is no room for a three-year-old-tantrum here. You want the program, then you install the runtime. Do you understand? Answer YES or NO.


                              Panic, Chaos, Destruction. My work here is done.

                              N 1 Reply Last reply
                              0
                              • N Narendra Reddy Vajrala

                                If you are in position what you will do?

                                J Offline
                                J Offline
                                Jimmanuel
                                wrote on last edited by
                                #17

                                You have two options: 1) install .Net - this will allow the installer to run and install your software. 2) don't install .Net - the installer won't run which makes your software worthless. I'll leave it to you to figure out which one you want to do.

                                :Badger:

                                N 1 Reply Last reply
                                0
                                • N Nagy Vilmos

                                  Narendra Reddy Vajrala wrote:

                                  If you are in position what you will do?

                                  Standing beside you. I would take aim at your stupid and bitch slap you until your eyes pop out. Asking the same question. I would read what other people have written in response and realise I am being an outstanding feckwit thinking that I can run a program that uses a specific runtime library without having the library installed. You cannot run a .NET x.x program without installing .NET x.x runtime. That is it. There is no room for a three-year-old-tantrum here. You want the program, then you install the runtime. Do you understand? Answer YES or NO.


                                  Panic, Chaos, Destruction. My work here is done.

                                  N Offline
                                  N Offline
                                  Narendra Reddy Vajrala
                                  wrote on last edited by
                                  #18

                                  just compare the answers from experts no two answers were same, at least something new

                                  N Y 2 Replies Last reply
                                  0
                                  • J Jimmanuel

                                    You have two options: 1) install .Net - this will allow the installer to run and install your software. 2) don't install .Net - the installer won't run which makes your software worthless. I'll leave it to you to figure out which one you want to do.

                                    :Badger:

                                    N Offline
                                    N Offline
                                    Narendra Reddy Vajrala
                                    wrote on last edited by
                                    #19

                                    Tnx

                                    1 Reply Last reply
                                    0
                                    • N Narendra Reddy Vajrala

                                      just compare the answers from experts no two answers were same, at least something new

                                      N Offline
                                      N Offline
                                      Nagy Vilmos
                                      wrote on last edited by
                                      #20

                                      Every answer was the same you screaming doofus!


                                      Panic, Chaos, Destruction. My work here is done.

                                      N Y 2 Replies Last reply
                                      0
                                      • N Nagy Vilmos

                                        Every answer was the same you screaming doofus!


                                        Panic, Chaos, Destruction. My work here is done.

                                        N Offline
                                        N Offline
                                        Narendra Reddy Vajrala
                                        wrote on last edited by
                                        #21

                                        good

                                        1 Reply Last reply
                                        0
                                        • N Narendra Reddy Vajrala

                                          Hi Experts, I have developed a c#.Net 3.5 windows Application, i created a setup project and everything fine. when am going to install that setup engine in a machine where there is no .net framework 3.5 it is asking to install .net framework 3.5. without .net framework 3.5 how can i install my setup project? please reply me. Thanks In Advance --Naren

                                          D Offline
                                          D Offline
                                          Dan Neely
                                          wrote on last edited by
                                          #22

                                          Xenocode[^] and Remotesoft[^] have applications that will allow an application to be written in .NET without needing the framework installed. The main differences are that salamander will precompile your app into native code, xenocode will just stuff the .net executable inside a wrapper, and that xenocode will combine all the .net dlls in as well while salamander will leave them separate. IIRC one of the virtualization companies sells a similar service for ~$5k but I never investigated it in detail because of the price differential.

                                          It is a truth universally acknowledged that a zombie in possession of brains must be in want of more brains. -- Pride and Prejudice and Zombies

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups