{"id":277078,"date":"2021-06-17T16:30:06","date_gmt":"2021-06-17T13:30:06","guid":{"rendered":"https:\/\/en.buradabiliyorum.com\/how-to-check-the-net-framework-version-on-windows-10\/"},"modified":"2021-06-17T16:30:06","modified_gmt":"2021-06-17T13:30:06","slug":"how-to-check-the-net-framework-version-on-windows-10","status":"publish","type":"post","link":"https:\/\/buradabiliyorum.com\/en\/how-to-check-the-net-framework-version-on-windows-10\/","title":{"rendered":"#How to Check the .NET Framework Version on Windows 10"},"content":{"rendered":"<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_85 counter-hierarchy ez-toc-counter ez-toc-custom ez-toc-container-direction\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-6a3cd8b565873\" class=\"ez-toc-cssicon-toggle-label\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #dd3333;color:#dd3333\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #dd3333;color:#dd3333\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-6a3cd8b565873\" checked aria-label=\"Toggle\" \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/buradabiliyorum.com\/en\/how-to-check-the-net-framework-version-on-windows-10\/#Use_a_Command_to_View_the_NET_Framework_Version\" >Use a Command to View the .NET Framework Version<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/buradabiliyorum.com\/en\/how-to-check-the-net-framework-version-on-windows-10\/#Find_the_NET_Framework_Version_in_File_Explorer\" >Find the .NET Framework Version in File Explorer<\/a><\/li><\/ul><\/nav><\/div>\n<p><strong>&#8220;#How to Check the .NET Framework Version on Windows 10&#8221;<\/strong><\/p>\n<div>\n<img loading=\"lazy\" decoding=\"async\" class=\"type:primaryImage alignnone size-full wp-image-731432\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/windows_hero_1200x675.jpg?width=1198&amp;trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Windows 10 Logo on Blue Hero\" width=\"1200\" height=\"675\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>Do you want to find the .NET Framework version that\u2019s installed on your Windows 10 PC? You can use a PowerShell command or dig through File Explorer to find the .NET version number. Here\u2019s how.<\/p>\n<h2 role=\"heading\" aria-level=\"2\"><span class=\"ez-toc-section\" id=\"Use_a_Command_to_View_the_NET_Framework_Version\"><\/span>Use a Command to View the .NET Framework Version<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>A quick and easy way to find your .NET Framework version is by using a PowerShell command. Running this command lists all of the framework versions installed on your PC.<\/p>\n<p>To use this command, first, open PowerShell. Do this by opening the \u201cStart\u201d menu, searching for \u201cWindows PowerShell,\u201d and clicking it.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731926\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/11-launch-windows-powershell.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Select &quot;Windows PowerShell&quot; in Windows 10's Start menu.\" width=\"650\" height=\"270\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>On the PowerShell window, type the following command and press Enter:<\/p>\n<pre>Get-ChildItem 'HKLM:SOFTWAREMicrosoftNET Framework SetupNDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -Match '^(?!S)p{L}'} | Select PSChildName, version<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731927\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/12-run-framework-command.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Run a command to find .NET Framework version in PowerShell.\" width=\"650\" height=\"146\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>PowerShell displays a list of .NET Framework versions installed on your system. Here, the highest number is the most recent framework version available on your PC.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731928\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/13-view-framework-version.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"View the .NET Framework version in PowerShell.\" width=\"650\" height=\"340\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>You can now close the PowerShell window.<\/p>\n<h2 role=\"heading\" aria-level=\"2\"><span class=\"ez-toc-section\" id=\"Find_the_NET_Framework_Version_in_File_Explorer\"><\/span>Find the .NET Framework Version in File Explorer<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>You can also view the version that you have installed from File Explorer. You will need to head to the\u00a0C:WindowsMicrosoft.NETFramework folder on your system.<\/p>\n<p>To quickly open the \u201cFramework\u201d folder in File Explorer, first, open Run. Do this by pressing the Windows+R keys at the same time.<\/p>\n<p>In the Run box, type the following path and press Enter. If you\u2019ve installed Windows 10 in a drive other than the C drive, replace \u201cC\u201d with the letter of your Windows installation drive in the path below.<\/p>\n<pre>C:WindowsMicrosoft.NETFramework<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-732170\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/06\/14-open-framework-folder.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Open the &quot;Framework&quot; folder using Run on Windows 10.\" width=\"562\" height=\"322\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>In the Framework folder window, find the folder that shows the highest version number. Double-click this folder to open it.<\/p>\n<p>In the following screenshot, \u201cv4.0.30319\u201d is the highest numbered folder, and we\u2019ll open this one.<\/p>\n<blockquote class=\"admonishment_note\"><p><strong>Note:<\/strong> The other folders here represent various .NET Framework versions installed on your PC. Remember that your PC can have multiple .NET Framework versions installed on it.<\/p><\/blockquote>\n<p><strong>RELATED:<\/strong> <strong><em>What Is the Microsoft .NET Framework, and Why Is It Installed on My PC?<\/em><\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731921\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/6-open-version-folder.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Open .NET Framework's most recent version folder in File Explorer.\" width=\"650\" height=\"374\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>Find the \u201cAccessibility.dll\u201d file in the folder that opens.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731922\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/7-find-accessibility-file.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Find the &quot;Accessibility.dll&quot; file in File Explorer.\" width=\"650\" height=\"380\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>Right-click \u201cAccessibility.dll\u201d and select \u201cProperties.\u201d<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731923\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/8-accessibility-properties.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Right-click &quot;Accessibility.dll&quot; and choose &quot;Properties.&quot;\" width=\"650\" height=\"341\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>On the \u201cProperties\u201d window, click the \u201cDetails\u201d tab at the top.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731924\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/9-access-details-tab.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"Click the &quot;Details&quot; tab for the &quot;Accessibility.dll&quot; file.\" width=\"598\" height=\"401\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>The \u201cDetails\u201d tab shows various information about your selected file. Here, look for the value next to \u201cProduct version,\u201d as this value is the most recent .NET Framework version installed on your PC.<\/p>\n<p>In the following screenshot, that value is 4.8.4084.0.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-731925\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/10-find-net-framework-version.png?trim=1,1&amp;bg-color=000&amp;pad=1,1\" alt=\"&quot;Product version&quot; highlighted in &quot;Accessibility.dll&quot; file's &quot;Properties&quot; window.\" width=\"596\" height=\"347\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>Close the window when you\u2019ve checked your version. And that\u2019s all.<\/p>\n<hr\/>\n<p>Want to know your installed Java version? Finding that is equally easy.<\/p>\n<p><strong>RELATED:<\/strong> <strong><em>How to Check Your Java Version on Windows 10<\/em><\/strong><\/p>\n<\/div>\n<p><script>\n setTimeout(function(){\n  !function(f,b,e,v,n,t,s)\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';\n  n.queue=[];t=b.createElement(e);t.async=!0;\n  t.src=v;s=b.getElementsByTagName(e)[0];\n  s.parentNode.insertBefore(t,s) } (window, document,'script',\n  'https:\/\/connect.facebook.net\/en_US\/fbevents.js');\n   fbq('init', '335401813750447');\n   fbq('track', 'PageView');\n  },3000);\n<\/script><\/p>\n<blockquote><p><strong><span style=\"color: #ff6600;\">If you liked the article, do not forget to share it with your friends. Follow us on\u00a0<span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https:\/\/news.google.com\/publications\/CAAqBwgKMLG0nwswvr63Aw\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Google News<\/a><\/span>\u00a0too, click on the star and choose us from your favorites.<\/span><\/strong><\/p><\/blockquote>\n<blockquote>\n<p style=\"text-align: center;\">For forums sites go to <span style=\"color: #ff9900;\"><a style=\"color: #ff9900;\" href=\"https:\/\/forum.buradabiliyorum.com\/\" target=\"_blank\" rel=\"noopener\">Forum.BuradaBiliyorum.Com<\/a><\/span><\/strong><\/p>\n<\/blockquote>\n<blockquote>\n<p style=\"text-align: center;\"><strong>If you want to read more like this article, you can visit our <span style=\"color: #ff9900;\"><a style=\"color: #ff9900;\" href=\"https:\/\/en.buradabiliyorum.com\/technology\/\" target=\"_blank\" rel=\"noopener\">Technology category.<\/a><\/span><\/strong><\/p>\n<\/blockquote>\n<p><span style=\"color: black;\"><a style=\"color: #ff9900;\" href=\"https:\/\/www.howtogeek.com\/731913\/how-to-check-the-.net-framework-version-on-windows-10\/\" target=\"_blank\" rel=\"noopener\">Source<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;#How to Check the .NET Framework Version on Windows 10&#8221; Do you want to find the .NET Framework version that\u2019s installed on your Windows 10 PC? You can use a PowerShell command or dig through File Explorer to find the .NET version number. Here\u2019s how. Use a Command to View the .NET Framework Version A&#8230;<\/p>\n","protected":false},"author":1,"featured_media":277079,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/05\/windows_hero_1200x675.jpg?height=200p&trim=2,2,2,2","fifu_image_alt":"","footnotes":""},"categories":[18],"tags":[],"class_list":["post-277078","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"_links":{"self":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/posts\/277078","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/comments?post=277078"}],"version-history":[{"count":0,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/posts\/277078\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/media\/277079"}],"wp:attachment":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/media?parent=277078"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/categories?post=277078"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/tags?post=277078"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}