As we migrate from ArcMap to ArcGIS Pro, we are inquiring about using the the same custom desktop shortcuts we use for ArcMap. Currently, for ArcMap we have Concurrent Use Licenses (all stored on the same license server) and we have created shortcuts for users. These shortcuts are .bat files. They have the option to launch ArcMap with Advance, Standard or Basic License. Example of a .bat file:
set ESRI_SOFTWARE_CLASS=Editor
set path=%path%;C:\Program Files (x86)\ArcGIS\Desktop10.6\bin
ArcMap.exe
Does anyone know if this will work for ArcGIS Pro as well? The Concurrent Use License set up for pro will be the same as ArcMap.
Thank you
Solved! Go to Solution.
Hello @PatrickKielty ,
Here I´d like to share with you a script tested to work and the steps of how to create it in order to configure custom ArcGIS Pro Desktop Shortcuts by License Type with .bat files as you need to.
set ESRI_SOFTWARE_CLASS_PRO=Professional set path=%path%;C:\Program Files\ArcGIS\Pro\bin ArcGISPro.exe
I hope the information is useful and that you can configure the shortcuts as needed.
Kindly,
Samuel
Hello @PatrickKielty ,
Here I´d like to share with you a script tested to work and the steps of how to create it in order to configure custom ArcGIS Pro Desktop Shortcuts by License Type with .bat files as you need to.
set ESRI_SOFTWARE_CLASS_PRO=Professional set path=%path%;C:\Program Files\ArcGIS\Pro\bin ArcGISPro.exe
I hope the information is useful and that you can configure the shortcuts as needed.
Kindly,
Samuel
Thank you very much Samuel -
This worked for us. we were missing the '_PRO'