|
POST
|
We have deployed ArcGIS Pro 3.5 to 900 computers, of these about 800 installed without issue with the remaining 100 failing. Message shown is the 'Microsoft Edge WebView2 Runtime (x64) version 117 or later...you must also install WebView2 Runtime as per-machine. " We are currently at WebView 148.0.3856.84 -the current version. On checking the package, ESRI is looking specifically for HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5} and HKEY_LOCAL_USER\ Software\Microsoft\EdgeUpdate\Clients\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}. In the ones that fail the GUID shown is in HKEY_LOCAL_MACHINE is present. Have anyone else seen this issue at this scale? Given that 10% of our machines have failed, it is more than just a 'bad' install of WebView2 (which the March 20, 2026 release of v148.0.3856.72 was, replace by v78 on March 23rd ;-)). Insite's are welcome.
... View more
04-01-2026
12:36 PM
|
0
|
2
|
367
|
|
POST
|
Gordon, ArcGIS Pro can be licensed as single-use, concurrent-use, or named-user. If named user you would need to connect to a Portal or an ArcGIS Online Organization (which you actually are entitled to for free because you own a current version of ArcGIS Server under _maintenance_ -right? ;-)). To obtain a license you would obtain it from support.esri.com or from you My.Esri.Com website, again if you actually own portal you should have an account on that website. From there you can download software updates and obtain your license codes. Since your system does not talk to ESRI you can not use the auto-authorization methods. Rather you need to get the ECP code (looks like this: ESU440991234, so you can manually enter them during the authorization process. In Pro uncheck the auto login to Online checkbox when you see the pop-up and go to settings | licensing and set the required information.
... View more
03-31-2026
08:57 AM
|
0
|
1
|
306
|
|
POST
|
We ran into a similar issue with updating machines for ArcGIS Pro 3.4 to 3.5, the solution as stated above is to download and install the newest available version of Microsoft Edge WebView2 runtime (x64) 'as administrator'. However, of NOTE is on March 12, 2026 Microsoft released an update for 80 issues, then then released a new version on March 20th and March 23rd. Usually they only have 1 release per month. This means the 20th edition 146.0.3856.72 had a significant 'problem'. If you have this installed version, update to build 146.0.3865.78 or higher then retry your ArcGIS Pro installation. To check your version in regEdit see HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\ClientState and look in each subkey. Version 78 has a subkey of . \ClientState\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}
... View more
03-26-2026
02:35 PM
|
0
|
1
|
1253
|
|
POST
|
See ArcGIS Pro Life Cycle | Esri Support for lifecycle dates.
... View more
03-13-2026
09:18 AM
|
0
|
0
|
251
|
|
POST
|
Hello, The Professional Plus user type was announced in June 2024 and ArcGIS Pro 3.3 was released on May 07, 2024. ArcGIS Pro 3.3 is the earliest version that I would expect the new user type to work with 'seamlessly'. In regards to your other question, yes ArcGIS Pro 3.4 and 3.5 can be used with a Portal or AGOL site at different versions. I have used those versions running ArcGIS Enterprise 11.5 and v12 (and Pro 3.3 with Enterprise 11.4). ArcGIS Pro 3.0 SP 6 is the last release of 3.0 and is retired -it was issued in August 2023 so I would not expect support for Professional Plus.
... View more
03-13-2026
09:16 AM
|
0
|
1
|
251
|
|
POST
|
Take a look at this older post: How exactly do you make a .stylex file ? - Esri Community
... View more
03-10-2026
09:38 AM
|
1
|
1
|
373
|
|
POST
|
ArcGIS Pro supports Graphics to Features command for basic graphic features (e.g., point, line, polygon). You could probably try the same for 'text' elements but you would most likely get a point for the lower left of the first character of the sentence (i.e., you won't get the text string as a set of lines for example). Best alternative would be to look into converting the graphic text into annotation.
... View more
03-10-2026
09:35 AM
|
1
|
2
|
324
|
|
POST
|
My first question is why do you want the field to be TEXT in the database, could you not have it be an INT then just convert it in code when needed? Secondly, you did not say the database type, but if it is in SQL or SQLite you can add an autoincrement field to the table. Copy code CREATE TABLE users (
my_new_id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL,
email TEXT NOT NULL
); Auto-increment fields cannot be updated manually unless explicitly allowed. If you delete rows, the auto-increment counter does not reset unless you manually reset it. Use BIGINT instead of INT if you expect very large numbers. you can set a 'start' number for the sequence as well. an autoincrement field DOES NOT have to be a primary key (or a key at all)
... View more
03-10-2026
09:31 AM
|
0
|
0
|
357
|
|
IDEA
|
ESRI is requiring the migrating all users to Named or Single use licensing, in the named user arena they need to provide a no cost subscription management solution. The solution should provide admins the ability to estimate actual subscription usage and license Pro usage. This is needed to justify organizational purchases.
... View more
03-09-2026
09:56 AM
|
0
|
0
|
547
|
|
POST
|
There are several options for this, one would be to create the graphics layers BEFORE you run the custom the tool so you can grab a handle to the layer AFTER you return from await. Assumption here is you are using the same map. This would work with any specific layer in the map., I'm just assuming you are drawing on the graphics layer. { // get params var map = MapView.Active.Map; var layerParams = new LayerCreationParams("My New Graphics Layer"); // create graphics layer GraphicsLayer newLayer = LayerFactory.Instance.CreateLayer(layerParams, map , LayerPosition.AddToTop); Bool success=false; success = await myTask(my variables); // Find the first graphics layer in the map if we returned from the task without error If (success==true) { var graphicsLayer = map.GetLayersAsFlattenedList().OfType().FirstOrDefault(); ... do more stuff ... or use newLayer } } Of note, at ArcGIS Pro 3.4 maps started having a default graphics layer. This means you can grab that instead of creating your own layer (but since you are working with a custom tool, having your OWN graphics layer would have value). // Get the first available GraphicsLayer in the map
var graphicsLayer = MapView.Active.Map.GetLayersAsFlattenedList()
.OfType<GraphicsLayer>().FirstOrDefault();
... View more
03-06-2026
09:13 AM
|
0
|
0
|
254
|
|
POST
|
You should check the version of ArcGIS Pro version (to include Service Pack) and Visual Studio Code you have installed on each machine. For VS Code also check and the available resources -look at the version numbers. Most likely a resource is unavailable or needs to be updated on the machine with the problem.
... View more
02-27-2026
08:50 AM
|
0
|
0
|
100
|
|
POST
|
FYI - ArcGIS Pro 3.5 is now at Service Pack 6, these SPs are cumulative, so you only need to download SP 6 and apply it to your ArcGIS Pro 3.5 installation. The ArcGIS Pro 3.5 Issues Addressed document is updated with each SP release.
... View more
02-26-2026
08:28 AM
|
1
|
0
|
410
|
|
POST
|
Probably had a missing Transformation in the NAD 83 (2011) coordinate system definition for the layer. But interesting to hear that installing the Coordinate System pack resolved the issue.
... View more
02-24-2026
08:54 AM
|
0
|
0
|
469
|
|
POST
|
The https://elevation.arcgis.com path leads to an ArcGIS Server, but NO services are available. Have you tried https://elevation3d.arcgis.com/arcgis/rest/services?
... View more
02-23-2026
02:44 PM
|
0
|
0
|
472
|
|
POST
|
Converting to Excel results in a well-defined field type for each column in the file. When using a csv the system guesses the field type based on a .ini file -or the first 20 rows in the CSV. Also, if this is a large .csv ensure the file is NOT in the Cloud since you cannot guaranteed all the data to be accessible at all times on your local device (unless you explicitly checked that option in OneDrive for your file). This would explain why it appears to work but the expected records are not returned.
... View more
01-30-2026
09:00 AM
|
0
|
0
|
228
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 3 weeks ago | |
| 2 | 04-03-2026 10:55 AM | |
| 1 | 03-10-2026 09:35 AM | |
| 1 | 03-10-2026 09:38 AM | |
| 1 | 02-26-2026 08:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
6 hours ago
|