|
POST
|
I want to upgrade multiple PC's on our network using the command line I see it is possible HERE: Installing ArcGIS Desktop silently—Help | ArcGIS Desktop However the help docs reference "Concurrent Use" I do not want to use concurrent use my previous installations are single use installs. will this method still work? if not how will the installer know to use a new auth # to switch to concurrent use? my end goal is to paste(remotely) the setup.exe on the C:\ drive (of all my client PC's) and schedule windows task to run the batch script at say midnight to upgrade the installs to 10.5.1 without any need for user interaction. Also, the ESRI LICENSE HOST ='mahcine_Name'.... this will need to call each unique PC name to locate the license manager... how can I can through the dynamic variable int there to use the local machine name? Or do I need to make 20+ unique copies of this and for each use the specific host machine? EDIT: I see the SEAT_PREFERENCE=Fixed can be used for a single use license. EDIT: The dynamic PC name can use the following: %COMPUTERNAME% all advice is welcomed. Installing ArcGIS Desktop silently—Help | ArcGIS Desktop <setup staging location>\setup.exe ESRI_LICENSE_HOST=GIS SOFTWARE_CLASS=Professional SEAT_PREFERENCE=Float DESKTOP_CONFIG=TRUE INSTALLDIR1=C:\python27 /qb
... View more
02-12-2018
01:36 PM
|
1
|
1
|
1623
|
|
POST
|
try clearing your browser cache. also are the symbols appearing on the map legend?
... View more
02-12-2018
09:49 AM
|
0
|
1
|
5401
|
|
POST
|
I am sysadmin on server and admin on AGOL, I get the same error when trying to edit an existing line feature in collector. I can edit it in AGOL but not collector. edits = moving line vertices to new locations.
... View more
02-09-2018
07:46 AM
|
0
|
1
|
2859
|
|
POST
|
use the feature class to geodatabase function Feature Class To Geodatabase—Conversion toolbox | ArcGIS Desktop
... View more
02-09-2018
07:11 AM
|
1
|
1
|
7264
|
|
IDEA
|
yes this is greatly needed, the workarounds are not efficient with large datasets being updated continuously.
... View more
02-08-2018
05:56 AM
|
2
|
1
|
3855
|
|
POST
|
excel to table join table to fc calculate field using new field in the join remove join.
... View more
02-06-2018
05:32 AM
|
0
|
1
|
1803
|
|
BLOG
|
Minor update, remove the single quotes from the last $feature.Hyperlink. the expression should look like below: IIF(IsEmpty($feature.Hyperlink),'',$feature.Hyperlink)
... View more
02-06-2018
04:47 AM
|
0
|
0
|
41048
|
|
BLOG
|
Hi Kevin, I believe your request can be done in the pop ups. 1. Are your hyperlinks a field within the feature? if so use the following expression to only display the hyperlink field if it is not blank: IIF(IsEmpty($feature.Hyperlink),'','$feature.Hyperlink') ---> if the field if blank show '' if its not blank show the feature "Hyperlink" just replace the hyperlink text for the name of the field containing your links.
... View more
02-05-2018
01:15 PM
|
1
|
0
|
41048
|
|
POST
|
Ok cool I look forward to this new feature, the report is utilizing xls formating correct? cant this already be done by somthing simular below? IF($feature<>"","$feature","")
... View more
01-30-2018
01:03 PM
|
0
|
1
|
2345
|
|
POST
|
Can arcade expressions be utilized in the report template for survey123? I mainly want to utilize the IIF(IsEmpty($feature.fieldName), '', $feature.fieldName) so if the field is empty do not show it in the report. I have many sub-categories in my survey and those fields will be empty depending on their parent question.... If Arcade expressions are allowed in this report template is another way to accomplish this task?
... View more
01-30-2018
12:32 PM
|
0
|
6
|
2820
|
|
POST
|
another update... the append methods worked I just needed to add a extra line before adding the string values the code below did this correctly with open(locatorLW, 'r') as file : filedata = file.read() filedata1 = "supportsEmptyHouseNumber = true \n" filedata2 = "supportsOptionalZone = true" # Write the file out again with open(locatorLW, 'a') as file: file.write('\n') file.write(filedata1) file.write(filedata2) file.close()
... View more
01-29-2018
06:08 AM
|
0
|
1
|
2183
|
|
POST
|
I should also mention I tried the append() method to just add those lines to the .loc file but this breaks the locator.
... View more
01-29-2018
05:57 AM
|
0
|
2
|
2183
|
|
POST
|
thanks for the Info Bruce, there is an issue though. the .loc file does not contain these fields originally. You have to manually enable them within arcmap/catalog then the .loc file will append those values. I tried using the code below directly after creating the locator (no errors) but it cannot replace the false with true values because they are not inside the .loc file after being created. if you create a locator open the .loc file you wil see none of the extended properties are present. if you set them inside catalog then open the .loc file you will see they are present. with open(r"Y:\path\to\locator.loc", 'r') as file : filedata = file.read() # Replace the target string filedata1 = filedata.replace("supportsEmptyHouseNumber = false", "supportsEmptyHouseNumber = true") filedata2 = filedata.replace("supportsOptionalZone = false", "supportsOptionalZone = true") # Write the file out again with open(r"Y:\path\to\locator.loc", 'w') as file: file.write(filedata1) file.write(filedata2)
... View more
01-29-2018
05:28 AM
|
0
|
3
|
2183
|
|
POST
|
my question is similar to this one: https://community.esri.com/message/459758?commentID=459758#comment-459758?q=accessing%20address%20locator%20properties%2… I am using Desktop 10.5.1 I am automating the process of creating an address locator with arcpy. Everything works fine however I need to adjust the properties of the locator after its created under the "geocode options" menu I need to change the values for the "match without house number" and "match with no zones" both need to be set to value "Yes" How can I access this via arcpy? this is across post on stack exchange as well: geocoding - arcmap 10.5.1 address locator properties via arcpy - Geographic Information Systems Stack Exchange
... View more
01-26-2018
12:22 PM
|
0
|
5
|
2682
|
|
POST
|
Hello Jonathan, another question regarding Portal (10.5). Our organization acquired a CA signed SSL cert for our web adapter connecting to server. Can we use the same cert for portal?
... View more
01-25-2018
07:10 AM
|
0
|
1
|
2007
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-13-2018 10:15 AM | |
| 1 | 12-21-2017 06:41 AM | |
| 1 | 02-12-2018 01:36 PM | |
| 1 | 08-29-2017 06:30 AM | |
| 1 | 02-13-2018 10:13 AM |