dotnet framework update

Roger Roger 4,951 Reputation points
2021-09-09T12:27:52.687+00:00

Hi All

i have .Net Framework vulnerabilities detected on few of my servers.
How do i check what .net framework version is installed on the servers and how can i update them do we have offline installer for security updates or version updates as i dont have internet on few servers.

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,470 questions
.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,395 questions
Windows Server 2016
Windows Server 2016
A Microsoft server operating system that supports enterprise-level management updated to data storage.
2,377 questions
Windows Server 2012
Windows Server 2012
A Microsoft server operating system that supports enterprise-level management, data storage, applications, and communications.
1,532 questions
.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,125 questions
0 comments No comments
{count} votes

Accepted answer
  1. Limitless Technology 39,371 Reputation points
    2021-09-09T18:45:47.637+00:00

    Hello

    I would like to suggest if the servers Do not have Internet then you can use WSUS to push the updates to servers.
    Also , you can download and Install each updates manually KB number suggested by vulnerabilities report from https://www.catalog.update.microsoft.com/

    If the reply was helpful, please don’t forget to upvote or accept as answer.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 56,686 Reputation points
    2021-09-10T19:30:30.15+00:00

    on the server:

    dotnet --info

    you can also just do a dir

    dir "\servername\C$\Program Files\dotnet\shared\Microsoft.AspNetCore.App"
    dir "\servername\C$\Program Files\dotnet\shared\Microsoft.NETCore.App"

    just download the update versions you want, copy to server and run

    https://dotnet.microsoft.com/download/dotnet

    note: only 3.1 and 5.0 are currently supported

    0 comments No comments