Skip to content

arcgis‐pro Cookbook Recipes

Cameron Kroeker edited this page Feb 25, 2020 · 9 revisions

arcgis-pro cookbook is used to install, authorize and configure ArcGIS Pro.

Brief descriptions of arcgis-pro cookbook recipes along with cookbook attributes are available at README.md. This page provides more detailed descriptions of the recipes and specifies attributes used by each recipe.

default

Installs and authorizes ArcGIS Pro.

Attributes used by the recipe:

{
  "arcgis": {
    "pro": {
     "version": "2.4",
     "authorization_file_version": "10.7",
     "setup": "C:\\ArcGIS\\ArcGIS Pro 2.4\\ArcGISPro\\ArcGISPro.msi",
     "allusers": 1,
     "authorization_type": "SINGLE_USE",
     "software_class": "Professional",  
     "portal_list": "https://domain.com/portal",
     "authorization_file": "C:\\ArcGIS\\10.7\\Authorization_Files\\arcgispro.prvc"    
    }
  },
  "run_list": [
    "recipe[arcgis-pro]"
  ]
}

install_pro

Installs ArcGIS Pro.

Attributes used by the recipe:

{
  "arcgis": {
    "pro": {
     "version": "2.4",
     "setup": "C:\\ArcGIS\\ArcGIS Pro 2.4\\ArcGISPro\\ArcGISPro.msi",
     "allusers": 2  
    }
  },
  "run_list": [
    "recipe[arcgis-pro::install_pro]"
  ]
}

uninstall

Uninstalls ArcGIS Pro of the specified version.

Attributes used by the recipe:

{
  "arcgis": {
    "pro": {
      "version": "2.4"
    }
  },
  "run_list":[
    "recipe[arcgis-pro::uninstall]"
  ]
}

patches

Installs ArcGIS Pro patches.

{
  "arcgis":{
    "patches" : {
       "local_patch_folder" : "C:\\ArcGIS\\Patches"
     }   
  },
  "run_list":[
    "recipe[arcgis-pro::patches]"
  ]
}
Clone this wiki locally