我下载了.Net 3.5 SP1 的大文件。
现在,当我尝试在 Windows Server 2012 上安装它时,我得到以下屏幕截图:
现在这是一个循环。当我尝试从服务器管理器安装时,我无法完成安装。它需要安装盘。
这是否意味着如果没有安装盘,我根本无法安装?
我下载了.Net 3.5 SP1 的大文件。
现在,当我尝试在 Windows Server 2012 上安装它时,我得到以下屏幕截图:
现在这是一个循环。当我尝试从服务器管理器安装时,我无法完成安装。它需要安装盘。
这是否意味着如果没有安装盘,我根本无法安装?
您的 WSUS 服务器可能会妨碍您,或者您无法访问 Microsoft 更新站点。
遵循这些指示。 “为可选组件安装和组件修复指定设置”对我有用。
当您没有 Windows Server 安装盘时,这是替代解决方案
就是这样!
你可以很容易地做到这一点。如果我们将来需要它,我们会为自己制作。
脚步:
创建一个bat文件
将此文本复制到 bat 文件中并保存:
@echo To install .NET 3.5 SP1 you need to find the Windows 8.1 DVD Installer or the ISO file.
@echo Please follow the steps below:
@echo 1. Insert the DVD Installer or mount the ISO file."
@echo 2. Open MyComputer and find out the drive letter of the DVD ROM that you just inserted DVD Disk or mounted ISO file."
@echo off
set /p DriveLetter="Please enter the letter of your DVD ROM: "
Dism.exe /online /enable-feature /featurename:NetFX3 /All /Source:%DriveLetter%:\sources\sxs /LimitAccess
@echo off
set /p DriveLetter="Press Enter to close"
通过右键单击以管理员身份运行 bat 文件,然后单击以管理员身份运行,其余的应该是不言自明的。
虽然为时已晚,但我想分享我的经验。希望这会有所帮助-
我的 Windows 更新正常,我无法从添加角色和功能向导安装 .Net Framework 3.5。以下两个命令实际上让我很开心 -
Dism.exe /online /enable-feature /featurename:NetFX3ServiceFeatures /Source:%DriveLetter%:\sources\sxs
Dism.exe /online /enable-feature /featurename:NetFX3 /Source:%DriveLetter%:\sources\sxs