Training
Module
MD-102 2-Deploy using the Microsoft Deployment Toolkit - Training
Discusses the shifts from traditional to modern management and where on-premises solutions best fit in today’s enterprise.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
You can use the Deployment Image Servicing and Management (DISM) command-line tool to create a modified image to deploy .NET Framework 3.5.
Important
For images that will support more than one language, you must add .NET Framework 3.5 binaries before adding any language packs. This order ensures that .NET Framework 3.5 language resources are installed correctly in the reference image and available to users and applications.
Open a command prompt with administrator user rights (Run as Administrator) in Windows 8 or Windows Server 2012.
To Install .NET Framework 3.5 feature files from Windows Update, use the following command:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All
Use /All to enable all parent features of the specified feature. For more information on DISM arguments, see Enable or Disable Windows Features Using DISM.
Check to see if the feature was enabled:
Run the following DISM command (image mounted to the c:\test\offline
folder and the installation media in the D:\
drive) to install .NET 3.5:
DISM /Image:C:\test\offline /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:D:\sources\sxs
/All
to enable all parent features of the specified feature./LimitAccess
to prevent DISM from contacting Windows Update/WSUS./Source
to specify the location of the files that are needed to restore the feature.Run the following command to look up the status of .NET Framework 3.5 (offline image mounted to c:\test\offline
):
DISM /Image:c:\test\offline /Get-Features /Format:Table
A status of Enable Pending indicates that the image must be brought online to complete the installation.
You can use DISM to add .NET Framework 3.5 and provide access to the \sources\SxS
folder on the installation media to an installation of Windows that is not connected to the Internet.
Warning
If you're not relying on Windows Update as the source for installing the .NET Framework 3.5, make sure to use sources from the same corresponding Windows operating system version. Using a source path that doesn't correspond to the same version of Windows won't prevent a mismatched version of .NET Framework 3.5 from being installed. This can cause the system to be in an unsupported and unserviceable state.
Open a command prompt with administrator user rights (Run as Administrator).
To install .NET Framework 3.5 from installation media located on the D: drive, use the following command:
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs
/All
to enable all parent features of the specified feature./LimitAccess
to prevent DISM from contacting Windows Update/WSUS./Source
to specify the location of the files that are needed to restore the feature.For more information on DISM arguments, see Enable or Disable Windows Features Using DISM.
Training
Module
MD-102 2-Deploy using the Microsoft Deployment Toolkit - Training
Discusses the shifts from traditional to modern management and where on-premises solutions best fit in today’s enterprise.