

The output will show “ Not Present“.Ĭommand: Get-WindowsCapability -online | ? Name -like Rsat* | FTĭownload the MSDN/VLSC Feature On Demand ISO

Run the following command on a Windor 1809 PC to show that RSAT tools are not installed. Get RSAT Capabilities using PowerShell Command Must set the PowerShell execution policy to “ unrestricted” while you extract the ISO content.Must have local administrator rights on the source PC where you will extract the ISO content.Run the W10_FOD_RSAT_Offline_Install.ps1 (linked here) PowerShell script to perform the Offline install of the WindFeature On Demand RSAT features during the MDT/SCCM OSD task sequence.Run the W10_FOD_RSAT_Offline_CopySource.ps1 (linked here) PowerShell script to extract only the RSAT files.MDT / SCCM task sequence step configured to use the PowerShell install script set to “ Bypass“.Pre-download the MSDN/VLSC Wind(or 1809) Feature On Demand Part 1 ISO media only.Use the custom PowerShell script to extract only the RSAT files to keep the MDT/SCCM package source files small (154 MB for Win10 1903) since the full Feature On Demand ISO is 5GB!.


$osName=(Get-WmiObject Win32_OperatingSystem).Name $osVersionMajorMinor="$($osVersion.Major).$($osVersion.Minor)" $releaseId=(Get-Item "HKLM:SOFTWARE\Microsoft\Windows NT\CurrentVersion").GetValue('ReleaseID') # + CategoryInfo : InvalidArgument: (ReleaseId:String), PSArgumentException #+ (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Na. #Get-ItemProperty : Property ReleaseId does not exist at path HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows #$releaseId=(Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name ReleaseId).ReleaseId # This command does not work on Windows 2012R2
