All Projects → EliteLoser → Dotnetversionlister

EliteLoser / Dotnetversionlister

Licence: mit
Use Svendsen Tech's Get-STDotNetVersion function to get a list of installed .NET versions on (remote) Windows computers

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to Dotnetversionlister

Mysqlconnection
Simple library to make it much easier to use MySQL in Visual Studio projects
Stars: ✭ 6 (-94.06%)
Mutual labels:  dotnet-framework
Crunchyroll Downloader
A little GUI to download crap from crunchyroll.
Stars: ✭ 54 (-46.53%)
Mutual labels:  dotnet-framework
Quick Screen Recorder
Lightweight desktop screen recorder for Windows.
Stars: ✭ 80 (-20.79%)
Mutual labels:  dotnet-framework
Formdraggerdemo
一个可在窗体内随意拖动窗体的方案
Stars: ✭ 24 (-76.24%)
Mutual labels:  dotnet-framework
Obfuscar
Open source obfuscation tool for .NET assemblies
Stars: ✭ 1,040 (+929.7%)
Mutual labels:  dotnet-framework
Metav
Release and Versioning of Clojure projects using tools.deps
Stars: ✭ 62 (-38.61%)
Mutual labels:  version
Ffmediaelement
FFME: The Advanced WPF MediaElement (based on FFmpeg)
Stars: ✭ 733 (+625.74%)
Mutual labels:  dotnet-framework
Dockpanelsuite
DockPanel Suite - The Visual Studio inspired docking library for .NET WinForms
Stars: ✭ 1,326 (+1212.87%)
Mutual labels:  dotnet-framework
Apps Version Update
高扩展性的多APP版本更新API接口与后台管理系统
Stars: ✭ 50 (-50.5%)
Mutual labels:  version
Ef6
This is the codebase for Entity Framework 6 (previously maintained at https://entityframework.codeplex.com). Entity Framework Core is maintained at https://github.com/dotnet/efcore.
Stars: ✭ 1,218 (+1105.94%)
Mutual labels:  dotnet-framework
Ruby Gem Downloads Badge
Clean and simple gem downloads count badge, courtesy of http://shields.io/. You can checkout the application directly at the following URL:
Stars: ✭ 29 (-71.29%)
Mutual labels:  version
Grabver
Gradle Automatic Build Versioning Plugin - An easy Gradle plugin that follows semver.org rules to automatically generate the Patch version, Build number and Code version, while Major, Minor and Pre-Release suffix remain under our control.
Stars: ✭ 39 (-61.39%)
Mutual labels:  version
Checknewappversionavailable
It makes a request to Play Store to check if there is a new version of your published app
Stars: ✭ 69 (-31.68%)
Mutual labels:  version
Arma3launcherlib
Simple .NET library containing everything needed for a custom Arma 3 launcher.
Stars: ✭ 7 (-93.07%)
Mutual labels:  dotnet-framework
Minion
Background job system for .NET applications
Stars: ✭ 94 (-6.93%)
Mutual labels:  dotnet-framework
Tweetinvi
Tweetinvi, an intuitive Twitter C# library for the REST and Stream API. It supports .NET, .NETCore, UAP (Xamarin)...
Stars: ✭ 812 (+703.96%)
Mutual labels:  dotnet-framework
Virtualizingwrappanel
Implementation of a VirtualizingWrapPanel for WPF running .NET Framework 4.5+ or .NET Core 3.0+
Stars: ✭ 59 (-41.58%)
Mutual labels:  dotnet-framework
Mailmergelib
MailMergeLib is a mail message client library which provides comfortable mail merge capabilities for text, inline images and attachments, as well as good throughput and fault tolerance for sending mail messages.
Stars: ✭ 97 (-3.96%)
Mutual labels:  dotnet-framework
Android Prince Of Versions
Android library for handling application updates.
Stars: ✭ 94 (-6.93%)
Mutual labels:  version
Openrails
Open Rails: free train simulator that supports the world's largest range of digital content.
Stars: ✭ 76 (-24.75%)
Mutual labels:  dotnet-framework

DotNetVersionLister

Get a list of installed .NET versions on (remote) Windows computers.

As of 2019-06-18 versions up to .NET 4.8 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

Blog documentation (I'm too lazy to duplicate here): https://www.powershelladmin.com/wiki/List_installed_.NET_versions_on_remote_computers

It'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/

Example installation for your user only:

Install-Module -Name DotNetVersionLister -Scope CurrentUser #-Force

Example use:

Get-STDotNetVersion

and

Get-STDotNetVersion -ComputerName server1, server2, server3

or

Get-STDotNetVersion -ComputerName server1, server2, server3 -PSRemoting

Example output:

Get-STDotNetVersion -NoSummary


ComputerName : localhost
>=4.x        : 4.6.2
v4\Client    : Installed
v4\Full      : Installed
v3.5         : Not installed (no key)
v3.0         : Not installed (no key)
v2.0.50727   : Not installed (no key)
v1.1.4322    : Not installed (no key)
Ping         : True
Error        : 

Notes

The 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.

NB! Note made 2019-02-15: I got some issues with publishing right now, so the version in the PowerShell gallery is still 2.2.6. I will direct my mental energy in such a way that the module is eventually published when the energy patterns align. 2.2.6 uses Get-DotNetVersion not Get-STDotNetVersion, while the version you can git clone here is the new one.

Published at last

At around 5 AM on a sleepless night January 27, 2020, the energy patterns aligned. The new v3.0.1 module is published. Let me know if I broke anything.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].