메인 콘텐츠로 이동
  • 빠르고 간편하게 주문
  • 주문 보기 및 배송 상태 추적
  • 제품 목록을 생성 및 액세스
  • 회사 관리를 사용하여 Dell EMC 사이트, 제품 및 제품 수준 연락처를 관리하십시오.

Installing .NET 3.5 Framework on Microsoft Windows Server 2012

요약: Dell OS and Applications Solutions on Dell TechCenter - Project Sputnik, Microsoft Windows, Red Hat Linux, SUSE, Ubuntu, and more

이 문서는 자동으로 번역되었을 수 있습니다. 번역 품질에 대한 의견이 있는 경우 페이지 하단의 양식을 사용해 알려 주시기 바랍니다.

문서 콘텐츠


증상

This blog post was originally written by Michael Schroeder.

Comments are welcome! To suggest a blog topic or make other comments, contact
WinServerBlogs@dell.com.

Today, there are a lot of applications and utilities available that leverage the .NET 3.5 framework to function properly. With Windows Server 2012, Microsoft provides both the .NET 3.5 and 4.5 install options for any of your applications’ requirements. When installing the .NET 3.5 components, you must pay careful attention to a few details.   

When using Server Manager to install the .NET 3.5 feature you may run into the following message indicating the source files could not found:

SLN310559_en_US__1i_net1_server2012_cr_v1
Figure 1: Server Manager to install the .NET 3.5

Using PowerShell to install, we see a similar message stating "The source files could not be downloaded" along with the error 0x800f0906. In my case, the server is not connected to the internet to access the Windows Update servers.

SLN310559_en_US__2i_net2_server2012_cr_v1
Figure 2: PowerShell to install message

Going back and looking more closely at the Add Roles and Features wizard, you’ll see a warning at the top asking the following and also providing a "Specify an alternate source path" link at the bottom of the wizard.

SLN310559_en_US__3i_net3_server2012_cr_v1
Figure 3: Specify an alternate source path

Why do we need to provide source files for this feature and not others? After running the following PowerShell command on a Full GUI install, we see the install state is set to "Removed" for these components. The "Removed" install state indicates that the feature files are not available on the local server. This is the default for all editions of Windows Server 2012.

SLN310559_en_US__4i_net4_server2012_cr_v1
Figure 4: PowerShell command on a Full GUI

For those servers without a WSUS server present or a connection to Windows Update, where the necessary components can be retrieved, we’ll need to provide an alternate source path to the side-by-side store (sxs) on the Windows Server installation media to complete the feature installation.

We can choose one of the following installation methods:

1. Using the Add Roles and Features Wizard, specify an alternate source path using the link at the bottom of the wizard. For example, D: is my Windows Server DVD media.

D:\Sources\sxs
2. Using PowerShell, specify the source files path when installing. 
Install-WindowsFeature NET-Framework-Core –Source D:\Sources\sxs

3. Using DISM from the command prompt, specify the source files path parameter:
 
DISM /Online /Enable-Feature /FeatureName:NetFx3 /Source:d:\sources\sxs

4. Using a file share containing the sxs folder, specify the unc share path:
 
Install-WindowsFeature NET-Framework-Core –Source \\ServerName\ShareName\sxs
 

Additional Resources:

TechNet: Install or Uninstall Roles, Role Services, or Features


문서 속성


마지막 게시 날짜

21 2월 2021

버전

4

문서 유형

Solution