Run multiple Dynamo scripts on multiple DWG files with BATCH

Translated by moderator. See below the line for original post.


  1. Create a DYN
  2. Create an SRC file with:
    ; More info about writing script files:
    ; Help
    ; Turn off dialog boxes
    FILEDIA 0
    ; Dynamo graph to run. Be sure to include double quotes surrounding the file path if it contains spaces.
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina1.dyn”
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina2.dyn”
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina3.dyn”
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina4.dyn”
    ; Turn on dialog boxes
    FILEDIA 1
    ; Save
    QSAVE
  3. Open
  4. Fill in the data and execute

Original Post Below


  1. Crea un DYN
  2. Crea u archivo SRC con:
    ; More info about writing script files:
    ; Help
    ; Turn off dialog boxes
    FILEDIA 0
    ; Dynamo graph to run. Be sure to include double quotes surrounding the file path if it contains spaces.
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina1.dyn”
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina2.dyn”
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina3.dyn”
    AECCRUNDYNAMOSCRIPT “C:\ruta\nombre_de_la_rutina4.dyn”
    ; Turn on dialog boxes
    FILEDIA 1
    ; Save
    QSAVE
  3. Abre
  4. Llena los datos y ejecuta

Welcome to the forum @sotox1883.

The language here is English, which is a technical requirement to make search work. Please translate future posts using google translate or a similar tool of your choosing. You can keep your native language as well (will help should we ever get multiple language support).

Thanks!

Thank you and sorry for my mistake.

1 Like