You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[arcgis-server](templates/arcgis-server) - deploys ArcGIS Server in GIS Server, ArcGIS GeoAnalytics Server, Raster Analytics Serveror Image Server roles and federates it with Portal for ArcGIS.
35
+
*[arcgis-server](templates/arcgis-server) - deploys ArcGIS Server in GIS Server, ArcGIS GeoAnalytics Server, Raster Analytics Server, Image Server, or Knowledge Server roles and federates it with Portal for ArcGIS.
36
36
*[arcgis-webadaptor](templates/arcgis-webadaptor) - deploys [ArcGIS Web Adaptor](https://enterprise.arcgis.com/en/server/latest/install/windows/about-the-arcgis-web-adaptor.htm).
This cookbook installs and configures ArcGIS Desktop and ArcGIS License Manager.
10
+
# arcgis-desktop cookbook
5
11
6
-
Requirements
7
-
------------
12
+
This cookbook installs and configures ArcGIS Desktop and ArcGIS License Manager.
8
13
9
-
###Supported ArcGIS software
14
+
## Supported ArcGIS software
10
15
11
16
* ArcGIS Desktop (Windows only)
12
17
* 10.4
@@ -31,8 +36,9 @@ Requirements
31
36
* 2020.1
32
37
* 2021.0
33
38
* 2021.1
39
+
* 2022.0
34
40
35
-
###Platforms
41
+
## Platforms
36
42
37
43
* Windows 10
38
44
* Windows Server 2012 (R2)
@@ -44,15 +50,14 @@ Requirements
44
50
45
51
ArcGIS Desktop is supported only on Windows platforms.
46
52
47
-
###Dependencies
53
+
## Dependencies
48
54
49
55
The following cookbooks are required:
50
56
51
57
* windows
52
58
* arcgis-repository
53
59
54
-
Attributes
55
-
----------
60
+
## Attributes
56
61
57
62
*`node['arcgis']['version']` = ArcGIS Desktop version. Default value is `10.8.1`.
58
63
*`node['arcgis']['desktop']['setup_archive']` = The location of ArcGIS Desktop setup archive. Default value depends on `node['arcgis']['version']` attribute value.
@@ -63,61 +68,140 @@ Attributes
63
68
*`node['arcgis']['desktop']['authorization_file']` = ArcGIS Desktop authorization file path. Default location and file name are `C:\\Temp\\license.prvc`.
64
69
*`node['arcgis']['desktop']['authorization_file_version']` = ArcGIS Desktop authorization file version. Default value is `10.8`.
65
70
*`node['arcgis']['desktop']['esri_license_host']` = Hostname of ArcGIS License Manager. Default hostname is `%COMPUTERNAME%`.
66
-
*`node['arcgis']['desktop']['software_class']` = ArcGIS Desktop software class <Viewer|Editor|Professional>. Default value is `Viewer`.
67
-
*`node['arcgis']['desktop']['seat_preference']` = ArcGIS Desktop license seat preference <Fixed|Float>. Default value is `Fixed`.
68
-
*`node['arcgis']['licensemanager']['version']` = ArcGIS License Manager version. Default value is `2021.1`.
71
+
*`node['arcgis']['desktop']['software_class']` = ArcGIS Desktop software class `<Viewer|Editor|Professional>`. Default value is `Viewer`.
72
+
*`node['arcgis']['desktop']['seat_preference']` = ArcGIS Desktop license seat preference `<Fixed|Float>`. Default value is `Fixed`.
73
+
*`node['arcgis']['licensemanager']['version']` = ArcGIS License Manager version. Default value is `2022.0`.
69
74
*`node['arcgis']['licensemanager']['setup_archive']` = The location of ArcGIS License Manager setup archive. Default value depends on `node['arcgis']['version']` attribute value.
70
-
*`node['arcgis']['licensemanager']['setup']` = The location of ArcGIS License Manager setup executable. Default location is `%USERPROFILE%\Documents\ArcGIS License Manager 2021.0\LicenseManager\Setup.exe` on Windows, and `/opt/arcgis/2021.1/LicenseManager_Linux/Setup` on Linux.
75
+
*`node['arcgis']['licensemanager']['setup']` = The location of ArcGIS License Manager setup executable. Default location is `%USERPROFILE%\Documents\ArcGIS License Manager 2022.0\LicenseManager\Setup.exe` on Windows, and `/opt/arcgis/2022.0/LicenseManager_Linux/Setup` on Linux.
71
76
*`node['arcgis']['licensemanager']['lp-setup']` = The location of language pack for ArcGIS License Manager. Default location is `C:\ArcGIS\LicenseManager\SetupFiles\setup.msi`.
72
77
*`node['arcgis']['licensemanager']['install_dir']` = ArcGIS License Manager installation directory. By default, the license manager is installed to `%ProgramFiles(x86)%\ArcGIS` on Windows and `/` on Linux.
> Software authorization for ArcGIS Desktop is only supported by the cookbook when the "seat_preference" attribute value is "Fixed".
113
+
114
+
> Chef cookbook [ms_dotnet](https://supermarket.chef.io/cookbooks/ms_dotnet/) could be used to install the .Net Framework version required by ArcGIS for Desktop.
115
+
116
+
For example:
117
+
118
+
```JSON
119
+
{
120
+
"ms_dotnet" : {
121
+
"v4" : {
122
+
"version" : "4.5.1"
123
+
}
124
+
},
125
+
"run_list":[
126
+
"recipe[ms_dotnet::ms_dotnet4]"
127
+
]
128
+
}
129
+
```
130
+
131
+
### licensemanager
81
132
82
133
Installs and configures ArcGIS License Manager.
83
134
84
-
### arcgis-desktop::lp-install
85
-
86
-
Installs language packs for ArcGIS Desktop and ArcGIS License Manager.
87
-
88
-
### arcgis-desktop::uninstall
89
-
90
-
Uninstalls ArcGIS Desktop and ArcGIS License Manager.
91
-
92
-
Usage
93
-
-----
94
-
See [wiki](https://github.com/Esri/arcgis-cookbook/wiki) pages for more information about using ArcGIS cookbooks.
95
-
96
-
## Issues
97
-
98
-
Find a bug or want to request a new feature? Please let us know by submitting an [issue](https://github.com/Esri/arcgis-cookbook/issues).
99
-
100
-
## Contributing
101
-
102
-
Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing).
103
-
104
-
Licensing
105
-
---------
106
-
107
-
Copyright 2021 Esri
108
-
109
-
Licensed under the Apache License, Version 2.0 (the "License");
110
-
You may not use this file except in compliance with the License.
111
-
You may obtain a copy of the License at
112
-
http://www.apache.org/licenses/LICENSE-2.0
113
-
114
-
Unless required by applicable law or agreed to in writing, software
115
-
distributed under the License is distributed on an "AS IS" BASIS,
116
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
117
-
See the License for the specific language governing permissions and
118
-
limitations under the License.
119
-
120
-
A copy of the license is available in the repository's [License.txt](https://github.com/Esri/arcgis-cookbook/blob/master/License.txt?raw=true) file.
0 commit comments