|
POST
|
Hi @MikaelJ, This should be possible using one config file. Take a look at the below sample: https://github.com/Esri/arcgis-powershell-dsc/blob/main/SampleConfigs/v4/v4.5.0/Base%20Deployment/BaseDeployment-MultiMachine.json
... View more
03-24-2026
06:43 AM
|
0
|
3
|
621
|
|
DOC
|
@DCWade10 at 11.5 the webgisdr should still be creating a single .webgissite file. Try running the webgisdr manually and see if it completes successfully.
... View more
03-20-2026
03:56 AM
|
0
|
0
|
10164
|
|
POST
|
Hi @Martin1, I have created a backup with WebGIS DR and successfully deployed it to the new server. I'm assuming you edited the hosts file when you did the restore. If the web adaptor and any ArcGIS application exist on the same server you will want to make sure you edit the hosts file like below: 10.0.0.2 newmachine.domain.local alias.domain.com My guess is you did not have the Fully Qualified Domain name in the hosts file, and only had the alias.
... View more
03-16-2026
01:00 PM
|
1
|
1
|
1404
|
|
DOC
|
@NicolasRoux on the machine where you running the tool, add the path mentioned in the error as a folder connection to Pro. There should be a MAPX file there. Are you able to successfully import this file into ArcGIS Pro?
... View more
03-16-2026
05:52 AM
|
0
|
0
|
2466
|
|
DOC
|
@ebpip I made some updates to the Copy Views and it should work now. I noticed that there are issues with it if you the feature service has been copied to the Target environment using the Copy Hosted Services tool. The view will be created, but it will be blank. Not quite sure what is causing this. I'm currently testing with the latest ArcGIS for Python API 2.4.2. So, you may need to publish the hosted feature service to the target environment using ArcGIS Pro.
... View more
03-13-2026
04:16 AM
|
0
|
0
|
2501
|
|
DOC
|
@ebpip can you share the feature service and view to a group and invite my AGOl account (jskinner_rats)?
... View more
03-09-2026
08:47 AM
|
0
|
0
|
2550
|
|
DOC
|
@ebpip looks like the script is having trouble finding the new view to update the settings. Can you verify the new view was successfully created? Also, are you migrating from AGOL to AGOL, or Enterprise to Enterprise? If the latter, what version of Enterprise?
... View more
03-04-2026
07:32 AM
|
0
|
0
|
14645
|
|
DOC
|
@ebpip I updated the Copy Views tool. Can you re-download these tools and try again?
... View more
03-02-2026
05:54 AM
|
0
|
0
|
14690
|
|
DOC
|
@ebpip the tool will search the target portal for the parent feature service the view is to be created off of. It looks like it's finding a File Geodatabase instead of the feature service. First, verify you have the parent feature service in the target org. Then, check if you have a File Geodatabase with the same name of the feature service. If you do, delete it and try executing the tool again. I may have to update the code to return only feature services during the search process.
... View more
02-27-2026
07:00 PM
|
0
|
0
|
14742
|
|
DOC
|
Hi @AdamPigg, thanks for the feedback. I did recently execute this for a customer and noticed the unnecessary loops, but haven't had a chance to dig back into this. For #1 and #2, how are your services published to produce the non direct descendent of dataConnection?
... View more
02-18-2026
05:49 AM
|
0
|
0
|
12956
|
|
DOC
|
@HelenWhiteley_tfl I could not reproduce the item ID issue. This is incorporated into the code: Is the Feature/Service Map Service added as an item in the target portal? Are you using Enterprise? If so, which version? Also, I'll look into adding the ability to re-path basemaps.
... View more
02-18-2026
05:46 AM
|
0
|
0
|
14809
|
|
DOC
|
@DJB you can create an API key in AGOL. Once you have the key, you can authenticate to AGOL using this. Ex: apiKey = 'AAPTxy8BH1VEsoebNVZXo8HurALPt8A8rXQeIUC-G0MzFj7nMpBAt3K7HFJHncoo32Vcbc7tQ1nwjOXtJ1gGR5HkMmM88zm_zHNoOAVg6DUGaBeVYWLFutf4FIL8W-YYsi7N76DHsmoeNfbkB41VUaurr_1FbR7S1IQJU339'
gis = GIS('https://www.arcgis.com', api_key=apiKey)
... View more
02-12-2026
06:49 AM
|
0
|
0
|
1781
|
|
DOC
|
Thanks for the feedback @denisCallens. I was able to update the tools to resolve the above issues. However I was unable to reproduce the Field Map Designer issue. I'll do some additional testing and circle back if I am.
... View more
02-06-2026
12:53 PM
|
0
|
0
|
14878
|
|
POST
|
@CoryMarino you will want an additional web adaptor to access the new Image Server. This additional web adaptor can reside on the same server where you host your Portal and ArcGIS Server web adaptors. I believe you'll receive an error if you have two nodes configured with the same Role (i.e. "Server") in your JSON file. Also, you may need to configure different directories for the Image Server vs your traditional ArcGIS Server instances. In a single JSON file, there's only one place to define this:
... View more
02-06-2026
10:48 AM
|
0
|
0
|
592
|
|
POST
|
Hi @CoryMarino , "Server" is correct for the Role. I recommend creating a separate JSON file for the Image Server instance. Below is an example: {
"AllNodes": [
{
"NodeName": "arcgis-image",
"Role": [
"Server"
],
"SslCertificates": [
{
"Path": "D:\\automationFiles\\certificates\\arcgis-image.pfx",
"PasswordFilePath": "D:\\automationFiles\\passwords\\certificate.txt",
"CNameFQDN": "arcgis-image.esri.com",
"Target": [
"Server"
]
}
]
},
{
"NodeName": "arcgis-webadaptor",
"Role": [
"WebAdaptor"
],
"WebAdaptorConfig": [
{
"Role": "Server"
}
]
}
],
"ConfigData": {
"Version": "11.1",
"ServerContext": "image",
"ServerRole": "GeneralPurposeServer",
"DownloadSetups": true,
"Downloadpatches": true,
"Credentials": {
"ServiceAccount": {
"PasswordFilePath": "D:\\automationFiles\\passwords\\serviceAccount.txt",
"UserName": "esri\\service_arcgis",
"IsDomainAccount": true,
"IsMSAAccount": false
},
"AGOCredential":{
"UserName": "myesriadmin",
"PasswordFilePath": "D:\\automationFiles\\passwords\\MyEsri.txt"
}
},
"Server": {
"LicenseFilePath": "D:\\automationFiles\\licenses\\ArcGISGISServerAdvanced_ArcGISServer_1428926.prvc",
"Installer": {
"Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Server_Windows_111_185208.exe",
"InstallDir": "D:\\Program Files\\ArcGIS\\Server",
"patchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
},
"ServerDirectoriesRootLocation": "D:\\arcgisserver\\directories",
"ConfigStoreLocation": "D:\\arcgisserver\\config-store",
"ExternalLoadBalancer": "gis.esri.com",
"PrimarySiteAdmin": {
"UserName": "siteadmin",
"PasswordFilePath": "D:\\automationFiles\\passwords\\siteadmin.txt"
}
},
"WebAdaptor": {
"AdminAccessEnabled": true,
"Installer": {
"Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Web_Adaptor_for_Microsoft_IIS_111_185222.exe",
"PatchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
}
},
"Federation": {
"PortalHostName": "gis.esri.com",
"PortalPort": "443",
"PortalContext": "portal",
"PortalAdministrator": {
"UserName": "portaladmin",
"PasswordFilePath": "D:\\automationFiles\\passwords\\portaladmin.txt"
},
"RestrictedPublishing": false
}
}
}
... View more
02-05-2026
01:59 PM
|
0
|
1
|
606
|
| Title | Kudos | Posted |
|---|---|---|
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM | |
| 1 | 01-20-2026 04:04 AM |
| Online Status |
Online
|
| Date Last Visited |
6 hours ago
|