Skip to content

arcgis‐pro Cookbook Recipes

Pavel Bobov edited this page Jul 6, 2018 · 9 revisions

arcgis-pro cookbook is used to install 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 configures ArcGIS Pro.

Attributes used by the recipe:

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

uninstall

Uninstalls ArcGIS Pro of the specified version.

Attributes used by the recipe:

{
  "arcgis": {
    "pro": {
      "version": "1.2"
    }
  },
  "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