topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday April 16, 2024, 11:48 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: .NET Framework 3.5 install advice  (Read 7578 times)

AndyM

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 616
    • View Profile
    • Donate to Member
.NET Framework 3.5 install advice
« on: January 15, 2009, 07:39 AM »
All I have installed currently is .Net 1.1  (not sure why)

I've finally seen something I'd really like (a tiny Windows Explorer utility) that requires .Net 3.5.

Can I just install 3.5 or do I have to install 2.0,etc first?

Are there downsides to having .Net framework installed?

A google search raised more questions than answers so I come here for some quick advice, or links to good info.

TIA,  Andy

40hz

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 11,858
    • View Profile
    • Donate to Member
Re: .NET Framework 3.5 install advice
« Reply #1 on: January 15, 2009, 08:20 AM »
You can just install Net 3.5. No need to install 2.0 first.

Other than the hit on your disk space, the only real downside (if you want to call it that) is that Net might introduce potential security vulnerabilities. But the same thing can be said about any other software you might already have installed.  Microsoft includes security patches for Net Framework as part of their regular Windows Update. Just be sure to stay on top of your Microsoft updates and you'll be fine.

« Last Edit: January 15, 2009, 12:47 PM by 40hz »

PhilB66

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 1,522
    • View Profile
    • Donate to Member
Re: .NET Framework 3.5 install advice
« Reply #2 on: January 15, 2009, 08:33 AM »
SmallestdotNET - Get the smallest .NET Framework download possible.

CWuestefeld

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,009
    • View Profile
    • Donate to Member
Re: .NET Framework 3.5 install advice
« Reply #3 on: January 15, 2009, 11:32 AM »
In some of the .Net releases, MS has introduced tiny changes in behavior. It's possible that these changes could break an application, although I've never run into such a situation -- and I work with .Net all day, every day.

Given several versions of .Net on your machine, the .Net loader will prefer to run an application on the version that it was actually built for, so any of these incompatibilities will not be encountered anyway. Of course, if you've only got 3.5, then that's what the loader will use, and you'll almost certainly be OK.

40hz

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 11,858
    • View Profile
    • Donate to Member
Re: .NET Framework 3.5 install advice
« Reply #4 on: January 15, 2009, 12:45 PM »
In some of the .Net releases, MS has introduced tiny changes in behavior. It's possible that these changes could break an application, although I've never run into such a situation -- and I work with .Net all day, every day.

Thanks for sharing that. :Thmbsup:

I keep hearing about the Net Framework "version compatibility problem", but like you, I have never encountered it.

The only time I ever ran into a versioning issue was when somebody's installer was hard-coded to look for a specific version of Net, and would refuse to complete an install if it couldn't find it.

On a lark, I once installed an older version of Net, and then removed it after I completed one of those . Not surprisingly, the app in question ran just fine with 3.5 instead of the 2.0 version it was insisting on.

Don't know if that's what happens in most cases, but it was an interesting experiment.


AndyM

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 616
    • View Profile
    • Donate to Member
Re: .NET Framework 3.5 install advice
« Reply #5 on: January 15, 2009, 05:36 PM »
Thanks everyone!