<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to find ArcGIS version in .NET in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698178#M18712</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you can call python from ArcObjects you could obtain the information you require using &lt;A href="http://gis.stackexchange.com/questions/169588/programmatically-check-if-service-pack-is-installed"&gt;this method discussed on GIS SE&lt;/A&gt;? I've never tried to call python from within a .Net project so not sure how easy that is?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Nov 2016 13:12:32 GMT</pubDate>
    <dc:creator>DuncanHornby</dc:creator>
    <dc:date>2016-11-08T13:12:32Z</dc:date>
    <item>
      <title>How to find ArcGIS version in .NET</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698175#M18709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am currenlty trying to find out how to get the runnig ArcGIS version.&lt;/P&gt;&lt;P&gt;I found something similar in &lt;A href="https://community.esri.com/thread/62125"&gt;How to know ArcGis version in C#&lt;/A&gt;&amp;nbsp; but it does not answer my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i call &lt;STRONG&gt;RuntimeManager.ActiveRuntime.Version&lt;/STRONG&gt; it tells me 10.2. The the versions from "InstalledRuntimes" all returns me 10.2.&lt;/P&gt;&lt;P&gt;But my i&lt;STRONG&gt;nstalled version is 10.2.1&lt;/STRONG&gt;. In ArcGIS Administrator i even see 10.2.1.3497. We need to see at least, wether the client machine has 10.2 or 10.2.1 installed. Where to I get the &lt;STRONG&gt;real &lt;/STRONG&gt;version number from?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lionel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2016 14:11:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698175#M18709</guid>
      <dc:creator>LionelMartz</dc:creator>
      <dc:date>2016-11-04T14:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to find ArcGIS version in .NET</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698176#M18710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can access the registry to get the RealVersion key: &lt;SPAN&gt;HKEY_LOCAL_MACHINE\SOFTWARE\ESRI\ArcGIS\RealVersion&lt;/SPAN&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://msdn.microsoft.com/en-us/library/xz88758e.aspx" title="https://msdn.microsoft.com/en-us/library/xz88758e.aspx"&gt;How to: Read a Value from a Registry Key in Visual Basic&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://www.codeproject.com/Articles/3389/Read-write-and-delete-from-registry-with-C" title="http://www.codeproject.com/Articles/3389/Read-write-and-delete-from-registry-with-C"&gt;Read, write and delete from registry with C# - CodeProject&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 17:20:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698176#M18710</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2016-11-07T17:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to find ArcGIS version in .NET</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698177#M18711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ken,&lt;/P&gt;&lt;P&gt;thanks for the hint. But we have different problems with this solution.&lt;/P&gt;&lt;P&gt;First, the Path in our case is with an \wow6432Node\ in the middle. I guess due to 64Bit operation system.&lt;/P&gt;&lt;P&gt;Second problem is, that this RealVersion in this path again shows only the 10.2 (plus the build number). In my Case there is 10.2.3497.&lt;/P&gt;&lt;P&gt;The version I need is located in subfolder Engine10.2\RealVersion.&lt;/P&gt;&lt;P&gt;Now this is again a hardcoded path, I'd like to avoid searching for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My only idea left would be to to take the first part of the ArcGIS\RealVersion &lt;STRONG&gt;10.2&lt;/STRONG&gt;.3497 and merge it with the string "&lt;STRONG&gt;Engine&lt;/STRONG&gt;" to find the correct directory the search for the other "Real"Version...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or dit I miss something?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Nov 2016 08:01:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698177#M18711</guid>
      <dc:creator>LionelMartz</dc:creator>
      <dc:date>2016-11-08T08:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to find ArcGIS version in .NET</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698178#M18712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you can call python from ArcObjects you could obtain the information you require using &lt;A href="http://gis.stackexchange.com/questions/169588/programmatically-check-if-service-pack-is-installed"&gt;this method discussed on GIS SE&lt;/A&gt;? I've never tried to call python from within a .Net project so not sure how easy that is?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Nov 2016 13:12:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/how-to-find-arcgis-version-in-net/m-p/698178#M18712</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2016-11-08T13:12:32Z</dc:date>
    </item>
  </channel>
</rss>

