1

I have this add-in for the sql server 2012 following everything the author mentioned but still stuck at this not really an error but not able to figure how to get past this

How to remove "Server name" items from history of SQL Server Management Studio

went thru the above question but not able to figure if this is anyway related ( i think not)

i am following everything the author mentioned here http://tsqltidy.blogspot.com/2011/08/how-to-write-sql-server-management_17.html how to get rid of this? (the error message) enter image description here

This the settings in my project properties "C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\Ssms.exe" is what in the Start external program

Community
  • 1
  • 1
JackyBoi
  • 2,695
  • 12
  • 42
  • 74
  • Looks like the command line argument `/resetaddin SSMSAddinDenali.Connect` isn't supported. The article was written for a CTP. Lots of things can change from those to release. Do you need that argument? Does it work if you remove that entirely? – Yuck Apr 09 '12 at 14:16
  • WOW that is as far as i went!!.. tks so much – JackyBoi Apr 09 '12 at 15:20
  • I have written an article about how to write add-in for SSMS 2012 and included working sample c# project. It is based on release version of SSMS 2012. Article is located [here](http://www.ssmsboost.com/Home/create-own-ssms-2012-add-in-sample-code-with-download), direct project download is [here](http://www.ssmsboost.com/samples/sample-ssms-2012-add-in.zip). Hope it will help you. – Andrei Rantsevich May 15 '12 at 23:24
  • This is for the RC version not the final version right? – JackyBoi May 16 '12 at 02:48

2 Answers2

3

I ran into the same issue and after reading this article I found out that the solution is to simply remove the /resetaddin ... parameter.

After doing this it worked fine for me.

Cristian Lupascu
  • 39,078
  • 16
  • 100
  • 137
  • ya tks man.. but i am kind of moved out from Database line.. anyway my past employer didnot encourage me. :(... tks for the direction – JackyBoi Mar 06 '13 at 14:30
1

I wrote the SSMS 2012 project on Codeproject, but I've been offline a while.

There was a breaking change between the RC and final version, the location of the Addin file has now moved. I've updated my website/doc to reflect this. it should be C:\ProgramData\Microsoft\MSEnvShared\AddIns

Cristian Lupascu
  • 39,078
  • 16
  • 100
  • 137
MarkPm
  • 194
  • 1
  • 4