{"id":13596601,"url":"https://github.com/EliteLoser/DotNetVersionLister","last_synced_at":"2025-04-09T16:33:16.858Z","repository":{"id":61197440,"uuid":"143481538","full_name":"EliteLoser/DotNetVersionLister","owner":"EliteLoser","description":"Use Svendsen Tech's Get-STDotNetVersion function to get a list of installed .NET Framework versions on (remote) Windows computers. I also added a simple solution for .NET 5+","archived":false,"fork":false,"pushed_at":"2024-02-29T19:49:25.000Z","size":105,"stargazers_count":263,"open_issues_count":3,"forks_count":51,"subscribers_count":13,"default_branch":"master","last_synced_at":"2024-11-06T19:46:01.450Z","etag":null,"topics":["dotnet","dotnet-framework","powershell","script","version"],"latest_commit_sha":null,"homepage":"https://www.powershelladmin.com/wiki/List_installed_.NET_versions_on_remote_computers","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EliteLoser.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-03T23:20:05.000Z","updated_at":"2024-10-28T19:04:23.000Z","dependencies_parsed_at":"2023-11-10T18:26:46.976Z","dependency_job_id":"6d57b2ea-d6ad-4dac-b80f-1b991d9b1bbb","html_url":"https://github.com/EliteLoser/DotNetVersionLister","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliteLoser%2FDotNetVersionLister","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliteLoser%2FDotNetVersionLister/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliteLoser%2FDotNetVersionLister/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EliteLoser%2FDotNetVersionLister/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EliteLoser","download_url":"https://codeload.github.com/EliteLoser/DotNetVersionLister/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248068005,"owners_count":21042398,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dotnet","dotnet-framework","powershell","script","version"],"created_at":"2024-08-01T16:02:35.515Z","updated_at":"2025-04-09T16:33:11.848Z","avatar_url":"https://github.com/EliteLoser.png","language":"PowerShell","funding_links":[],"categories":["PowerShell"],"sub_categories":[],"readme":"# DotNetVersionLister\nGet a list of installed .NET Framework versions on (remote) Windows computers.\n\nAs of 2022-10-10 versions up to .NET 4.8.1 are supported/detected. It's based on the information in this article: https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed\n\nBlog documentation, parts outdated (duplicating (or fixing) it (t)here is tedious): https://www.powershelladmin.com/wiki/List_installed_.NET_versions_on_remote_computers \n\nIt's published to the PowerShell Gallery, so you can install/inspect/download with `Install-Module`, `Find-Module` and `Save-Module`. Link: https://www.powershellgallery.com/packages/DotNetVersionLister/ \n\n# New feature in October 2022\nObs. As of 2023-05-25, I have published the 3.1.4 module to the PowerShell Gallery. The latest version here on GitHub is now the same as the latest version in the PSGallery ( https://www.powershellgallery.com/packages/DotNetVersionLister/3.1.4 ).\n\nThought maybe I would wait to see if there is any feedback (doubtful).\n\nIn version 3.1.0 and up of the module, the build number is presented with a \"+\" trailing the version if it is not an exact match for a specific .NET Framework version. This increases the precision of the script as it formerly did not distinguish a higher build than the exact .NET Framework version.\n\n# .NET 5 and up\nSee https://github.com/EliteLoser/DotNetVersionLister/tree/master/5AndUp for .NET 5 and up (SDK and Runtime).\n\n\n# Installation and use\n\nExample installation for your user only:\n\n```\nInstall-Module -Name DotNetVersionLister -Scope CurrentUser #-Force\n```\n\nExample use:\n\n`Get-STDotNetVersion`\n\nand\n\n`Get-STDotNetVersion -ComputerName server1, server2, server3`\n\nor\n\n`Get-STDotNetVersion -ComputerName server1, server2, server3 -PSRemoting`\n\nExample output:\n\n```\nGet-STDotNetVersion -NoSummary\n\n\nComputerName : localhost\n\u003e=4.x        : 4.8.1\nv4\\Client    : Installed\nv4\\Full      : Installed\nv3.5         : Not installed (no key)\nv3.0         : Not installed (no key)\nv2.0.50727   : Not installed (no key)\nv1.1.4322    : Not installed (no key)\nPing         : True\nError        : \n```\n\n# Notes\n\nThe command/function name used to be `Get-DotNetVersion` in versions before v3 of the module. This is aliased if the command does not currently exist in the PowerShell session, but you have to either run `Get-STDotNetVersion` first to load it, as auto-load for `Get-DotNetVersion` does not work - or you can simply `Import-Module -Name DotNetVersionLister` first, as we had to on PowerShell v2.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEliteLoser%2FDotNetVersionLister","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FEliteLoser%2FDotNetVersionLister","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEliteLoser%2FDotNetVersionLister/lists"}