<?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: Extract Data from 40,000 drawings in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/extract-data-from-40-000-drawings/m-p/14037820#M360795</link>
    <description>&lt;P&gt;Are all 40000 drawings in that one folder? If so, what happens if you only make it the first 5000? Maybe you're hitting some limit with the Data Extraction Wizard?&lt;/P&gt;</description>
    <pubDate>Sun, 01 Mar 2026 23:33:07 GMT</pubDate>
    <dc:creator>Tomislav.Golubovic</dc:creator>
    <dc:date>2026-03-01T23:33:07Z</dc:date>
    <item>
      <title>Extract Data from 40,000 drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/extract-data-from-40-000-drawings/m-p/14036372#M360779</link>
      <description>&lt;P&gt;I am trying to build a data extraction template that will be used to process extraction on over 40,000 drawings. My desired plan is to use powershell to loop through the&amp;nbsp;drawings (all in the same folder) and run accoreconsole and pass in the values via an autocad script (.scr) to export the data. I mostly need text items that are almost always located in a table in the bottom right corner of the document. One caveat is that there is not a single standard (there are a few different versions at least). So, one problem I am running into is when I build the dataextraction template (.dxex). I select the folder and then it loads all of the files. From there I am to select the various options, it's at that point it crashes while trying to apply all of the options to the full list of drawings (the "updating table" step, page 4 of 8 on the extract wizard)&lt;BR /&gt;&lt;BR /&gt;1. Is there a simple way to build a template to just extract "everything" from "every drawing in a folder"?&lt;/P&gt;&lt;P&gt;2. Is there a better approach to this entire endeavor?&lt;/P&gt;&lt;P&gt;3. I am not opposed to calling acad.exe via powershell, instead of accoreconsole but the problem - I think - is the same, I still need a dxex that will be used for all documents, right?&amp;nbsp;&lt;BR /&gt;4. Is there a way to "build" a dxex externally from the wizard?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both of the methods below work with a single drawing loaded in the extraction template. The problem is trying to build a template for "all drawings"&lt;BR /&gt;&lt;BR /&gt;here is an example of the accoreconsole.exe method, for a single drawing, called from powershell&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;$acc = "C:\Program Files\Autodesk\AutoCAD 2026\accoreconsole.exe"&lt;BR /&gt;$dwg = "E:\Docs\DWG\mydrawing.DWG"&lt;BR /&gt;$scr = "E:\Docs\Extract\Scripts\extract.scr"&lt;/P&gt;&lt;P&gt;&amp;amp; $acc /i $dwg /s $scr /l en-US&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;here is an example of the acad.exe method,&amp;nbsp;,for a single drawing, called from powershell&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;$acad = "C:\Program Files\Autodesk\AutoCAD 2026\acad.exe"&lt;BR /&gt;$dwg = "E:\Docs\DWG\mydrawing.DWG"&lt;BR /&gt;$scr = "E:\Docs\Extract\Scripts\dx_test.scr"&lt;/P&gt;&lt;P&gt;Start-Process -FilePath $acad -ArgumentList @(&lt;BR /&gt;"/nologo",&lt;BR /&gt;"/b", "`"$scr`"",&lt;BR /&gt;"`"$dwg`""&lt;BR /&gt;) -Wait&lt;/P&gt;</description>
      <pubDate>Sat, 28 Feb 2026 02:05:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/extract-data-from-40-000-drawings/m-p/14036372#M360779</guid>
      <dc:creator>demmijb</dc:creator>
      <dc:date>2026-02-28T02:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Data from 40,000 drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/extract-data-from-40-000-drawings/m-p/14037820#M360795</link>
      <description>&lt;P&gt;Are all 40000 drawings in that one folder? If so, what happens if you only make it the first 5000? Maybe you're hitting some limit with the Data Extraction Wizard?&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2026 23:33:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/extract-data-from-40-000-drawings/m-p/14037820#M360795</guid>
      <dc:creator>Tomislav.Golubovic</dc:creator>
      <dc:date>2026-03-01T23:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Data from 40,000 drawings</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/extract-data-from-40-000-drawings/m-p/14042245#M360944</link>
      <description>&lt;P&gt;&lt;SPAN style="background-color:inherit;color:windowtext;font-size:11pt;"&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/18700812"&gt;@demmijb&lt;/a&gt;&lt;/SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color:windowtext;font-size:11pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:windowtext;font-size:11pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:inherit;color:windowtext;font-size:11pt;"&gt;I just wanted to check in and see if you’ve had a chance to look at the follow-up questions from &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6823149"&gt;@Tomislav.Golubovic&lt;/a&gt;&lt;/SPAN&gt; . Do you still need help, or have you already found a solution? If you have any relevant screenshots or screen recordings, please share them so the community can assist you further.&lt;/SPAN&gt;&lt;SPAN style="color:windowtext;font-size:11pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:windowtext;font-size:11pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:inherit;color:windowtext;font-size:11pt;"&gt;Best Regards,&lt;/SPAN&gt;&lt;SPAN style="color:windowtext;font-size:11pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:windowtext;font-size:11pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:inherit;color:windowtext;font-size:11pt;"&gt;Rosie | Community Manager&lt;/SPAN&gt;&lt;SPAN style="color:windowtext;font-size:11pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 15:45:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/extract-data-from-40-000-drawings/m-p/14042245#M360944</guid>
      <dc:creator>rosie_lucas1</dc:creator>
      <dc:date>2026-03-04T15:45:40Z</dc:date>
    </item>
  </channel>
</rss>

