<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ADD-in from worklocaties vault in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-from-worklocaties-vault/m-p/13956740#M178753</link>
    <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Hi everyone, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Is it possible to launch an add-in from the workspace?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt; This is automatically synchronized on every PC. Everyone must use the same add-in.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Sometimes I have to update the add-in with new data once a month.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Currently, I have to do this separately on each PC (about 20 PCs). I want to automate this.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt; Can someone tell me if this is possible and what the best approach is?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;BR /&gt;Regards, Jos&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Dec 2025 12:59:12 GMT</pubDate>
    <dc:creator>JanHermans</dc:creator>
    <dc:date>2025-12-25T12:59:12Z</dc:date>
    <item>
      <title>ADD-in from worklocaties vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-from-worklocaties-vault/m-p/13956740#M178753</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Hi everyone, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Is it possible to launch an add-in from the workspace?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt; This is automatically synchronized on every PC. Everyone must use the same add-in.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Sometimes I have to update the add-in with new data once a month.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Currently, I have to do this separately on each PC (about 20 PCs). I want to automate this.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt; Can someone tell me if this is possible and what the best approach is?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;BR /&gt;Regards, Jos&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Dec 2025 12:59:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-from-worklocaties-vault/m-p/13956740#M178753</guid>
      <dc:creator>JanHermans</dc:creator>
      <dc:date>2025-12-25T12:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: ADD-in from worklocaties vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-from-worklocaties-vault/m-p/13957284#M178758</link>
      <description>&lt;P&gt;There is an ongoing, similar conversation in this &lt;A href="https://forums.autodesk.com/t5/inventor-programming-forum/self-updating-addin/td-p/6586617" target="_blank" rel="noopener"&gt;thread (Self Updating Add-In)&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2025 12:38:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-from-worklocaties-vault/m-p/13957284#M178758</guid>
      <dc:creator>TylerWarner33</dc:creator>
      <dc:date>2025-12-26T12:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: ADD-in from worklocaties vault</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-from-worklocaties-vault/m-p/13960088#M178776</link>
      <description>&lt;P&gt;sure it is possible, i am using it this way.. in addin file you must give whole .dll file path like in red line below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;Addin Type="Standard"&amp;gt;
  &amp;lt;!--Created for Autodesk Inventor Version 19.0--&amp;gt;
  &amp;lt;ClassId&amp;gt;...&amp;lt;/ClassId&amp;gt;
  &amp;lt;ClientId&amp;gt;...&amp;lt;/ClientId&amp;gt;
  &amp;lt;DisplayName&amp;gt;XXX&amp;lt;/DisplayName&amp;gt;
  &amp;lt;Description&amp;gt;XXX&amp;lt;/Description&amp;gt;
 &lt;FONT color="#FF0000"&gt; &amp;lt;Assembly&amp;gt;serverpath\name.dll&amp;lt;/Assembly&amp;gt;&lt;/FONT&gt;
  &amp;lt;LoadOnStartUp&amp;gt;1&amp;lt;/LoadOnStartUp&amp;gt;
  &amp;lt;UserUnloadable&amp;gt;0&amp;lt;/UserUnloadable&amp;gt;
  &amp;lt;Hidden&amp;gt;0&amp;lt;/Hidden&amp;gt;
  &amp;lt;SupportedSoftwareVersionGreaterThan&amp;gt;17..&amp;lt;/SupportedSoftwareVersionGreaterThan&amp;gt;
  &amp;lt;DataVersion&amp;gt;1&amp;lt;/DataVersion&amp;gt;
  &amp;lt;UserInterfaceVersion&amp;gt;1&amp;lt;/UserInterfaceVersion&amp;gt;
&amp;lt;/Addi&lt;/PRE&gt;&lt;P&gt;here is like it should look like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;Assembly&amp;gt;C:\Vault\ustawienia\Skrypt\Bin\create_files.dll&amp;lt;/Assembly&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 07:05:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-from-worklocaties-vault/m-p/13960088#M178776</guid>
      <dc:creator>marcin_otręba</dc:creator>
      <dc:date>2025-12-30T07:05:28Z</dc:date>
    </item>
  </channel>
</rss>

