-
Notifications
You must be signed in to change notification settings - Fork 121
arcgis‐pro Cookbook Recipes
Cameron Kroeker edited this page Dec 3, 2021
·
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.
Installs and authorizes ArcGIS Pro.
Attributes used by the recipe:
{
"arcgis": {
"pro": {
"version": "2.7",
"authorization_file_version": "10.8",
"setup": "C:\\ArcGIS\\ArcGIS Pro 2.7\\ArcGISPro\\ArcGISPro.msi",
"allusers": 1,
"authorization_type": "SINGLE_USE",
"software_class": "Professional",
"portal_list": "https://domain.com/portal",
"authorization_file": "C:\\ArcGIS\\10.8\\Authorization_Files\\Pro_AdvancedSU.prvc"
}
},
"run_list": [
"recipe[arcgis-pro]"
]
}Installs ArcGIS Pro.
Attributes used by the recipe:
{
"arcgis": {
"pro": {
"version": "2.7",
"setup": "C:\\ArcGIS\\ArcGIS Pro 2.7\\ArcGISPro\\ArcGISPro.msi",
"allusers": 1
}
},
"run_list": [
"recipe[arcgis-pro::install_pro]"
]
}Installs Microsoft .Net Framework (may require a machine reboot after chef run completes).
Attributes used by the recipe:
{
"ms_dotnet": {
"version": "4.8",
"setup": "C:\\Software\\Archives\\ndp48-x86-x64-allos-enu.exe"
},
"run_list": [
"recipe[arcgis-pro::ms_dotnet]"
]
}Uninstalls ArcGIS Pro of the specified version.
Attributes used by the recipe:
{
"arcgis": {
"pro": {
"version": "2.7"
}
},
"run_list":[
"recipe[arcgis-pro::uninstall]"
]
}Installs ArcGIS Pro patches.
{
"arcgis":{
"patches" : {
"local_patch_folder" : "C:\\ArcGIS\\Patches"
}
},
"run_list":[
"recipe[arcgis-pro::patches]"
]
}