Hello everyone!
I want to run a Dynamo script without opening a Revit file and wanted to know if this was possible?
Thanks
Hello everyone!
I want to run a Dynamo script without opening a Revit file and wanted to know if this was possible?
Thanks
Hi @alafineur in that case i would try this one hereâŚRelease v1.10.0-beta ¡ bvn-architecture/RevitBatchProcessor ¡ GitHub
Thanks for your help! Do you think it is possible to automate this task?
yes is what it doesâŚbut it actuelly open revit in background with windows task scheduler, run your graph, and close againâŚ
If you donât need access to Revit api for files you can use an instance of Dynamo Sandbox via DynamoBuilds.com, or the Dynamo CLI to not even see Dynamo. Should run a few orders of magnitude faster as you wonât have to open Revit before opening Dynamo.
Thank you, in the dynamo I want to run I have 2 nodes of the Package âRhythmâ, is this compatible?
Depend on which nodes. The CLI from outside Revit wontâ have access to Revit, any data in a .rvt, or the Revit API. So if the Rhythm nodes donât use a library which references Revit, youâre good. Iâd start with a task that just saves a text document or something similar. Perhaps triggers a UI that says âhey it workedâ or something else along those lines.
Here is the Dynamo I want to run, I want to automate the export of a Revit file in NWC, my dynamo works perfectly but now I would like to run it without needing to open revit or dynamo
This requires opening Revit, either headless as is done by the tool linked above by @sovitek above, or in a way that you see Revit.
You cannot access Revit data without opening Revit.
Once again, thank you for your answer!
So I will use BatchRVT, I donât know if you know why but when I try to run the program I have an error message that appearsâŚ
If you can live with open revit startpage, not a project, Birdtools multiplayer can do it as well and will be faster than BVN and have a timer build in as well or just use birdtool batch export modelsâŚbut not dynamo
ps probably it could work if you setup windows taskscheduler to open revit and have timer setup in multiplayerâŚhavent tried just an idea
Thanks for your answers! I used Birdtools and now I have the possibility to run my script automatically!