How do I install the .NET Framework 3.5?

Gary Moore Jr 0 Reputation points
2024-10-24T17:53:30.9266667+00:00

When attempting to turn on the Windows feature for .NET 3.5, I receive the error "The changes couldn't be completed. Please reboot your computer and try again. Error code: 0x800F0950.

The system is on 22H2 and has received the latest Windows update.

I have attempted to install .NET 3.5 from the website and run commands through PowerShell to enable the feature with no success. Any suggestions?

Developer technologies .NET Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2024-10-25T02:23:57.2866667+00:00

    Hi,@Gary Moore Jr. Welcome to Microsoft Q&A. 

    1.Make sure Windows Update service is running and check if there are any pending updates. If so, install them first and restart the computer.

    How to run Windows Update service:

    First open the run dialog box with Win+R, then enter services.msc and confirm.

    Picture1

    Then find Windows Update in Services.

    Picture1

    Double-click to modify the configuration, change the Service status to Start. Once the modification is complete, Apply and OK.

     

    2.Use DISM command to enable .NET Framework 3.5. Open Command Prompt (Run as Administrator) and enter the following command:

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

    More detailed documentation:

    https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/deploy-net-framework-35-by-using-deployment-image-servicing-and-management--dism?view=windows-11#for-an-online-reference-image-that-can-access-windows-update


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.