Forum Discussion
PaulRBoyer
Jun 21, 2023Copper Contributor
Windows Server 2019 Cannot Install .NET 3.5
I am running Windows Server 2019 (Version 1809, Build 17763.4499) and I cannot install .NET Framework 3.5. Below is the current installation status of the feature on my machine: PS > Get-Wind...
abbodi1406
Jun 21, 2023Iron Contributor
Temporary extract the offline cab file from installation media and add it as regular update (not FOD)
md %systemdrive%\tempnetfx3
expand.exe -f:* D:\Sources\SxS\microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab %systemdrive%\tempnetfx3 >nul
dism.exe /Online /Add-Package /PackagePath:"%systemdrive%\tempnetfx3\update.mum"
rd /s /q %systemdrive%\tempnetfx3
G0rdanPopovski
Dec 13, 2024Copper Contributor
Thanks this worked for me, had a bit of trouble creating and then running the file from the directory but eventually after some tinkering it worked.