'How can solve problem restart needed while install SSIS on Visual Studio
Solution 1:[1]
This is not a blocking point.
Just restart your machine.
Solution 2:[2]
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
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Francesco Mantovani |
| Solution 2 | Hadi |


