Close Menu
    Facebook X (Twitter) Instagram
    Prajwal.orgPrajwal.org
    • Home
    • SCCM

      SCCM 2503 Upgrade New Features and Hotfixes

      April 30, 2025

      Create a Device Collection for SCCM 2409 Clients

      February 27, 2025

      Device Collection for SCCM 2403 Clients

      January 22, 2025

      SCCM 2403 Hotfixes, Upgrade and New Features

      January 21, 2025

      ConfigMgr 2401 Technical Preview Released

      January 22, 2025
    • Intune

      New Features in Intune 2502 release (February 2025)

      February 27, 2025

      Intune Service Release 2406 New Features (June 2024)

      June 23, 2024

      Microsoft Intune 2405 New Features (May 2024)

      May 29, 2024

      How to Disable Android Enterprise system app in Intune

      May 22, 2024

      Intune ends support for Android device administrator

      January 22, 2025
    • Windows 11

      How to Install WSUS Console on Windows 11

      January 22, 2025

      How to enable memory integrity using Group Policy

      January 22, 2025

      Uninstall Mail and Calendar Apps using PowerShell

      January 22, 2025

      How to Create Batch File to Delete Temp Files

      January 22, 2025

      How to Change RDP Port using PowerShell

      January 22, 2025
    • Contact
    Prajwal.orgPrajwal.org
    Home » Find Dot NET Version using PowerShell
    Windows 11

    Find Dot NET Version using PowerShell

    January 22, 20251,446 Views

    In this post I will show you how to find Dot NET version using PowerShell. PowerShell method is the most easiest and reliable method to check the .NET framework version on windows computer.

    The .NET Framework is a software development framework for building and running applications on Windows. Dot Net Framework is part of the .NET platform, a collection of technologies for building apps for Linux, macOS, Windows, iOS, Android, and more.

    There are several ways to find the Dot NET Framework version. You can also use the command prompt or registry to check the Dot NET Framework version. Your computer can be running different versions of Dot NET framework. Determining the latest .NET framework version is required in some cases.

    Sometimes you encounter an issue where the application requires a specific version of .NET Framework version installed on the computer. If you know the correct .NET framework version installed on the computer, it becomes easy to install the next version.

    At the time of writing this post, .NET Framework 4.8 is the latest version available. If you are running Configuration Manager in your setup, ensure you install .NET Framework 4.8 to avoid the prerequisites warning.

    Find Dot NET Version using PowerShell

    Using the following steps, you can use PowerShell to check the Dot Net version on your computer.

    • On your computer click Start and launch PowerShell as administrator.
    • In the PowerShell window, copy the below command and press enter key.
    • The output contains the list of .NET Framework versions installed on your computer.
    Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -Match '^(?!S)\p{L}'} | Select PSChildName, version
    Find Dot NET Version using PowerShell
    Find Dot NET Version using PowerShell

    If you look at the output, you can see all the client version number and full version. Full version indicates the latest installed Dot NET framework version.

    Check Release version of .NET using PowerShell

    There is another way to check the .NET Framework version using PowerShell. Run the below command in the PowerShell window to determine the release number.

    (Get-ItemProperty "HKLM:SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full").Release

    When you run the above command, it shows the release value. The Release value represents the version of .NET Framework installed. For instance, in the below screenshot, the PowerShell release value is 528372.

    Find Dot NET Version using PowerShell
    Find Dot NET Version using PowerShell

    The following PowerShell command can be used to check the value of the Release entry to determine whether .NET Framework 4.6.2 or later is installed.

    (Get-ItemPropertyValue -LiteralPath 'HKLM:SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full' -Name Release) -ge 394802
    Share. Facebook Twitter Pinterest LinkedIn Email
    Previous ArticleHow to Install WebView2 Extension in SCCM
    Next Article WSUS Sync Does not contain any known products classifications

    Related Posts

    Windows 11

    How to Install WSUS Console on Windows 11

    January 22, 2025
    Windows 11

    How to enable memory integrity using Group Policy

    January 22, 2025
    Windows 10

    Uninstall Mail and Calendar Apps using PowerShell

    January 22, 2025
    Latest Guides

    SCCM 2503 Upgrade New Features and Hotfixes

    New Features in Intune 2502 release (February 2025)

    Create a Device Collection for SCCM 2409 Clients

    Intune Service Release 2406 New Features (June 2024)

    Updated:June 23, 2024
    Popular Guides

    Uninstall Snipping Tool using PowerShell

    Updated:January 22, 2025

    How to Manually Install SCCM Client Agent

    Updated:January 22, 2025

    How to Create Batch File to Delete Temp Files

    Updated:January 22, 2025

    Disable Driver Signature Enforcement using CMD Prompt

    Updated:January 22, 2025
    Trending Posts

    List of SCCM Software Updates Log Files

    Updated:January 22, 2025

    How to Restart Computer from SCCM Console

    Updated:January 22, 2025

    How to Disable Bitdefender Notifications

    Updated:February 14, 2024

    New Features in Intune 2502 release (February 2025)

    © 2025 Prajwal.org | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.