Home Screenshots Download Order Blog* Support
User Guide Style Tab Grouping Add-ins

Running add-ins from a network location in Visual Studio 2010+

When you download Tabs Studio add-ins to your computer for Visual Studio 2010+ from the Internet they may end up blocked by Windows:

Saver add-in marked as a file from another computer

Such add-in will not be visible in Tabs Studio Add-in Manager.

To solve this problem you can either unblock add-in dll file in Windows Explorer or add the loadFromRemoteSources element (see the MSDN reference) to "C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe.config":

<configuration>
   <runtime>
      <loadFromRemoteSources enabled="true"/>
   </runtime>
</configuration>
Return to Add-ins