Results 1 to 16 of 16

Thread: [RESOLVED] .NET 4.0 Redistributable

  1. #1

    Thread Starter
    Pro Grammar chris128's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    7,604

    Resolved [RESOLVED] .NET 4.0 Redistributable

    Can anyone find a link for the FULL .NET 4 installs? i.e. not just the 800kb web installers. I'm looking for the full downloads for the .NET 4.0 Client Profile and also for the full .NET 4.0 Framework but google and microsoft's download search dont seem to find anything other than the BETA and RC versions
    My free .NET Windows API library (Version 2.2 Released 12/06/2011)

    Blog: cjwdev.wordpress.com
    Web: www.cjwdev.co.uk


  2. #2
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: .NET 4.0 Redistributable

    MSDN Subscriptions have the entire 48MB FW for download, I don't know about anywhere else though
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  3. #3

    Thread Starter
    Pro Grammar chris128's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    7,604

    Re: .NET 4.0 Redistributable

    Ah right, it must be available somewhere publicly surely... bit naff having Visual Studio 2010 available for public download if we cant distribute the new framework easily to our users
    My free .NET Windows API library (Version 2.2 Released 12/06/2011)

    Blog: cjwdev.wordpress.com
    Web: www.cjwdev.co.uk


  4. #4
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: .NET 4.0 Redistributable

    Well I found this using the search on ms.com: Stand-Alone Redistributable Packages

    But it looks like the pages it links to aren't created yet...
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  5. #5

    Thread Starter
    Pro Grammar chris128's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    7,604

    Re: .NET 4.0 Redistributable

    Ah thanks for the link, guess I'll just have to keep trying the links to the files until MS actually get them working..
    My free .NET Windows API library (Version 2.2 Released 12/06/2011)

    Blog: cjwdev.wordpress.com
    Web: www.cjwdev.co.uk


  6. #6
    Next Of Kin baja_yu's Avatar
    Join Date
    Aug 2002
    Location
    /dev/root
    Posts
    5,989

    Re: .NET 4.0 Redistributable

    One question. Would my application require .Net Framework based on the system it's being installed on or based on which it was compiled on, in regards to 32bit/64bit (x86/x64) versions of .Net.

  7. #7
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: .NET 4.0 Redistributable

    Quote Originally Posted by baja_yu View Post
    One question. Would my application require .Net Framework based on the system it's being installed on or based on which it was compiled on, in regards to 32bit/64bit (x86/x64) versions of .Net.
    If your .Net project(s) is/are set to compile for Any CPU (the default) or x86 (32 Bit only) then it doesn't matter if it's running on an x64 system or not. If it's set to compile for x64 (64 Bit only) then the computer running it needs to be 64 Bit (I don't know if it has to be compiled on a 64 Bit comp too or not)
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  8. #8
    Next Of Kin baja_yu's Avatar
    Join Date
    Aug 2002
    Location
    /dev/root
    Posts
    5,989

    Re: .NET 4.0 Redistributable

    Thanks for the info.

  9. #9

    Thread Starter
    Pro Grammar chris128's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    7,604

    Re: .NET 4.0 Redistributable

    Yeah it does have to be compiled on a 64 bit computer as you dont get the option to change the target CPU architecture if you open the project on a 32 bit system
    My free .NET Windows API library (Version 2.2 Released 12/06/2011)

    Blog: cjwdev.wordpress.com
    Web: www.cjwdev.co.uk


  10. #10
    Next Of Kin baja_yu's Avatar
    Join Date
    Aug 2002
    Location
    /dev/root
    Posts
    5,989

    Re: .NET 4.0 Redistributable

    What about a 64bit computer (CPU) running 32bit Windows. Would that combination work?

  11. #11
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: .NET 4.0 Redistributable

    Quote Originally Posted by baja_yu View Post
    What about a 64bit computer (CPU) running 32bit Windows. Would that combination work?
    Good question. Thats the current temp setup Im running at home.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  12. #12
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: .NET 4.0 Redistributable

    Quote Originally Posted by baja_yu View Post
    What about a 64bit computer (CPU) running 32bit Windows. Would that combination work?
    If the OS is 32 Bit then the whole system is capable of 32 Bit only.

    You need to have a 64 Bit OS (which means a 64 Bit CPU too) to have any kind of 64 Bit software capability.

    So 32 Bit Windows can't do 64 Bit at all.

    You can dual boot a 32 Bit OS and a 64 Bit OS on the same computer, but only the 64 Bit one can do anything 64 Bit.
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  13. #13
    Next Of Kin baja_yu's Avatar
    Join Date
    Aug 2002
    Location
    /dev/root
    Posts
    5,989

    Re: .NET 4.0 Redistributable

    Again, thanks for the info

    I never tried a 64 bit system even though I had 64bit CPUs for years now. Not sure why. I mostly worried about driver support (in the beginning), and later the absence of 64bit versions of software which I used so I failed to see the benefit (running mostly 32bit software on a 64bit OS).

    I currently have a dual boot XP and 7 on my development desktop but both are 32 bit.

  14. #14
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: .NET 4.0 Redistributable

    If you get a chance, get a copy of Win7 x64 and try it out. I was using 32 Bit XP until last September, now I'm Win7 x64 on both computers here, the 3rd comp is still XP only cause it's a 32 Bit single core 1.1 GHz slow piece of sh....
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  15. #15
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: .NET 4.0 Redistributable

    Here' where the Full 48MB Framework can be downloaded from: Microsoft .NET Framework 4 (Standalone Installer)
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  16. #16

    Thread Starter
    Pro Grammar chris128's Avatar
    Join Date
    Jun 2007
    Location
    England
    Posts
    7,604

    Re: .NET 4.0 Redistributable

    Quote Originally Posted by JuggaloBrotha View Post
    Here' where the Full 48MB Framework can be downloaded from: Microsoft .NET Framework 4 (Standalone Installer)
    Thanks a lot (for the answer and for getting this thread back on track!)
    My free .NET Windows API library (Version 2.2 Released 12/06/2011)

    Blog: cjwdev.wordpress.com
    Web: www.cjwdev.co.uk


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