How do I install .NET Framework 3.5 on Windows 7?

149,340

Solution 1

That message is trying to tell you that you need to install .NET 3.5 a different way under Windows 7. Because it's included as part of the operating system, you use the "Turn Windows features on or off" function to get to it, instead of installing a downloaded redistributable package.

  1. Open the Start menu and click "Control Panel".
  2. Under the "Programs" category, click the "Turn Windows features on or off" link text.

  Click "Turn Windows features on or off"

Solution 2

Run the following command as an admin:

DISM /Online /Enable-Feature /FeatureName:NetFx3 /NoRestart

That'll install .NET Framework 3.5 SP1, 3.0 SP1, & 2.0 SP1 ... same as enabling it through the GUI in Control Panel.

Solution 3

You may disable/re-enable the Microsoft .NET Framework 3.5.1 within the Control Panel to effectively repair it:

Control Panel > Programs and Features > Turn Windows feature on or off.

Uncheck the Microsoft .NET Framework 3.5.1 entry. Click OK to accept this setting and return to Turn Windows Features on or off to re-enable Microsoft .NET Framework 3.5.1 by checking the box.

Solution 4

Windows 7 comes with .NET 3.5 you just need to enable it in Windows Features.It gets installed,it selects automatically what else needs to be installed

Share:
149,340

Related videos on Youtube

naveensiva
Author by

naveensiva

Updated on September 17, 2022

Comments

  • naveensiva
    naveensiva almost 2 years

    I need to install version 3.5 of the .NET Framework in Windows 7, but when I try to install it, it shows the following error:

    "Turn on/off .NET Framework" option in System Features

    I tried doing this, but I don't understand what it means. Can anyone help me?

  • Soso Wang
    Soso Wang about 10 years
    It is already turned on in my system and I don't see any entry for .net 3.5 in Control Panel programs list?
  • Eyal
    Eyal about 10 years
    @teen If the box is checked, why do you think .NET 3.5 is not already installed? I don't remember whether it shows up in the list of installed programs or not. It doesn't make sense that it would, considering it shows up as a Windows feature...
  • Man_From_India
    Man_From_India over 9 years
    @CodyGray I am using Windows 7. And I am going to develop ASP.NET webisite in Visual Studio. For me also dotnet framework 3.5.1 was checked in windows features. But when I am debugging/running that asp.net code, from Visual studio it is saying access is denied. But when I am creating a website using dotnet version 4.0 I can successfully run the asp code. I think there is some issue regarding dot net 3.5 framework. Can you please help?
  • Ƭᴇcʜιᴇ007
    Ƭᴇcʜιᴇ007 almost 9 years
    Note: In Windows 7, /All is not a valid option, just leave it out.
  • still_dreaming_1
    still_dreaming_1 almost 8 years
    On my system the "Turn Windows Features on or off" does not exist under "Programs" in "Control Panel".