what is Visual Studio 2008 Shell (integrated mode)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T10:09:09Z http://stackoverflow.com/feeds/question/845152 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/845152/what-is-visual-studio-2008-shell-integrated-mode 0 what is Visual Studio 2008 Shell (integrated mode)? George2 2009-05-10T11:32:31Z 2009-05-11T14:29:54Z <p>Hello everyone,</p> <p>I am new to Visual Studio 2008 Shell (integrated mode), I just want to know what is its function? (I did not find much clearly from the web.)</p> <p>From <a href="http://msdn.microsoft.com/en-us/vstudio/bb510103.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/vstudio/bb510103.aspx</a> looks like it is some interface/framework to allow tools to integrate with VSTS IDE. My question is whether any Microsoft VSTS tools (like databse designer and other tools in VSTS) dependent on VSTS Shell? I am asking this question because it is conflicting with SQL Server 2008, and I want to make sure that if I uninstaill VSTS Shell, it does not impact anything.</p> <p>thanks in advance, George</p> http://stackoverflow.com/questions/845152/what-is-visual-studio-2008-shell-integrated-mode/845168#845168 2 Answer by James Avery for what is Visual Studio 2008 Shell (integrated mode)? James Avery 2009-05-10T11:41:53Z 2009-05-10T11:41:53Z <p>SQL Server 2008 Management Studio using the VS 2008 Shell. (That's why it looks and feels just like Visual Studio).</p> http://stackoverflow.com/questions/845152/what-is-visual-studio-2008-shell-integrated-mode/845170#845170 2 Answer by Mehrdad Afshari for what is Visual Studio 2008 Shell (integrated mode)? Mehrdad Afshari 2009-05-10T11:42:53Z 2009-05-10T11:42:53Z <p>Visual Studio Shell is an extensibility mechanism provided to use Visual Studio core platform to provide your own tools. It has two modes. In "Isolated Mode," it'll always set up a separate instance of Visual Studio that hosts your tool. In "Integrated Mode," it'll only install a new VS instance if there's no one already available. If one is already there, it'll integrate with it. I don't think removing it causes any problems for a VS installation. It seems to be smart enough to handle it (it might break a third party tool, however).</p> http://stackoverflow.com/questions/845152/what-is-visual-studio-2008-shell-integrated-mode/845173#845173 1 Answer by Wayne for what is Visual Studio 2008 Shell (integrated mode)? Wayne 2009-05-10T11:44:55Z 2009-05-10T11:44:55Z <p>The shell version means that applications can merge into the shell and be used independently. Isolated mode means that this version only performs one task and is a complete separate application..</p> <p>See: <a href="http://msdn.microsoft.com/en-us/vsx2008/products/bb933751.aspx" rel="nofollow">VS2k8 Shell</a></p>