0

The MSSQL installer does not go through - it's missing .NET 3.5 framework to complete.

Unfortunately I've been unable to solve this, what I've tried:

Manually download and transfer the /sxs folder(which should contain the driver) to the C: drive, hereafter running this command in powershell(with admin rights): install-windowsfeature -name NET-Framework-Core -source c:\sxs - It does indeed move on to install it, but gets stuck at 68%.

I've also tried downloading and transferring the .NET 3.5 installer itself from Microsoft, and going through the official way of installing it (Server Manager). Same thing applies - it gets stuck roughly 68% into the process, and hereafter just informs that the service-feature could not be installed.

Quite out of options. Help appreciated.

cbll
  • 143
  • 1
  • 7

2 Answers2

1

I solved this by copying the .\sxs folder off the installation media for windows 8. Hereafter, I ran the command dism /online /enable-feature /featurename:NetFX3 /all /source:C:\sxs /LimitAccess and it installed fine.

cbll
  • 143
  • 1
  • 7
0

Use this batch file:

@echo off
Title .NET Framework 3.5 Offline Installer
Dism /online /enable-feature /featurename:NetFX3 /All /Source:.\sources\sxs /LimitAccess
echo.
echo .NET Framework 3.5 should be installed
echo.
pause
womble
  • 98,245