Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The 'SqlStudio Profile Package' package did not load correctly

When I start up VS 2012 RC I get the following loading error message:

The 'SqlStudio Profile Package' package did not load correctly.

The problem may have been caused by a configuration change or by the installation
of another extension. You can get more information by examining the file 
'C:\Users\User\AppData\Roaming\Microsoft\VisualStudio\11.0\ActivityLog.xml'.

I also have SQL Server 2012 RTM installed.

What can I do to get rid of this warning?

like image 380
Martin Buberl Avatar asked Jul 14 '12 17:07

Martin Buberl


4 Answers

  1. Open Control Panel
  2. Open Programs and Features
  3. Locate all items named “Microsoft SQL Server 2012 Data-Tier App Framework"
    Note: There might be up to 4 such instances all with the above name
  4. Right click each of them and select Repair

That should solve this issue.

like image 76
Martin Buberl Avatar answered Oct 22 '22 11:10

Martin Buberl


Janaka solution worked for me. But if you do not want to lose your VS configuration, remove only the file :

    Microsoft.VisualStudio.Default.cache

from the folder

    %UserProfile%\AppData\Local\Microsoft\VisualStudio\11.0\ComponentModelCache

Hope it helps.

like image 39
Djames Avatar answered Oct 22 '22 11:10

Djames


Remove the following folders.

C:\Users\UName\AppData\Roaming\Microsoft\VisualStudio\10.0 C:\Users\UName\AppData\Local\Microsoft\VisualStudio\10.0

See this

like image 43
Janaka Priyadarshana Avatar answered Oct 22 '22 12:10

Janaka Priyadarshana


It turns out that (in my case), the Data Tools installer has a bug whereby you end up with a registry full of:

Microsoft Visual Studio 11.0Common7

...paths, when it should be:

Microsoft Visual Studio 11.0\Common7

Fixing all the values and keys fixes the problem (for me).

(ps: no other solution in this thread worked for me)

like image 31
Andrew C Avatar answered Oct 22 '22 11:10

Andrew C