Set Project Info With Dynamo

 

This post is going to look at setting Project Information Parameters using Revit. I didn’t find much on the line when I set out to do this so I thought I’d share. Project information is found as an element type. Select the Element Type and All Elements of a type nodes.

1

With the Set Parameter By Name node and input the name of the Project Info Parameter and the value. You may need to check the parameter type. For instance, in the image below, I’m setting Project Number which is a text based parameter so the input needs to be text and not a number.

2

I went ahead and made this a custom node and posted it in the package manager under WC BIM. It’s my first package but expect more. Here’s a look at that.

Set Project Info Parameter.dyf

3

Workspace view

4

If you need to update multiple Project Information Parameters at the same time, use the List Combine Node.

 

 

Advertisement

Batch Copy Script

To combat the issue of Revit users overwriting shared coordinates of files linked into their Revit model. I’ve started linking copies of central files into all the models. If someone does overwrite coordinate information, the next day a new copy of the model overwrites the file with the correct information. The process involves creating a batch file that will copy files from one location to another and using windows task scheduler to run that task periodically. I thought this would be a good share.

Create a batch file

  • Right click and create a new text document. I usually do this in the project folder1 - Create Text File
  •  In the text file you need to type a command line. The command for copy is xcopy

In the text file, you need to type:

xcopy “path for files to copy from\*.RVT” “path for files to copy to”/y

The path for the files does need to be the full network path and will not work from your local directory. The \*.RVT at the end of the path is looking for any file that ends with .RVT and will copy those files to the specified path.

  • Save the file as a batch file. Click File/Save As, name the file and add .bat at the end.2 - Save As BAT
  • To test the file, double-click the newly created batch file. You should see a command prompt listing the files being copied.

2 - Command Line

Automate the task with Windows Task Scheduler

  • Open Windows Task Scheduler from your programs
  • Under the Actions Menu, Select Create Task…4 - Create Task
  • On the General tab, you’ll want to name the task descriptively and add a description to help you remember later. Update the security options as needed, I usually select Run whether user is logged on or not5 - General Tab
  • On the Triggers tab, click new you’ll specify how frequently you want to copy the files. This could be daily, weekly, or whatever you decide. You can add multiple triggers so if you would like the task to run twice per day you can add both times as seen below.6 - Triggers7 - Schedule
  • On the Actions tab is where we specify the actual task that is running. Click New8 - Actions
  • For the action, you want to run a program. For the program, you specify the .bat file that you created. Input: “Path to .bat file\Name of bat file.bat” Click Ok Until you’re back to the task scheduler welcome screen.9 - Start a Program
  • Rick-Click on the name of your task and select run to test your task10 - Run Task
  • Enjoy the Automation