And there’s this (
https://helpx.adobe.com/coldfusion/using/coldfusion-package-manager.html )…
Code scanner
ColdFusion is modularized and only contains the core by default. It can be pretty difficult task to identify the list of packages that must be installed in order to run the application successfully.
The code scanner comes to the rescue and automatically scans through the specified code base and returns the list of required packages to be installed.
Enter the following command:
scan <path_to_your_code_base> http//[CF SERVER HOST]port
In addition, you can scan the code base and install the recommended packages in one go as well. Enter the following command:
scanandinstall <path_to_your_code_base> http//[CF SERVER HOST]port
For example,
scanandinstall <code_base/wwwroot/cfm> http://localhost:8500.