Files
WorkNote/SanPinPLM/报错处理/无法安装.NET Framework 3.5.md
2025-05-31 11:10:19 +08:00

35 lines
954 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 介绍
很多时候需要 `.NET Framework 3.5` 组件,但却安装不上,可以直接下载源文件进行安装
首先使用 `Win+R` 输入 `cmd` 打开命令行窗口
输入 `winver` 查看 `window` 版本信息
```powershell
winver
```
是查 **版本** 信息,不是内部版本
![](assets/Pasted%20image%2020250531105501.png)
根据不同的版本信息使用不同的源文件
[1809](Files/1809.7z) 版本使用此源文件
[1903、1909](Files/1903-1909.7z) 版本使用此源文件
[2004、20h2、21h1至22h2](Files/2004-20h2-21h1.7z) 版本使用此源文件
将源文件解压放入到C盘根目录下
可通过 **服务器管理器** 进行安装,选择 **指定备用源路径** 安装(备用源写 `C:\sxs`
![](assets/Pasted%20image%2020250531110803.png)
或者使用 `Win+R` 输入 `cmd` 打开命令行窗口
```powershell
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:"C:\sxs"
```