Home > OS >  How can solve problem restart needed while install SSIS on Visual Studio
How can solve problem restart needed while install SSIS on Visual Studio

Time:03-04

I have Visual Studio 2019 Pro Version 16.11.10 and try to install SSIS 15.0.2000.170 but face with this error:

Enter image description here

and this is the log file:

Enter image description here

CodePudding user response:

This is not a blocking point.

Just restart your machine.

CodePudding user response:

As shown in the log screenshot you provided, the error was thrown while trying to install the Microsoft .NET Framework 4.5.1 Multi-Targeting pack (4.5.50932).

As mentioned in the SQL Server Integration Service projects extension page, if you are trying to install the SSIS extension offline, you should make sure that the following prerequisites are installed with Visual Studio:

  • Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[16.0,)" DisplayName="C# and Visual Basic"
  • Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[16.0,)" DisplayName="Visual Studio core editor"
  • Prerequisite Id="Microsoft.VisualStudio.Component.SQL.SSDT" Version="[16.0,)" DisplayName="SQL Server Data Tools"
  • Prerequisite Id="Microsoft.Net.Component.4.TargetingPack" Version="[16.0,)" DisplayName=".NET Framework 4 targeting pack"
  • Prerequisite Id="Microsoft.Net.Component.4.5.TargetingPack" Version="[16.0,)" DisplayName=".NET Framework 4.5 targeting pack"
  • Prerequisite Id="Microsoft.Net.Component.4.7.TargetingPack" Version="[16.0,)" DisplayName=".NET Framework 4.7 targeting pack"

You can download the Microsoft .NET Framework 4.5.1 Multi-Targeting pack from the following link.


Similar issues

  • Related