Come è possibile trovare la versione ArcGIS a livello di codice?


9

Esiste un modo utilizzando ArcObjects.net per scoprire quale versione di ArcGIS è installata su una macchina (es. 9.3., 10.0, 10.1)?


o anche una posizione del registro sarebbe utile. Ho solo bisogno di un modo per far capire al programma quale versione di ArcGIS è stata installata dall'utente. I percorsi dei file non funzioneranno perché ArcGIS non sembra disinstallare le vecchie cartelle nella cartella AppData
Nick

Risposte:


8

In ArcObjects .NET, utilizzare RuntimeManager, ad esempio:

Elenco di tutti i runtime installati:

var runtimes = RuntimeManager.InstalledRuntimes;
foreach (RuntimeInfo runtime in runtimes)
{
  System.Diagnostics.Debug.Print(runtime.Path);
  System.Diagnostics.Debug.Print(runtime.Version);
  System.Diagnostics.Debug.Print(runtime.Product.ToString());
}

oppure, per ottenere il runtime attualmente attivo:

bool succeeded = ESRI.ArcGIS.RuntimeManager.Bind(ProductCode.EngineOrDesktop);
if (succeeded)
{
  RuntimeInfo activeRunTimeInfo = RuntimeManager.ActiveRuntime;
  System.Diagnostics.Debug.Print(activeRunTimeInfo.Product.ToString());
}

Anche in arcpy, puoi usare GetInstallInfo .


Motivo del downvote?
blah238,

Ho dato +1, quindi sono stato sorpreso di vedere 0 quando ho guardato indietro anche adesso - mi è piaciuto anche il tuo promemoria ArcPy.
PolyGeo

IIRC è RuntimeManagerstato introdotto con ArcGIS 10.0 e pertanto non può essere utilizzato per rilevare le versioni precedenti di ArcGIS.
stakx,

Lo stesso vale per ArcPy - che non esisteva ancora nelle versioni precedenti alla 10.0.
stakx,

3

Su un PC Win7 a 64 bit questa chiave di registro può essere d'aiuto. Ho installato 10.0 e legge 10.0.2414.

Software \ HKLM \ \ WOW6432Node \ ESRI \ Arcgis \ RealVersion


1
Questo è utile per quando ArcObjects non è disponibile, lo uso durante la creazione di programmi di installazione.
Kelly Thomas,

2
Su 32 bit questa chiave è HKLM \ SOFTWARE \ ESRI \ ArcGIS \ RealVersion
mwalker

@mwalker Anche a 64 bit con 10.1 Vedo HKLM \ SOFTWARE \ ESRI \ ArcGIS \ RealVersion, mi chiedo se questa chiave esiste a 10.0?
Kirk Kuykendall il

@Kirk, non ho quella chiave su 64-bit a 10.1 - chiedo perché no.
blah238,

@ blah238 Ho 10.1 sp1, sia desktop che server installati. Non sono sicuro di quale installazione abbia creato la chiave.
Kirk Kuykendall il


0

È inoltre possibile ottenere la versione di ArcGIS eseguendo una query sulla versione di AfCore.dll. Ciò richiede la conoscenza della directory di installazione di ArcGIS, che è possibile ottenere eseguendo una query sul registro o tramite hardcoding (è C: \ Programmi (x86) \ ArcGIS \ Desktop10.3 \ per la maggior parte degli utenti).

/// <summary>
/// Find the version of the currently installed ArcGIS Desktop
/// </summary>
/// <returns>Version as a string in the format x.x or empty string if not found</returns>
internal string GetArcGISVersion()
{
    try
    {
        FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(Path.Combine(Path.Combine(GetInstallDir(), "bin"), "AfCore.dll"));
        return string.Format("{0}.{1}", fvi.FileMajorPart, fvi.FileMinorPart);
    }
    catch (FileNotFoundException ex)
    {
        Console.WriteLine(string.Format("Could not get ArcGIS version: {0}. {1}", ex.Message, ex.StackTrace));
    }

    return "";
}

/// <summary>
/// Look in the registry to find the install directory of ArcGIS Desktop.
/// Searches in reverse order, so latest version is returned.
/// </summary>
/// <returns>Dir name or empty string if not found</returns>
private string GetInstallDir()
{
    string installDir = "";
    string esriKey = @"Software\Wow6432Node\ESRI";

    foreach (string subKey in GetHKLMSubKeys(esriKey).Reverse())
    {
        if (subKey.StartsWith("Desktop"))
        {
            installDir = GetRegValue(string.Format(@"HKEY_LOCAL_MACHINE\{0}\{1}", esriKey, subKey), "InstallDir");
            if (!string.IsNullOrEmpty(installDir))
                return installDir;
        }
    }

    return "";
}

/// <summary>
/// Returns all the subkey names for a registry key in HKEY_LOCAL_MACHINE
/// </summary>
/// <param name="keyName">Subkey name (full path excluding HKLM)</param>
/// <returns>An array of strings or an empty array if the key is not found</returns>
private string[] GetHKLMSubKeys(string keyName)
{
    using (RegistryKey tempKey = Registry.LocalMachine.OpenSubKey(keyName))
    {
        if (tempKey != null)
            return tempKey.GetSubKeyNames();

        return new string[0];
    }
}

/// <summary>
/// Reads a registry key and returns the value, if found.
/// Searches both 64bit and 32bit registry keys for chosen value
/// </summary>
/// <param name="keyName">The registry key containing the value</param>
/// <param name="valueName">The name of the value</param>
/// <returns>string representation of the actual value or null if value is not found</returns>
private string GetRegValue(string keyName, string valueName)
{
    object regValue = null;

    regValue = Registry.GetValue(keyName, valueName, null);
    if (regValue != null)
    {
        return regValue.ToString();
    }

    // try again in 32bit reg
    if (keyName.Contains("HKEY_LOCAL_MACHINE"))
        regValue = Registry.GetValue(keyName.Replace(@"HKEY_LOCAL_MACHINE\Software", @"HKEY_LOCAL_MACHINE\Software\Wow6432Node"), valueName, null);
    else if (keyName.Contains("HKEY_CURRENT_USER"))
        regValue = Registry.GetValue(keyName.Replace(@"HKEY_CURRENT_USER\Software", @"HKEY_CURRENT_USER\Software\Wow6432Node"), valueName, null);
    if (regValue != null)
    {
        return regValue.ToString();
    }

    return "";
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.