Software

Microsoft .NET Windows Desktop Runtime 8.0

by Microsoft Corporation · MIT

.NET is a free, cross-platform, open-source developer platform for building many different types of applications.

Getting the right .NET 8 Desktop Runtime download

Microsoft publishes four different .NET downloads on the same page and they are easy to confuse. If an application told you to install .NET, the Desktop Runtime is almost certainly the one you want, and it is not the one the page pushes hardest.

The Desktop Runtime is what desktop applications need: it contains the base runtime plus the Windows Forms and WPF libraries that any normal Windows program uses to draw its interface.

The plain Runtime is smaller and lacks those interface libraries, so an application will start and then fail with a missing assembly. The ASP.NET Core Runtime is for web servers. The SDK is for writing .NET software, not running it, and is several times larger.

Architecture matters and the wrong one fails silently. Take x64 unless the application is specifically 32-bit, in which case you need x86 as well. Having both installed is normal.

Versions do not replace each other

An application built against .NET 8 needs the .NET 8 runtime specifically. Installing .NET 9 does not satisfy it, and both can be installed side by side without conflict. This is the single most common reason people install a runtime and get the same error again.

Desktop Runtime, not Runtime

The download page lists "Run desktop apps" and "Run server apps" close together. Picking the wrong one produces an application that launches and immediately crashes looking for WPF or Windows Forms assemblies.

Record

Latest version
8.0.30
Minimum Windows
6.1.7601
Package identifier
Microsoft.DotNet.DesktopRuntime.8

Official downloads

These URLs are the ones Microsoft Corporation declares in its own manifest. We do not proxy or shorten them, and we do not host a copy.

More than one architecture below. Check which one your Windows is if you are not sure.

Verify the file you downloaded

Run this against the file on disk. If the output does not match the hash below, the file is not what Microsoft Corporation published. Delete it.

Windows · PowerShell

Get-FileHash "windowsdesktop-runtime-8.0.30-win-x64.exe" -Algorithm SHA256

macOS · Linux

shasum -a 256 "windowsdesktop-runtime-8.0.30-win-x64.exe"

Expected output

8bd710afa5de396c9eb2a3b68d00279b7b9aca372a2443e9acd4f48ffdef3f2d

Got a different hash, or one you cannot place? Paste it into the hash checker and it will tell you which program and version it belongs to, past releases included.

Install Microsoft .NET Windows Desktop Runtime 8.0 silently

The unattended switch below is the one Microsoft Corporation declares in the installer manifest, not one we guessed by trying flags.

ARM64 · machine scope · publisher-declared

.\windowsdesktop-runtime-8.0.30-win-arm64.exe /quiet

64-bit · machine scope · publisher-declared

.\windowsdesktop-runtime-8.0.30-win-x64.exe /quiet

32-bit · machine scope · publisher-declared

.\windowsdesktop-runtime-8.0.30-win-x86.exe /quiet

Run it from the folder holding the downloaded file, in a terminal opened as administrator when the package installs for all users. Silent means no window and no prompts, so check the exit code rather than waiting for something to appear: 0 is success and 3010 means it worked but wants a reboot.

Silent install commands for every program we index · silent uninstall

Uninstall Microsoft .NET Windows Desktop Runtime 8.0 cleanly

Every guide on this tells you to hunt for the product code with Get-WmiObject or in the registry. You do not need to: it is published in the installer manifest, and it is printed below.

Product code · ARM64

{aaeeb2a9-2a46-4f98-b314-539a1136ae10}

Uninstall, with the usual prompts

msiexec /x {aaeeb2a9-2a46-4f98-b314-539a1136ae10}

Silent, for deployment

msiexec /x {aaeeb2a9-2a46-4f98-b314-539a1136ae10} /qn /norestart

Product code · 64-bit

{d374321a-d08b-4207-8ef4-6953f782a26c}

Uninstall, with the usual prompts

msiexec /x {d374321a-d08b-4207-8ef4-6953f782a26c}

Silent, for deployment

msiexec /x {d374321a-d08b-4207-8ef4-6953f782a26c} /qn /norestart

Product code · 32-bit

{43defb57-5b36-443a-ae84-197dc6b00476}

Uninstall, with the usual prompts

msiexec /x {43defb57-5b36-443a-ae84-197dc6b00476}

Silent, for deployment

msiexec /x {43defb57-5b36-443a-ae84-197dc6b00476} /qn /norestart

The product code changes with every version

The codes above belong to Microsoft .NET Windows Desktop Runtime 8.0 8.0.30, the version in our index. If you have an older release installed, its code is different and this command will report that the product is not installed. In that case run Get-Package -Name "Microsoft*" in PowerShell to read the code of what you actually have.

This removes the program as the publisher packaged it. Settings and files created after installation, typically under AppData, are deliberately left behind by the uninstaller and have to be deleted by hand if you want them gone.

Reinstalling and hitting error 1638? That is this same product code, and the command above is the fix.

Product codes for every program we index, with the msiexec switches and how to read the code off your own machine.

How we scored this 100 out of 100

SignalFindingPoints
SHA-256 hash published3 of 3 installers ship a SHA-256 hashWithout a published hash there is no way to prove the file you downloaded is the file the publisher built.30 / 30
Binary provenance3 on the publisher's own domainThe strongest signal against a repackaged installer: the file should come from the publisher, not from a mirror nobody vouches for.35 / 35
Served over HTTPS3 of 3 over HTTPSAn installer fetched over plain HTTP can be modified in transit.15 / 15
Licence declaredMITA declared licence tells you what you are actually allowed to do with the software.5 / 5

Is Microsoft .NET Windows Desktop Runtime 8.0 safe to download?

Yes, in the sense we can actually verify: the installer downloads from microsoft.com, which is a domain we have tied to Microsoft Corporation.

Every one of the 3 installers on this page comes with the SHA-256 Microsoft Corporation declared, so you do not have to take our word for it: hash the file you downloaded and compare.

What this does not tell you is whether the software itself is any good, or whether you want what it does once installed. A publisher can ship something you would rather not run and the download is still authentic. We answer the question we can measure and leave the other one to you.

If Windows says “Windows protected your PC” when you run it, that is SmartScreen reporting reputation, not a malware verdict — it shows up on perfectly legitimate software from small publishers and on releases that are simply new. The reverse matters more: no warning does not mean the file was checked.

How the 100/100 score is calculated · why the source matters more than the reputation

Install Microsoft .NET Windows Desktop Runtime 8.0 with winget

Windows ships with a package manager, and this program is in it. The identifier below is the one Microsoft's repository uses, which is also where the download URL and hash on this page come from.

Install

winget install --id Microsoft.DotNet.DesktopRuntime.8 --exact

Upgrade later

winget upgrade --id Microsoft.DotNet.DesktopRuntime.8

Why --exact: without it winget matches on name as well as identifier, and a search that returns more than one package makes it stop and ask rather than install. Pinning the identifier is what makes the command safe to put in a script.

Not installing anything, or getting an error back? The commands that actually come up covers upgrading everything at once, what --include-unknown is for, and why winget can be missing from a machine that should have it.

Old versions of Microsoft .NET Windows Desktop Runtime 8.020 with hashes

The version history of Microsoft .NET Windows Desktop Runtime 8.0, each release with the download URL the publisher declared at the time and the SHA-256 to check it against. Useful when an update breaks something and you need to downgrade to a build that worked.

We do not host any of these files and never re-upload them, which is the difference between this and an old-version download site.

8.0.29

  • windowsdesktop-runtime-8.0.29-win-arm64.exeARM64official URL

    FF7128D8B8869FBC0307ED8A61E2224C14BBEC8A8F65E6830B39FB2A368E7800

  • windowsdesktop-runtime-8.0.29-win-x64.exe64-bitofficial URL

    C0FFA16EFEB7EF3AC8100A6A9D7089D9C2904EE89F1815557A79A91BE584F775

  • windowsdesktop-runtime-8.0.29-win-x86.exe32-bitofficial URL

    F852986AF541324F515AB916FDBDCE6D038C4506DFEDA43AF0AED18DCE721EDD

8.0.28

  • windowsdesktop-runtime-8.0.28-win-arm64.exeARM64official URL

    7ADF4151676149A0369696612EB33B7929A3AD9057ED93FB327968EC60541DA9

  • windowsdesktop-runtime-8.0.28-win-x64.exe64-bitofficial URL

    8819B8680A7A7668097BB031A856A5469159C8D6A8CFB2A6B2C0BE44E74CB0C1

  • windowsdesktop-runtime-8.0.28-win-x86.exe32-bitofficial URL

    4410CCF9C51606982FB7D53CDE41642CC376ADB8444E413C6BA89BE361AB4C08

8.0.27

  • windowsdesktop-runtime-8.0.27-win-arm64.exeARM64official URL

    B0E33B589068AA4B568AC72D3F95DE03BCA51F6F76D83C883E6CD1A1594D5BE5

  • windowsdesktop-runtime-8.0.27-win-x64.exe64-bitofficial URL

    6756298049E9223656F38BEC7F6FA7DAC629676A0CC710AB2CBD831EA22A96F9

  • windowsdesktop-runtime-8.0.27-win-x86.exe32-bitofficial URL

    CBD643A92089AE18AC53DECF519C809C21099A12D5AEB335EB2240C523857E5D

8.0.26

  • windowsdesktop-runtime-8.0.26-win-arm64.exeARM64official URL

    5789563D75F66F99B97AA4972465948EFDB286BA186656A476B4CFE31FCD920A

  • windowsdesktop-runtime-8.0.26-win-x64.exe64-bitofficial URL

    1C20CD6D8F04ADBCEDDACB69EF8799AAFE5D6C7E898AB5434D5FD57D53B674D5

  • windowsdesktop-runtime-8.0.26-win-x86.exe32-bitofficial URL

    E043A3D97BBFD7FF0E041F6C4F59A9C7133CF360FE35870AC4694EE44A542789

8.0.24

  • windowsdesktop-runtime-8.0.24-win-arm64.exeARM64official URL

    2DD4F36C92444E4874E21F5582DCEB147986A506C7D796D1735473A55AF7B70B

  • windowsdesktop-runtime-8.0.24-win-x64.exe64-bitofficial URL

    4A53B5AF35F70641FB1CF392D0ECF5D0C6C630383500EDA4F8DBB683F37DCCBB

  • windowsdesktop-runtime-8.0.24-win-x86.exe32-bitofficial URL

    32C828FC37D352B7BF2DD1346566B2893DBE00B4FE6B3FEE5E59130DFBE934AA

8.0.23

  • windowsdesktop-runtime-8.0.23-win-arm64.exeARM64official URL

    FAD1F3FEFA7E9E3F291E4F54FEB33D075D090C55BA79A1A456E27E65A2AECCAF

  • windowsdesktop-runtime-8.0.23-win-x64.exe64-bitofficial URL

    36CB04562B6F4E93748517A0E1B417DE2B5A06A5BF6E9BF7D0EC8F8BC5E4587C

  • windowsdesktop-runtime-8.0.23-win-x86.exe32-bitofficial URL

    594916420CF37E95DE77C4B17682711A94DDEF8DD29E9F0197EC80EB4C48FA9B

8.0.22

  • windowsdesktop-runtime-8.0.22-win-arm64.exeARM64official URL

    398E1D493D5D0DE7C1CAD082A5202BB62B985F475E6F696717F482B8FD2ADBA7

  • windowsdesktop-runtime-8.0.22-win-x64.exe64-bitofficial URL

    EC0D3238ACBF55247EB57C5DBBE294504D0E8E48631094E0EE4C90F0764D83EF

  • windowsdesktop-runtime-8.0.22-win-x86.exe32-bitofficial URL

    2D143F77FA1572F8C9CFCDEEB4784ECE6D60FA8F4908BA2DA8109869D84D56BE

8.0.21

  • windowsdesktop-runtime-8.0.21-win-arm64.exeARM64official URL

    6B150427DCEB9EE91C3CC69C3FD77A5CCDCAF216BB0389DDB3528C01DF65FDE1

  • windowsdesktop-runtime-8.0.21-win-x64.exe64-bitofficial URL

    F551625BAD9ADABBA3269457240B8DC9448715BCDFF0C7AC5E7F8C05CBC7DE04

  • windowsdesktop-runtime-8.0.21-win-x86.exe32-bitofficial URL

    B24EEDFAB904688984639F8E55EE1826153A8487699B52EE04A58E1BA508B6F6

8.0.20

  • windowsdesktop-runtime-8.0.20-win-arm64.exeARM64official URL

    3782BB4751932F18D637C9A88A545C4E5AC24D96D1C7C9970CED6B80CC35898D

  • windowsdesktop-runtime-8.0.20-win-x64.exe64-bitofficial URL

    713E77616F7AF4ADC3E76EB6DAA1AC97CED643ECB36BAE474C7E2DD79B81DFFF

  • windowsdesktop-runtime-8.0.20-win-x86.exe32-bitofficial URL

    4DADC06C15D98AA58D201E786BEB53D8CF8F6AC8DA57C30F2B803C1D55A6C42B

8.0.19

  • windowsdesktop-runtime-8.0.19-win-arm64.exeARM64official URL

    04446AED04CE98D8F919143A1D7FC768D292E8EB1BBCA8EF34417C56D575D22A

  • windowsdesktop-runtime-8.0.19-win-x64.exe64-bitofficial URL

    EBA7F11215B22CED419AB7E080FADD0F3BC21431F588F27F4CC7ED32C9D4A12A

  • windowsdesktop-runtime-8.0.19-win-x86.exe32-bitofficial URL

    1A281E1EB9486291103455B90BD0D7D02B81F46D7B9E3B10115E60D309FF43AD

8.0.18

  • windowsdesktop-runtime-8.0.18-win-arm64.exeARM64official URL

    773485C638AE7A83BEBBFB977EAEE1CAC851DFE18E31518E5E41DD29F3ADCC29

  • windowsdesktop-runtime-8.0.18-win-x64.exe64-bitofficial URL

    69E5C0A91F8E3FFBA8E715038D482D8A38D3A6F8C3B2E977E3DCC955E176BD52

  • windowsdesktop-runtime-8.0.18-win-x86.exe32-bitofficial URL

    118A7174DBFBC67534B4802747DA9BEF3335E9F7C00469E8878BD2FF5C402934

8.0.17

  • windowsdesktop-runtime-8.0.17-win-arm64.exeARM64official URL

    79D68887957DBE719DDC4A2BDBEB344D9B9523CAEE33BE1A9987B1CDA6F0EE4C

  • windowsdesktop-runtime-8.0.17-win-x64.exe64-bitofficial URL

    2EF7C16B285C67FC971919320308F02A39AA5C0EF0F242C3F1EDC364DA65A0E7

  • windowsdesktop-runtime-8.0.17-win-x86.exe32-bitofficial URL

    2A92631EB6D6A487F238DA7546C5F287E55EE78773EF730183570CF84F585A20

8.0.16

  • windowsdesktop-runtime-8.0.16-win-arm64.exeARM64official URL

    EEB491A5CD37DBB64BCA9D43275CDF7068F2A5DE101E8A0FB735B2A24C913761

  • windowsdesktop-runtime-8.0.16-win-x64.exe64-bitofficial URL

    24B0E77466823F76175770F7E56D85C20A13140310CDDDB837C8007DD433B9EA

  • windowsdesktop-runtime-8.0.16-win-x86.exe32-bitofficial URL

    22BB5BC3239A283EE799DBB694F4C57DE77D11ED33E7A87A75CCC0D4B0F5AE46

8.0.15

  • windowsdesktop-runtime-8.0.15-win-arm64.exeARM64official URL

    12E91F7F18D5ACDFA7EAFF27274832FE7E98759A9BDC989C5B1F3B389A31FC43

  • windowsdesktop-runtime-8.0.15-win-x64.exe64-bitofficial URL

    6B7F9390184892CE65E5405DACAE596D28508C5B11A6EF292120399A1784B3E8

  • windowsdesktop-runtime-8.0.15-win-x86.exe32-bitofficial URL

    FB47085B8D85C2C46738F110BD870AD5A3F4E2780D3F38B14523F8F79297AD94

8.0.14

  • windowsdesktop-runtime-8.0.14-win-arm64.exeARM64official URL

    8D565FBA55A303B340A320C8555851920F6B376C745C4641A0FE990A2D71248F

  • windowsdesktop-runtime-8.0.14-win-x64.exe64-bitofficial URL

    FDBC07EC57EDACCF572268A3B28F5D4E7CABA912E36EEE842F349F9BCB79790C

  • windowsdesktop-runtime-8.0.14-win-x86.exe32-bitofficial URL

    0639BA46E33BF7A0589BF3175DC8F300FC0FA58FEE98E605277009F731385820

8.0.13

  • windowsdesktop-runtime-8.0.13-win-arm64.exeARM64official URL

    48DFF69CD23A11A30ADF08A4E27B084AC2220114F05A938CF692639DAC099FAC

  • windowsdesktop-runtime-8.0.13-win-x64.exe64-bitofficial URL

    EDD272EBC3BEB300B9F3972BD2B82FD95DB85C1817171F133A5BA5037F2CC74E

  • windowsdesktop-runtime-8.0.13-win-x86.exe32-bitofficial URL

    AE010C52C48A1A39207F1F70430663960A15B28CC5245E41476FEF9DDCEAD0E6

8.0.12

  • windowsdesktop-runtime-8.0.12-win-arm64.exeARM64official URL

    38A6BC18C179B737036E1EC02AFE7FAA8210B976C6AD7A50F12C724FB758FFC9

  • windowsdesktop-runtime-8.0.12-win-x64.exe64-bitofficial URL

    CB51B559F343CB56E23CAD2E5AF8C4D1701E221A0A2A4116193A2A9375568814

  • windowsdesktop-runtime-8.0.12-win-x86.exe32-bitofficial URL

    340E30C8611AF3800B74F0560F0B6F3FEAB82EE5CFA3FC0D115B84B08BD5456D

8.0.11

  • windowsdesktop-runtime-8.0.11-win-arm64.exeARM64official URL

    27EE4E673C15514291CD8D9D8A5240BCB6788220F85FC622479B9F62E2E21339

  • windowsdesktop-runtime-8.0.11-win-x64.exe64-bitofficial URL

    7A418127FB8510CFEFC6B9DB220168B851EF2748F8252829997B3C61510C830A

  • windowsdesktop-runtime-8.0.11-win-x86.exe32-bitofficial URL

    20FFF5DAA81998E2C05529DA8A15AF982E84AEFD3D12E09DDDD981C5F5F60757

8.0.10

  • windowsdesktop-runtime-8.0.10-win-arm64.exeARM64official URL

    109CA9017ABF51D5FAF6EC29A69DE252DB5561586B1F22374A5A808E7FAB5C3C

  • windowsdesktop-runtime-8.0.10-win-x64.exe64-bitofficial URL

    5FF2AA4A8161382B991A91949992FED15CFEECF2AE4B8C55254733E5EF4C9FE8

  • windowsdesktop-runtime-8.0.10-win-x86.exe32-bitofficial URL

    FBDE6613EE2ADEFC82A86786EA266DE597644CBF9BC7364390037A5838197C6F

8.0.8

  • windowsdesktop-runtime-8.0.8-win-arm64.exeARM64official URL

    C162C98A2C872CD4B2D2E1E3716CA9D0828369199A36CA3800D968F49F87538F

  • windowsdesktop-runtime-8.0.8-win-x64.exe64-bitofficial URL

    1D8FC3EAAD1285D701A77216E923C8BE404DC2254D51779503828A3B3E1CDEB1

  • windowsdesktop-runtime-8.0.8-win-x86.exe32-bitofficial URL

    EA91F1D50CFACFF95EABB57C5DFF47843174F349F55D11D44D09850960DA58DD

Earlier releases8 more

The file names, so you can tell what you have. Their hashes are in the hash checker and in the downloadable archive.

  • 8.0.7windowsdesktop-runtime-8.0.7-win-arm64.exe · windowsdesktop-runtime-8.0.7-win-x64.exe · windowsdesktop-runtime-8.0.7-win-x86.exe
  • 8.0.6windowsdesktop-runtime-8.0.6-win-arm64.exe · windowsdesktop-runtime-8.0.6-win-x64.exe · windowsdesktop-runtime-8.0.6-win-x86.exe
  • 8.0.5windowsdesktop-runtime-8.0.5-win-arm64.exe · windowsdesktop-runtime-8.0.5-win-x64.exe · windowsdesktop-runtime-8.0.5-win-x86.exe
  • 8.0.4windowsdesktop-runtime-8.0.4-win-arm64.exe · windowsdesktop-runtime-8.0.4-win-x64.exe · windowsdesktop-runtime-8.0.4-win-x86.exe
  • 8.0.3windowsdesktop-runtime-8.0.3-win-arm64.exe · windowsdesktop-runtime-8.0.3-win-x64.exe · windowsdesktop-runtime-8.0.3-win-x86.exe
  • 8.0.2windowsdesktop-runtime-8.0.2-win-arm64.exe · windowsdesktop-runtime-8.0.2-win-x64.exe · windowsdesktop-runtime-8.0.2-win-x86.exe
  • 8.0.1windowsdesktop-runtime-8.0.1-win-arm64.exe · windowsdesktop-runtime-8.0.1-win-x64.exe · windowsdesktop-runtime-8.0.1-win-x86.exe
  • 8.0.0windowsdesktop-runtime-8.0.0-win-arm64.exe · windowsdesktop-runtime-8.0.0-win-x64.exe · windowsdesktop-runtime-8.0.0-win-x86.exe

Publishers take old builds offline without warning, so a link here can stop working even though the hash stays correct forever. If you already have the file, the hash is what matters: it tells you whether what you have is what they published.

Every version on record29

Every Microsoft .NET Windows Desktop Runtime 8.0 version with a published manifest, newest first. The most recent ones are listed above with their file names and hashes.

  • 8.0.30
  • 8.0.29
  • 8.0.28
  • 8.0.27
  • 8.0.26
  • 8.0.24
  • 8.0.23
  • 8.0.22
  • 8.0.21
  • 8.0.20
  • 8.0.19
  • 8.0.18
  • 8.0.17
  • 8.0.16
  • 8.0.15
  • 8.0.14
  • 8.0.13
  • 8.0.12
  • 8.0.11
  • 8.0.10
  • 8.0.8
  • 8.0.7
  • 8.0.6
  • 8.0.5
  • 8.0.4
  • 8.0.3
  • 8.0.2
  • 8.0.1
  • 8.0.0

Common questions

What is the difference between .NET Runtime and .NET Desktop Runtime?
The Desktop Runtime includes the Windows Forms and WPF libraries that desktop applications use for their interface. The plain Runtime does not, so a desktop program installed against it starts and then fails with a missing assembly error.
Do I need the .NET SDK or just the runtime?
The runtime, unless you are writing .NET software yourself. The SDK contains the compiler and build tools and is much larger. Running an application only requires the runtime.
Will .NET 9 work for an app that needs .NET 8?
No. Major versions install side by side and do not substitute for each other. An application targeting .NET 8 requires the .NET 8 runtime specifically.

Similar programs we index

Matched on the categories Microsoft Corporation and others declare in their own manifests, so the grouping is theirs rather than ours. Each one has its official URL and hash on the same terms as this page.

More programs we index

Not related to Microsoft .NET Windows Desktop Runtime 8.0 — just other entries, each with its own official URL and published hash.

Where our data comes from