One of the nice things about using AutoCAD Plant 3D is that there is a wide range of available piping and component catalogs available to help your modelling and documentation efforts. The most common catalogs, such as ASME, AWWA and DIN, come out-of-the-box while many more like Victaulic, Pharma, Grayloc, etc. can be downloaded freely from Autodesk’s App Exchange.
Both the out-of-the-box catalogs and any additional content packs downloaded are added to Plant’s content directory located on your computer at C:\AutoCAD Plant 3D 2017 Content. Unfortunately this is not usually the best location to set as Plant’s content directory if you are working collaboratively.
There are a number of reasons why you may want to set this location to a network folder:
- Free up space on the C: of your workstation(s)
- Save customized catalog and spec modifications to a central location
- Allow multiple project admins or users to see the same catalogs for spec generation
- Restrict what content and specs are available to users for modelling by removing unneeded files
With these points in mind, there are a few options available to move this directory off the C drive and onto a network share.
Deployments
If you haven’t created your Plant 3D deployments or installed Plant 3D to your workstations then you can set this content location during deployment creation or installation. This will copy all the default content to the specified folder during installation. Further, all future Plant and downloaded content pack installations will use this folder setting also.
During setup expand the Autodesk AutoCAD Plant 3D 2017 line in the installer and scroll down to the Configurable Folders area.

Inside the content table click the Default text in the Mode column and select Local.

That will allow you to browse for a location or type a path in the Path column.

Hint: Use UNC paths where possible rather than using networked drive letters.
Setting the Content location inside the deployment will copy all the out-of-the-box specs and catalogs to this location and set this path in the registry on each workstation.
AutoCAD Command Line
If you already have Plant installed on multiple workstations and you need to move the content to a new location then you have to run the PLANTMODIFYSHAREDCONTENTFOLDER command from AutoCAD Plant 3D's command line on each workstation. Simply moving or copying the content folder to a different location using Windows Explorer will cause errors to occur inside the Plant application.
To run this command you must run AutoCAD Plant 3D as an Administrator. In Windows right-click on the Plant 3D shortcut and select Run as Administrator or you will run into the following error when trying to run the command.

Once Plant is loaded open any drawing (project or non-project related) and type PLANTMODIFYSHAREDCONTENTFOLDER into the command line.

In the Modify Shared Content Folder dialog box browse to (or type) the network path where the content will be moved to. You also need to select whether or not to copy the content from the existing folder to the new location.
Copying the folder contents only needs to be done on the first workstation. Once content is in the folder leave the option unchecked on subsequent workstation to simply change the Plant 3D configuration.

Click OK to change Plant’s local configuration (for all local users) and, if selected, copy the content to the specified path. Don't forget to delete the old content folder once you have finished.
This method works well if there are a minimal number of machines to change and if the users have administrative privileges to their computer. In larger organizations, with many users or where users do not have admin rights, there is a scripted option that can be used.
Scripted Command Line
The Plant content directory can be changed by creating a batch file and an AutoCAD script file with the proper commands. First, a batch file needs to be created to launch Plant from windows. It can have any name you choose but should contain the following syntax:
- "C:\Program Files\Autodesk\AutoCAD 2017\acad.exe" /product PLNT3D – starts AutoCAD Plant 3D
- /language “en-US” – sets the language
- /w “3D Piping” – sets the Plant interface to the 3D Piping workspace
- /nologo – hides the Plant splash image from displaying
- /b [YOUR PATH HERE]\[YOUR SCRIPT].scr – runs the script file once Plant 3D loads
The AutoCAD script file has an SCR extension and, like a batch file, is plain text. It can be made using Windows Notepad and named whatever you like, just be sure the name you use is set in the batch file above. The script file should contain the following text:
- Filedia 0 – Turns off command dialog boxes
- openproject [projectpath]\project.xml – Opens a specified project. Make sure this is a common project all computers have access too.
- -PLANTMODIFYSHAREDCONTENTFOLDER D:\AutoCAD Plant 3D 2017 Content – Sets the content folder location in Plant
- N – Tells the PLANTMODIFYSHAREDCONTENTFOLDER command not to copy the contents of the current folder. Use Y to copy.
- Filedia 1 – Turns command dialog boxes back on
- Quit Y – Quits the application without saving changes to the current drawing file loaded.
Make sure to set the paths to those needed for your environment and keep in mind that the batch file will need to be Run as Administrator. Finally, if the Plant license has been borrowed from your license server the script will halt at the borrowed license pop-up. A manual click on the Close button will be required to continue.
This is just one step for setting up AutoCAD Plant 3D for use in a multi-user environment but it is often overlooked. Once your content folder has been changed, running a content pack installer will place the new content in the centralized location. Centralizing the content is important to reduce space used on your system's hard drive and to ensure the proper piping specs and catalogs are being used. Remember to keep an eye on the app exchange as content packs and catalogs are continually added and updated.
-DAP