Windows 10 .NET 3.5 安装

Windows 10 .NET 3.5 安装

我使用的是 Windows 10 版本 9841。我下载了完整版 .NET 3.5 SP 1。我双击安装程序,但什么也没发生。那个 .NET 版本与 Windows 10 不兼容吗?我需要它来安装 SQL Server 2014 Express。

答案1

本文解释了如何(未经测试)

http://winaero.com/blog/offline-install-of-net-framework-3-5-in-windows-10-using-dism/

Insert your Windows 10 DVD, or double click its ISO image, or insert your bootable flash drive with Windows 10, depending on what you have.
Open 'This PC' in File Explorer and note the drive letter of the installation media you have inserted. In my case it is disk D:
installation media drive d
Now open an elevated command prompt and type the following command:

Dism /online /enable-feature /featurename:NetFX3 /All /Source:D:\sources\sxs /LimitAccess

Replace D: with your drive letter for Windows 10 installation media.
dism

To save your time, I have prepared a simple batch file which will save your time and will find the inserted installation media automatically. It looks like this:

@echo off
Title .NET Framework 3.5 Offline Installer
for %%I in (D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist "%%I:\\sources\install.wim" set setupdrv=%%I
if defined setupdrv (
echo Found drive %setupdrv%
echo Installing .NET Framework 3.5...
Dism /online /enable-feature /featurename:NetFX3 /All /Source:%setupdrv%:\sources\sxs /LimitAccess
echo.
echo .NET Framework 3.5 should be installed
echo.
) else (
echo No installation media found!
echo Insert DVD or USB flash drive and run this file once again. 
echo.
)
pause

答案2

.Net Framework 应该已经内置于 Windows 10 中,您可以从控制面板启用它。

执行以下操作在 Windows 10 上启用 .Net Framework

  1. 按下键盘上的Windows+键。R
  2. 类型 ”appwiz.cp在“跑步”命令框并按“进入”。
  3. 在里面 ”程序和特点”窗口中,点击链接“打开或关闭 Windows 功能”。
  4. 检查“.NET Framework 3.5(包括 .NET 2.0 和 3.0)”选项可用。
  5. 如果是,则启用它,然后单击“好的”。
  6. 按照屏幕上的说明完成安装,然后重新启动计算机(如果出现提示)

答案3

有一个安装程序techgainer.com名为“.NET Framework 3.5 脱机安装程序”的程序可以帮助您解决此问题。为此,您只需要一张 Windows 安装 DVD!

在此处输入图片描述

相关内容