<?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: ACCORECONSOLE - unable to load assembly in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/13917520#M86219</link>
    <description>&lt;P&gt;Adding to this thread, for anyone with similar issues, that the profile you reference on the command line will only load if it contains a profile with a name that was not previously loaded. Hence if you want the profile in the file to be effective, you need to either remove the profile in AutoCAD or rename the profile (e.g. using a sequence number).&lt;/P&gt;</description>
    <pubDate>Mon, 24 Nov 2025 12:47:00 GMT</pubDate>
    <dc:creator>TwilightTumbler</dc:creator>
    <dc:date>2025-11-24T12:47:00Z</dc:date>
    <item>
      <title>ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683280#M14917</link>
      <description>&lt;P&gt;I am having trouble loading an assembly with ACCORECONSOLE.&amp;nbsp; The development path (local drive F:) is included in the "trusted paths".&amp;nbsp; If I use "NETLOAD" in autocad 2018, there is no warning - that tells me trusted path is working.&amp;nbsp; I have also "trusted" the folder that contains my "SCR" file.&amp;nbsp;&amp;nbsp;SECURELOAD is set to 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried adding&amp;nbsp;&lt;SPAN class="m" style="font-family: inherit;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="" style="font-family: inherit;"&gt;loadFromRemoteSources&lt;/SPAN&gt; &lt;SPAN class="at" style="font-family: inherit;"&gt;enabled&lt;/SPAN&gt;&lt;SPAN class="m" style="font-family: inherit;"&gt;="&lt;/SPAN&gt;&lt;SPAN class="av" style="font-family: inherit;"&gt;true&lt;/SPAN&gt;&lt;SPAN class="m" style="font-family: inherit;"&gt;"&lt;/SPAN&gt;&lt;SPAN class="m" style="font-family: inherit;"&gt;/&amp;gt; to&amp;nbsp;accoreconsole.exe.config but that does not help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Everything works fine if I copy my dll to&amp;nbsp;C:\Program Files\Autodesk\AutoCAD 2018.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 14:32:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683280#M14917</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2021-10-12T14:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683418#M14918</link>
      <description>&lt;P&gt;What Profile are you using in full AutoCAD (where the Trusted Path is added), and is that the same Profile being supplied as parameter when calling Core Console?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 15:36:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683418#M14918</guid>
      <dc:creator>BlackBox_</dc:creator>
      <dc:date>2021-10-12T15:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683705#M14919</link>
      <description>&lt;P&gt;ty! I have never worked with profiles. I added a profile, set it current, and exported it - the trusted folders are in the arg file and correct.&amp;nbsp; I added the profile to accoreconsole with /p but my dll would still not load from F: drive.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 17:35:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683705#M14919</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2021-10-12T17:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683810#M14920</link>
      <description>&lt;P&gt;You've not posted your code calling Core Console or the Script, so hard to guess.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you're now calling Core Console with the correct Profile, then just be mindful that&amp;nbsp;Trusted Path != SFSP (Support File Search Path)... Adding the folder as Trusted Path does not mean that the file can be found (if full file path is not also provided).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When an app is loaded via Autoloader .bundle, the app's required paths are appended to SFSP on startup.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just checked some of my own Core Console Scripts that NETLOAD assemblies and they all simply include the assembly's file name, which means that the file resides within a path that can be searched under SFSP:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;NETLOAD "YourAssemblyNameHere.dll"
YourCustomCommandHere&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 18:19:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10683810#M14920</guid>
      <dc:creator>BlackBox_</dc:creator>
      <dc:date>2021-10-12T18:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10693943#M14921</link>
      <description>&lt;P&gt;I got this to work by setting "TRUSTEDPATHS" in the core console to the path of my development folder.&amp;nbsp; Adding the /profile C3D_Metric switch did not work.&lt;/P&gt;&lt;P&gt;The core console remembers the new "TRUSTEDPATHS" value but I could not find where.&amp;nbsp; I tried to set the TRUSTEDPATHS value in the script but that did not work either.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Oct 2021 16:00:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/10693943#M14921</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2021-10-17T16:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/11778377#M14922</link>
      <description>&lt;P&gt;Could you please tell us how you set this ""TRUSTEDPATHS" in AcCoreConsole?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 09:40:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/11778377#M14922</guid>
      <dc:creator>FlorisvdG</dc:creator>
      <dc:date>2023-02-24T09:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/11807349#M14923</link>
      <description>&lt;P&gt;sorry for the late reply.&amp;nbsp; you can use the command line in accoreconsole the same as acad.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SETVAR &amp;lt;enter&amp;gt;&lt;/P&gt;&lt;P&gt;TRUSTEDPATHS &amp;lt;enter&amp;gt;&lt;/P&gt;&lt;P&gt;"the path you want to set"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just looked at this again in C3D 2023 and creating a profile in acad is the way to go. I also discovered the "LEGACYCODESEARCH" variable but have not tested that.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 14:59:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/11807349#M14923</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2023-03-08T14:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/11807562#M14924</link>
      <description>&lt;P&gt;Ah, Thanks. I forgot about my question actually.&lt;/P&gt;&lt;P&gt;I was unable to do it manually, so I figured out a way to do it in the registry using Powershell.&lt;BR /&gt;Here's the script in case anybody else wants to use it:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;$trustedPathsRegistryValue = "d:\..." 
$autocadKeys = Get-ChildItem "Registry::HKEY_CURRENT_USER\SOFTWARE\Autodesk\AutoCAD" -Recurse | Where-Object { $_.PSIsContainer -eq $true }
foreach ($key in $autocadKeys) {
    if($key.Name.Contains("Profiles") -and $key.Name.EndsWith("Variables"))
    {
        $path = ${key}.Name       
        $path = $path.Replace("HKEY_CURRENT_USER", "HKCU:")

        Write-Host "Setting Registry key: $path"

        Set-ItemProperty -Path $path -Name "TrustedPaths" -Value $trustedPathsRegistryValue
    }        
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 16:11:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/11807562#M14924</guid>
      <dc:creator>FlorisvdG</dc:creator>
      <dc:date>2023-03-08T16:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889832#M14925</link>
      <description>&lt;P&gt;I'm having the same problem, but nothing I've tried works. My dll loads into a running session of acad, but not core console.&lt;/P&gt;
&lt;P&gt;Here's the scr I'm running.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;TRUSTEDPATHS "C:\AcadCustom\Support_GS;C:\AcadCustom\Scripts"
NETLOAD "C:\AcadCustom\Support_GS\MeridianDrawingExtraction.dll" 
ExtractDataToCSV
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a bat I'm using to test it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;"C:\Program Files\Autodesk\AutoCAD 2023\AcCoreConsole.exe" /i Drawing2.dwg /s "C:\AcadCustom\Scripts\start.scr" /p C:\AcadCustom\Support_GS\AcCoreConsole.arg
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 18:43:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889832#M14925</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-07-10T18:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889848#M14926</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14801"&gt;@Ed__Jobe&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Shouldn't the DLL's path used for NETLOAD command in the script (start.scr) use "/" or "\\" to separate folder/file names?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 18:54:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889848#M14926</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2024-07-10T18:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889864#M14927</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/543921"&gt;@norman.yuan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried that originally, but it didn't work. I just tried it again and it fails to load. NETLOAD just keeps prompting for a filepath and tries to netload the next command. I'm stumped.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 19:00:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889864#M14927</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-07-10T19:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889891#M14928</link>
      <description>&lt;P&gt;OK, I think the second line of your script should be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;NETLOAD C:/AcadCustom/Support_GS/MeridianDrawingExtraction.dll &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;notice: no quote marks wrapping the path, because it is script input.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 19:13:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889891#M14928</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2024-07-10T19:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889964#M14929</link>
      <description>&lt;P&gt;No, I tried that before too, but it doesn't matter what path I supply. I commented out the netload line and did (findfile "MeridianDrawingExtraction.dll") and it spit out the full path. I also tried netloading another dll I've been using for years and it won't load either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also added (getvar "trustedpaths") to the script and the paths are not what the profile has. It seems that the profile is not having any effect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All this is just to try and debug. I wasn't able to get the command line arguments in Debug config to work either.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/543921"&gt;@norman.yuan&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1206685"&gt;@BlackBox_&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I altered my script and verified that the trustedpaths and SFSP is getting set. So it's something to do with permissions still and not file location.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 19:50:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12889964#M14929</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-07-10T19:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12890178#M14930</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/543921"&gt;@norman.yuan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ran (setvar "secureload" 0) and it worked, but there must be a way to get it to run when secureload is set to 2.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 21:46:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12890178#M14930</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-07-10T21:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12890200#M14931</link>
      <description>&lt;P&gt;I have used core console often, and always use /p switch to specify a profile to use and and trusted locations to load DLLs from are included in the profile. Never needed to set "secureload" to 0.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do see your startup argument includes the /p switch. So, the questions are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. does the DLL folder path is in the trusted locations? (I assume it is).&lt;/P&gt;
&lt;P&gt;2. which is the profile available for the user account that used to run the core console? In my case, I create the profile in AutoCAD desktop, then I run an EXE app that drives the core console (using Process.Start()), obviously the EXE, and then the core console, started by the EXE, runs with my user account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 22:01:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12890200#M14931</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2024-07-10T22:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12890220#M14932</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/543921"&gt;@norman.yuan&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;1. does the DLL folder path is in the trusted locations? (I assume it is). &lt;FONT color="#FF0000"&gt;Yes, and SFSP too.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. which is the profile available for the user account that used to run the core console? &lt;FONT color="#FF0000"&gt;I've been running the console from a bat file directly in a cmd window. I haven't been too confident that the /p profile settings are being honored. Although checking CPROFILE verified that it was active. I wanted to use a bat file because I want to just drag/drop files onto it for batch processing. I've been successful doing it this way when the script just executed lisp. But this time I want to use .NET instead of lisp.&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my case, I create the profile in AutoCAD desktop, then I run an EXE app that drives the core console (using Process.Start()), obviously the EXE, and then the core console, started by the EXE, runs with my user account. &lt;FONT color="#FF0000"&gt;I've been running the cmd window with my user account, which does not have admin rights.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;With SECURELOAD set to 0, I can now run the code in debug. I'm still doing research to see if there's a way to run with SECURELOAD set to 2.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 22:50:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/12890220#M14932</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2024-07-10T22:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/13917520#M86219</link>
      <description>&lt;P&gt;Adding to this thread, for anyone with similar issues, that the profile you reference on the command line will only load if it contains a profile with a name that was not previously loaded. Hence if you want the profile in the file to be effective, you need to either remove the profile in AutoCAD or rename the profile (e.g. using a sequence number).&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 12:47:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/13917520#M86219</guid>
      <dc:creator>TwilightTumbler</dc:creator>
      <dc:date>2025-11-24T12:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/13930813#M86252</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/81963"&gt;@fieldguy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may be interested in the core console scripter I posted recently. It runs multiple files at once, as it launches a core console session on each processor core. Source code included. I just updated to acad 2015 and 2026 so will upload that to forum in a bit.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 19:58:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/13930813#M86252</guid>
      <dc:creator>JamesMaeding</dc:creator>
      <dc:date>2025-12-03T19:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: ACCORECONSOLE - unable to load assembly</title>
      <link>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/13930904#M86254</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/296193"&gt;@JamesMaeding&lt;/a&gt;. I've been retired for a couple of years now so I won't be using the console ever again.&amp;nbsp; I still enjoy reading the forums and appreciate that you share your work though.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 21:18:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/accoreconsole-unable-to-load-assembly/m-p/13930904#M86254</guid>
      <dc:creator>fieldguy</dc:creator>
      <dc:date>2025-12-03T21:18:25Z</dc:date>
    </item>
  </channel>
</rss>

