<?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 Re: Add-In not loading in Windows 7 64-bit OS in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528904#M135618</link>
    <description>&lt;P&gt;From the description, that sounds more like registry free. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're sure it's registry dependent, make sure you use the proper registry command.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;C:\Windows\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Since you're using 64bit, you'd need to use the bottom one when you register your addin.&lt;/P&gt;</description>
    <pubDate>Fri, 06 Jul 2012 11:33:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-07-06T11:33:19Z</dc:date>
    <item>
      <title>Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527120#M135613</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi Guys,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Already this post might be posted but i did not find any solutions on the internet. This might also seem a silly problem for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a bit of problem.&amp;nbsp;I have created a Addin for Inventor using Visual Studion 2010 Professional.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Addin Works fine for&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Windows XP Professional Service Pack 3 (64-bit OS)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;With Autodesk Inventor Professional 2012, 32-Bit Edition&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I need to Deploy the addin on another Machine with below configuration,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Windows 7 Professional Service Pack 1(64 bit OS)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Autodesk inventor Professional 2012, 64-Bit Edition.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to load my addin, it doesnot load, I tried to load it manually by Goint to&amp;nbsp;&lt;STRONG&gt;Tools-&amp;gt;Add-In&lt;/STRONG&gt;&amp;nbsp;and selecting my addin and selected "&lt;STRONG&gt;Loaded&lt;/STRONG&gt;",&amp;nbsp;Even then its not loading..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am struggling to get this done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Plz..Plz...Please guys let me know if there is any solution for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2012 10:58:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527120#M135613</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-05T10:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527204#M135614</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to start your AddIn from VS and debug the Activate-Sub. Somewhere there it fails. Or add following to the Activate-Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Public Sub Activate(ByVal oAddInSiteObject As Inventor.ApplicationAddInSite, ByVal bFirstTime As Boolean) Implements Inventor.ApplicationAddInServer.Activate
            Try

' Put in all of your code here

Catch ex As Exception
                System.Windows.Forms.MessageBox.Show(ex.Message &amp;amp; vbNewLine &amp;amp; vbNewLine &amp;amp; ex.ToString)
            End Try
        End Sub&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Maybe the displaying error message indicates what's going wrong.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2012 12:28:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527204#M135614</guid>
      <dc:creator>Ralf_Krieg</dc:creator>
      <dc:date>2012-07-05T12:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527216#M135615</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi Krieg,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have already tried this, there is not error at all. I have also used breakpoints, The execution wont stop.it will finish the whole execution and loads the inventor, but not the addin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any &amp;nbsp;other solution for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2012 12:35:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527216#M135615</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-05T12:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527394#M135616</link>
      <description>&lt;P&gt;Are you using registry free addins, or are you using the older style registry dependent addins?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If using the registry free version, post the file location of the dll file, then upload the .addin file. &amp;nbsp;It may help to determine the problem. &amp;nbsp;(the .addin is just an xml file. it has no information you'd need to worry about sharing)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2012 14:07:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3527394#M135616</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-05T14:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528604#M135617</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Register dependent Addin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While creating and addin there is a template in Visual Studio to create "Autodesk Inventor Addin". I am using this template to create a addin. Once i finish my coding for inventor i just change from debug mode to release mode and copy the dll and the xml file to the Bin folder of inventor installation path. And paste the Addin to the C:\Application data\Autodesk\Addin\.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thats all i do...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually i beginning my career in Customization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please provide any solution for this, many of you might solved this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 04:35:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528604#M135617</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T04:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528904#M135618</link>
      <description>&lt;P&gt;From the description, that sounds more like registry free. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're sure it's registry dependent, make sure you use the proper registry command.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;C:\Windows\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Since you're using 64bit, you'd need to use the bottom one when you register your addin.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 11:33:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528904#M135618</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T11:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528950#M135619</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to use it, can you please provide steps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 12:02:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528950#M135619</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T12:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528958#M135620</link>
      <description>&lt;P&gt;To register a new addin, enter this into the command line. Make sure to specify the full path to the dll file and the name of your addin. &amp;nbsp;&lt;SPAN&gt;Again, this is only if you're using a registry dependent addin.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe /codebase "C:\Program Files\yourFilePathHere\addinName.dll"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To unregister:&lt;/P&gt;&lt;P&gt;C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe /unregister "C:\Program Files\&lt;SPAN&gt;yourFilePathHere\addinName.dll"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 12:08:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3528958#M135620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T12:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529268#M135621</link>
      <description>&lt;P&gt;I am getting this message if i try to register or unregiter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;C:\Windows\Microsoft.NET\Framework64\v2.0.50727&amp;gt;RegAsm/codebase "C:\Program File&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;s\Autodesk\Inventor 2012\Bin\Modified.dll"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Microsoft (R) .NET Framework Assembly Registration Utility 2.0.50727.5420&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Copyright (C) Microsoft Corporation 1998-2004. All rights reserved.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RegAsm : error RA0000 : Failed to load 'C:\Program Files\Autodesk\Inventor 2012\&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Bin\Modified.dll' because it is not a valid .NET assembly&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 14:32:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529268#M135621</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T14:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529304#M135622</link>
      <description>&lt;P&gt;Alright. I'm beginning to run out of ideas. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Visual Studio, could you take a screenshot of the project "Application" tab with the "Assembly Information" showing as well??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, under build events, do you have anything in the post-build event command line?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 14:42:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529304#M135622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T14:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529356#M135623</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On post Build event COmmand Line i have the below statement&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;call "%VS100COMNTOOLS%vsvars32"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;mt.exe -manifest "$(ProjectDir)Modified.X.manifest" -outputresource:"$(TargetPath)";#1"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And i have attached both the screen shots.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 15:23:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529356#M135623</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T15:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529394#M135624</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you create a .addin file your AddIn is a registryfree. You don't need to register. Are you shure you compiled a 64-bit Version for the second client?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 15:25:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529394#M135624</guid>
      <dc:creator>Ralf_Krieg</dc:creator>
      <dc:date>2012-07-06T15:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529404#M135625</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok I didn't know that.addins created are registry free&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i have compile my project by setting the platform as X64 in Visual Studio, even then its not loading&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank YOU&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 15:29:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529404#M135625</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T15:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529406#M135626</link>
      <description>&lt;P&gt;That's what I thought. You are NOT using the old style registry dependent addin. You ARE using the newer, registry free addin. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Try changing your build events to end with a 2 instead of a 1.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;mt.exe -manifest "$(ProjectDir)Modified.X.manifest" -outputresource:"$(TargetPath)";#&lt;FONT color="#FF0000"&gt;2&lt;/FONT&gt;"&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Make sure your .addin and manifest file both have no blank lines. &amp;nbsp;For me this caused the addin to not load.&lt;/LI&gt;&lt;LI&gt;Inside the .addin file, check if you've set LoadBehavior. This is an optional property. You might try removing it until everything loads as expected.&lt;/LI&gt;&lt;LI&gt;In the .addin file, make sure the path to the .dll file is correct.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If none of that works, read this:&amp;nbsp;&lt;A target="_blank" href="http://modthemachine.typepad.com/my_weblog/2012/02/migrate-net-add-ins-to-registry-free.html"&gt;http://modthemachine.typepad.com/my_weblog/2012/02/migrate-net-add-ins-to-registry-free.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's about migrating from registry dependent to registry free, but you might still fidn some useful information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 15:29:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529406#M135626</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T15:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529414#M135627</link>
      <description>&lt;P&gt;To add to that, try setting it to compile as "Any CPU". &amp;nbsp;I have a registry free addin running on a 64 bit Win7 computer, and it's workign fine with that setting.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 15:31:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529414#M135627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T15:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529422#M135628</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Will update &amp;amp; verify and post reply...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank YOU&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jul 2012 15:35:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3529422#M135628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-06T15:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3530044#M135629</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Hi,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the steps, still not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are running out of ideas and i am running out of patience.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please buddy, is there any other setting required to make it run.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jul 2012 04:32:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3530044#M135629</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-07T04:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3530124#M135630</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's my last idea. In your screenshot "Application Tab.jpg" is the assembly version 1.0.* If I remember right, also in your manifest is the assembly version number defined. If the version of your dll and the version in your manifest differs, maybe the dll is just not found. Can you try to set the assembly version to 1.0.0.0 so there will be no automatic numbering on every compile run?&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jul 2012 11:05:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3530124#M135630</guid>
      <dc:creator>Ralf_Krieg</dc:creator>
      <dc:date>2012-07-07T11:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3530594#M135631</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"&amp;gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;lt;assemblyIdentity name="Modified" version="&lt;FONT color="#FF0000"&gt;1.0.0.0&lt;/FONT&gt;"&amp;gt;&amp;lt;/assemblyIdentity&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;lt;clrClass clsid="{9455f064-3077-4d24-877c-5fe935c43b74}" progid="Modified.StandardAddInServer" threadingModel="Both" name="Modified.Modified.StandardAddInServer" runtimeVersion=""&amp;gt;&amp;lt;/clrClass&amp;gt;&lt;BR /&gt;&amp;lt;file name="Modified.dll" hashalg="SHA1"&amp;gt;&amp;lt;/file&amp;gt;&lt;BR /&gt;&amp;lt;/assembly&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The version in manifest is same as mentioned in the Assembly Information in Application tab. Check the code above "Version is &amp;nbsp;Same"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img id="mansad" class="emoticon emoticon-mansad" src="https://forums.autodesk.com/i/smilies/16x16_man-sad.png" alt="Man Sad" title="Man Sad" /&gt;&lt;SPAN&gt;&lt;img id="mansad" class="emoticon emoticon-mansad" src="https://forums.autodesk.com/i/smilies/16x16_man-sad.png" alt="Man Sad" title="Man Sad" /&gt;&lt;SPAN&gt;&lt;img id="mansad" class="emoticon emoticon-mansad" src="https://forums.autodesk.com/i/smilies/16x16_man-sad.png" alt="Man Sad" title="Man Sad" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank You&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jul 2012 04:37:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3530594#M135631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-09T04:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Add-In not loading in Windows 7 64-bit OS</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3653650#M135632</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe&amp;nbsp;the problem is that you are using the wrong version of RegAsm. If&amp;nbsp;for example your AddIn targets .NET4 you should use the C:\WINDOWS\Microsoft.NET\Framework64\&lt;STRONG&gt;v4.0.30319&lt;/STRONG&gt;\RegAsm.exe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2012 13:31:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/add-in-not-loading-in-windows-7-64-bit-os/m-p/3653650#M135632</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-10T13:31:08Z</dc:date>
    </item>
  </channel>
</rss>

