Resolving SSDT-BI Installation with IsVisualStudio2012ProInstalled() error

Recently I was building a new virtual machine for presentations, and loaded up my usual battery – Windows 7, SQL Server 2012, and SSDT-BI.  The installation of these pieces went as expected, and everything appeared to work well – until I attempted to execute an SSIS package on this new setup.  When I did so, I received the following cryptic error message:

image

Thinking that perhaps I had gotten a bad download for SSDT-BI, I started fresh again, downloading another copy of the bits and working through the machine build process, only to encounter the same error message again.

Fortunately, after just a bit of digging, I found that this is an issue that others have found when going through the same installation process.  I found this thread that points out that the issue occurs because one of the assemblies used by the SSIS designer has failed to properly register.  The solution is to re-register the assembly in question.  The exact steps to do so may vary depending on your OS version, the version of SQL Server, etc.  For my setup (Win7 x64, SQL Server 2012 Developer Edition w/ SP2, and SSDT-BI for Visual Studio 2012), the steps I used to correct the issue are below:

  • Open a command prompt window as administrator (right click the shortcut, and click Run As Administrator)
  • Change directories to C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0a\bin\NETFX 4.0 Tools\
  • Execute the following command: gacutil.exe /if “C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.SqlServer.Dts.Design.dll”

If the registration was successful, you’ll receive a confirmation message similar to below.

image

Thanks to TechNet user hazel_m_stu_o for the response on the thread mentioned above.

About the Author

Tim Mitchell
Tim Mitchell is a data architect and consultant who specializes in getting rid of data pain points. Need help with data warehousing, ETL, reporting, or training? If so, contact Tim for a no-obligation 30-minute chat.

2 Comments on "Resolving SSDT-BI Installation with IsVisualStudio2012ProInstalled() error"

  1. The temporary fix is working so far, but is not persistent and I have to perform these steps all the time.
    As I am lazy and I use PowerShell all the time, I added this to my $PROFILE :

    function VSopen {
    $VisualStudio2012 = “C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe”
    $SDKdir = “C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0a\bin\NETFX 4.0 Tools\”
    $GACUtilCommand = Join-Path $SDKdir ‘gacutil.exe’
    $SqlDesignDLLtoLoad = “C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.SqlServer.Dts.Design.dll”
    & “$GACUtilCommand” ‘/i’ “$SqlDesignDLLtoLoad” ‘/f’ ‘/silent’
    & “$VisualStudio2012”

    }

    in a powershell console, I type ‘vsopen’ to set the library and start Visual Studio 2012

    • tdmitch@gmail.com | October 17, 2014 at 6:48 am | Reply

      Preben, I had also read a few reports from others that they had taken these steps but the setting reverted upon each reboot. So far, my changes have held steady. Thanks for sharing the code snippet for those having this issue.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.