Skip to content

Commit 3d22cff

Browse files
authored
adegeo Freshness part 1 (#47287)
* Update app not started * update guide for devs * versions-and-deps * Last of the date updates * Minor
1 parent 8af7fee commit 3d22cff

11 files changed

+25
-33
lines changed

docs/framework/install/application-not-started.md

Lines changed: 14 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
---
22
title: Fix .NET Framework 'This application could not be started'
33
description: Learn what to do if you see a 'This application could not be started' dialog box when running a .NET Framework application.
4-
ms.date: 02/13/2023
4+
ms.date: 07/10/2025
55
---
66
# "This application could not be started" error when running a .NET Framework application
77

8-
When you attempt to run a .NET Framework application, you may receive the "This application could not be started" error message. When this error is caused by an installed version of .NET Framework not being detected, or by .NET Framework being corrupted, use this article to try to solve that problem.
8+
When you attempt to run a .NET Framework application, you may receive the "This application could not be started" error message. When the cause of this error is that an application can't find .NET Framework, due to .NET Framework being corrupted, use this article to try to solve that problem.
99

1010
:::image type="content" source="media/application-not-started/app-could-not-be-started.png" alt-text="This application could not be started dialog box.":::
1111

12-
If you still can't run the application after completing all the steps in this article, then the issue may be caused by some other reason, like a corrupted file system, missing dependencies, or a problem with the application. In that case, you can try contacting the app publisher or post a question to [Microsoft Support Community](https://answers.microsoft.com/) or [Microsoft Q&A](/answers/tags/97/dotnet) for more help.
12+
If you still can't run the application after completing all the steps in this article, then the issue might be caused by a corrupted file system, missing dependencies, or a problem with the application. In that case, you can **try contacting the app publisher** or post a question to [Microsoft Q&A](/answers/tags/828/developer-technologies) for more help.
13+
14+
## Understand the problem
15+
16+
This error means that a specific application can't be started. The name of the program is the first part of the title bar before the message "This application could not be started," as highlighted in the following figure:
17+
18+
:::image type="content" source="media/application-not-started/app-could-not-be-started-details.png" alt-text="This application could not be started dialog box with the executable name highlighted.":::
19+
20+
In the previous figure, the name of the executable that caused this error is `mt.exe`. Try searching the internet for more information about the executable causing your problem.
1321

1422
## How to fix the error
1523

1624
To address this issue so that you can run your application, do the following:
1725

1826
1. Download the [.NET Framework Repair Tool (NetFxRepairTool.exe)](https://www.microsoft.com/download/details.aspx?id=30135). The tool runs automatically when the download completes.
1927

20-
1. If the .NET Framework Repair Tool recommends any additional action, such as those shown in the following figure, select **Next**.
28+
1. If the .NET Framework Repair Tool recommends any other action, such as those shown in the following figure, select **Next**.
2129

2230
:::image type="content" source="media/application-not-started/repair-tool-recommended-changes.png" alt-text="Repair tool recommended changes.":::
2331

24-
1. The .NET Framework Repair Tools displays a dialog box shown in the following figure to indicate that changes are complete. Leave the dialog box open while you to try rerun your application. This should succeed if the .NET Framework Repair Tool has identified and corrected a corrupted .NET Framework installation.
32+
1. The .NET Framework Repair Tools displays a dialog box shown in the following figure to indicate that changes are complete. Leave the dialog box open while you to try rerun your application. This succeeds if the .NET Framework Repair Tool corrected a corrupted .NET Framework installation.
2533

2634
:::image type="content" source="media/application-not-started/repair-tool-changes-complete.png" alt-text="Repair tool changes complete.":::
2735

@@ -31,26 +39,10 @@ To address this issue so that you can run your application, do the following:
3139

3240
:::image type="content" source="media/application-not-started/repair-tool-no-resolution.png" alt-text="Unable to resolve the problem with the repair tool.":::
3341

34-
1. If you still cannot run the application, install the latest version of .NET Framework that's supported by your version of Windows, as shown in the following table.
35-
36-
|Windows version|.NET Framework installation|
37-
|---|---|
38-
|Windows 10 Anniversary Update and later versions|[.NET Framework 4.8 Runtime](https://dotnet.microsoft.com/download/dotnet-framework/net48)|
39-
|Windows 10, Windows 10 November Update|[.NET Framework 4.6.2](https://dotnet.microsoft.com/download/dotnet-framework/net462)|
40-
|Windows 8.1|[.NET Framework 4.8 Runtime](https://dotnet.microsoft.com/download/dotnet-framework/net48)|
41-
|Windows 8|[.NET Framework 4.6.1](https://dotnet.microsoft.com/download/dotnet-framework/net461)|
42-
|Windows 7 SP1|[.NET Framework 4.8 Runtime](https://dotnet.microsoft.com/download/dotnet-framework/net48)|
43-
|Windows Vista SP2|[.NET Framework 4.6](https://dotnet.microsoft.com/download/dotnet-framework/net46)|
44-
45-
> [!NOTE]
46-
> .NET Framework 4.8 is preinstalled on Windows 11 and Windows 10 May 2019 Update and later versions.
42+
1. If you still can't run the application, install the latest version of .NET Framework that's supported by your version of Windows. For more information, see [Install .NET Framework on Windows and Windows Server](on-windows-and-server.md).
4743

4844
1. Attempt to launch the application.
4945

50-
1. In some cases, you may see a dialog box like the following, which asks you to install .NET Framework 3.5. Select **Download and install this feature** to install .NET Framework 3.5, then launch the application again.
51-
52-
:::image type="content" source="media/application-not-started/install-3-5.png" alt-text="Windows Features dialog box suggesting to install .NET Framework 3.5.":::
53-
5446
## See also
5547

5648
- [.NET Framework System Requirements](../get-started/system-requirements.md)

docs/framework/install/dotnet-35-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Install .NET Framework 3.5 on Windows
33
description: Learn how to install .NET Framework 3.5 on Windows and Windows Server. .NET Framework 3.5 can run apps that target .NET Framework 1.0 through 3.5.
4-
ms.date: 02/10/2025
4+
ms.date: 07/10/2025
55
---
66
# Install .NET Framework 3.5 on Windows and Windows Server
77

docs/framework/install/guide-for-developers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Install the .NET Framework developer pack or redistributable"
33
description: "Developers can download and install the .NET Framework developer pack and targeting pack. You can include the .NET Framework redistributable with your apps."
4-
ms.date: 02/23/2022
4+
ms.date: 07/10/2025
55
helpviewer_keywords:
66
- ".NET Framework redistributable package, downloading"
77
- ".NET Framework, installing"
@@ -31,7 +31,7 @@ Use the following table for quick links, or read further for details. To view th
3131

3232
| .NET Framework version | Installer (Developer Pack and Runtime) | Platform support |
3333
| ---------------------- | -------------------------------------- | ---------------- |
34-
|**4.8.1** | [.NET Framework 4.8.1](https://dotnet.microsoft.com/download/dotnet-framework/net481) | **Included in:**<br/><br/>[Visual Studio 2022 (version 17.3)](https://my.visualstudio.com/Downloads?q=visual%20studio%202017)<br/><br/> **You can install on:**<br/><br/>Windows 11<br/>Windows 10 version 21H2<br/>Windows 10 version 21H1<br/>Windows 10 version 20H2<br/>Windows Server 2022<br /><br/> (for a full list, see [system requirements](../get-started/system-requirements.md))|
34+
|**4.8.1** | [.NET Framework 4.8.1](https://dotnet.microsoft.com/download/dotnet-framework/net481) | **Included in:**<br/><br/>Windows 11 version 22H2<br/>[Visual Studio 2022 (version 17.3)](https://my.visualstudio.com/Downloads?q=visual%20studio%202017)<br/><br/> **You can install on:**<br/><br/>Windows 11<br/>Windows 10 version 21H2<br/>Windows 10 version 21H1<br/>Windows 10 version 20H2<br/>Windows Server 2022<br /><br/> (for a full list, see [system requirements](../get-started/system-requirements.md))|
3535
|**4.8** | [.NET Framework 4.8](https://dotnet.microsoft.com/download/dotnet-framework/net48) | **Included in:**<br/><br/>Windows 11<br/>Windows 10 May 2019 Update (and later versions)<br/>[Visual Studio 2019 (version 16.3)](https://my.visualstudio.com/Downloads?q=visual%20studio%202019)<br/><br/> **You can install on:**<br/><br/>Windows 10 October 2018 Update<br/>Windows 10 April 2018 Update<br/>Windows 10 Fall Creators Update<br/>Windows 10 Creators Update <br /> Windows 10 Anniversary Update<br /> Windows 8.1 and earlier<br />Windows Server 2022<br /> Windows Server 2019<br/>Windows Server, Version 1809<br/>Windows Server, Version 1803<br /><br/> (for a full list, see [system requirements](../get-started/system-requirements.md))|
3636
|**4.7.2** | [.NET Framework 4.7.2](https://dotnet.microsoft.com/download/dotnet-framework/net472) | **Included in:** <br/><br/>Windows 10 October 2018 Update<br/>Windows 10 April 2018 Update<br/>Windows Server 2019<br/>Windows Server, Version 1809<br/>Windows Server, Version 1803<br/>[Visual Studio 2017 (15.8 update)](https://my.visualstudio.com/Downloads?q=visual%20studio%202017)<br/><br/> **You can install on:**<br/> <br/>Windows 10 Fall Creators Update<br/>Windows 10 Creators Update <br /> Windows 10 Anniversary Update<br /> Windows 8.1 and earlier<br /> Windows Server, version 1709 and earlier<br /><br/> (for a full list, see [system requirements](../get-started/system-requirements.md))|
3737
|**4.7.1** | [.NET Framework 4.7.1](https://dotnet.microsoft.com/download/dotnet-framework/net471) | **Included in:** <br/><br/>Windows 10 Fall Creators Update<br/>Windows Server, version 1709<br/>[Visual Studio 2017 (15.5 update)](https://my.visualstudio.com/Downloads?q=visual%20studio%202017)<br/><br/> **You can install on:**<br/><br/> Windows 10 Creators Update <br /> Windows 10 Anniversary Update<br /> Windows 8.1 and earlier<br /> Windows Server 2016 and earlier<br /> (for a full list, see [system requirements](../get-started/system-requirements.md))|

docs/framework/install/how-to-determine-which-net-framework-updates-are-installed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: See installed .NET Framework security updates and hotfixes
33
description: Learn how to determine which .NET Framework security updates and hotfixes are installed on a computer.
4-
ms.date: 04/03/2024
4+
ms.date: 07/10/2025
55
dev_langs:
66
- "csharp"
77
- "vb"

docs/framework/install/how-to-determine-which-versions-are-installed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Determine which .NET Framework versions are installed
33
description: Use code, regedit.exe, or PowerShell to detect which versions of .NET Framework are installed on a machine by querying the Windows registry. Or, check Control Panel.
4-
ms.date: 02/14/2025
4+
ms.date: 07/10/2025
55
dev_langs:
66
- "csharp"
77
- "vb"

docs/framework/install/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: .NET Framework installation guide
33
description: Learn about how to install the .NET Framework on Windows, and which versions of Windows support .NET Framework.
4-
ms.date: 02/14/2025
4+
ms.date: 07/10/2025
55
---
66
# Installation guide
77

@@ -13,7 +13,7 @@ If you need to install .NET Framework 1.1 through 3.5, see [Install .NET Framewo
1313

1414
## Supported Windows versions
1515

16-
- [Windows 11](on-windows-and-server.md#windows-11) (.NET Framework 4.8 included)
16+
- [Windows 11](on-windows-and-server.md#windows-11) (.NET Framework 4.8 or .NET Framework 4.8.1 included)
1717
- [Windows 10](on-windows-and-server.md#windows-10) (.NET Framework 4.6.2 through 4.8 included)
1818
- [Windows Server 2025](on-windows-and-server.md#windows-server) (.NET Framework 4.8 included)
1919
- [Windows Server 2022](on-windows-and-server.md#windows-server) (.NET Framework 4.8 included)
Loading

docs/framework/install/on-windows-and-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Install .NET Framework on Windows
33
description: Learn how to install .NET Framework on Windows 11, Windows 10, and Windows Server. This article also includes information about .NET Framework and unsupported versions of Windows, such as Windows 8, Windows Vista, and Windows XP.
4-
ms.date: 02/12/2025
4+
ms.date: 07/10/2025
55
---
66
# Install .NET Framework on Windows and Windows Server
77

docs/framework/install/repair.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Repair the .NET Framework
33
description: Learn how to repair the .NET Framework
4-
ms.date: 08/03/2017
4+
ms.date: 07/10/2025
55
---
66

77
# Repair .NET Framework

docs/framework/install/troubleshoot-blocked-installations-and-uninstallations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Troubleshoot blocked .NET Framework installations and uninstallations"
33
description: "Troubleshoot issues you encounter that prevent installation of the .NET Framework. Consult status messages for information to resolve issues."
4-
ms.date: "06/19/2025"
4+
ms.date: 07/10/2025
55
helpviewer_keywords:
66
- ".NET Framework, troubleshooting blocked installations"
77
- "blocked .NET Framework installations, troubleshooting"

0 commit comments

Comments
 (0)