<?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: spatial license &amp;quot;NotLicensed&amp;quot; in stand alone script... in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37037#M2892</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Matthew,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A "check-out" would occur after checking and seeing that the license is available - I am being told that no license is available, so I cannot proceed to check it out.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Besides, a check out would not apply for a stand-alone license, would it? only if there's a license server (which i don't have)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the real clue is when I print out this statment: arcpy.AddMessage(arcpy.ProductInfo())&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and I get as a result:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcServer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This box has arcgis server and arcmap installed.&amp;nbsp; Perhaps there is a conflict with the "License Levels". Perhaps at the arcserver license level there is no access to desktop extensions via scripting?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Someone from ESRI?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Apr 2014 14:45:50 GMT</pubDate>
    <dc:creator>MichaelBlom</dc:creator>
    <dc:date>2014-04-09T14:45:50Z</dc:date>
    <item>
      <title>spatial license &amp;amp;quot;NotLicensed&amp;amp;quot; in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37031#M2886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;... but fine (Available) when I debug the script in a python IDE.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In &lt;/SPAN&gt;&lt;A href="http://downloads2.esri.com/ESRIpress/images/224/PYTHON_sample-ch5.pdf"&gt;this doc &lt;/A&gt;&lt;SPAN&gt;on page 116, I read that the setting of product and extensions is necessary only within stand alone scripts.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So in my py script, I first do the full check for the spatial analyst license, but it fails when I call this script from a command window.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I open administrator, and see what I have installed, Spatial Analyst is there: Installed, Authorized and Permanent (non expiring). Single Use, so no license server to point at.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone have any hints about how I can solve this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 12:45:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37031#M2886</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T12:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37032#M2887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Not exactly sure what your specific problem is that you are experiencing, but here is how you would check out a license, perform the analysis and then check the license back in.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ### see if spatial analyst extension is available for use
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; availability = arcpy.CheckExtension("Spatial")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if availability == "Available":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CheckOutExtension("Spatial")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "SA Ext has been checked out"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "%s extension is not available (%s)"%("Spatial Analyst Extension",availability)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Please ask someone who has it checked out but not using to turn off the extension"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #run the analysis&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.sa.Sample(rasters2, transect_in, outtab)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #return the extension
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CheckInExtension("Spatial")

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:26:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37032#M2887</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-10T21:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37033#M2888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks for replying James:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have these lines:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if arcpy.CheckExtension("Spatial")=="Available":&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do something&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;else:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("Spatial Analyst Licenses status: "+ arcpy.CheckExtension("Spatial"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage(arcpy.ProductInfo())&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I log the messages out:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Spatial Analyst Licenses status: NotLicensed&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcServer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I open ArcMap, it tells me I have spatial analyst.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 13:26:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37033#M2888</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T13:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37034#M2889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Screen shot of what my administrator looks like:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 13:56:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37034#M2889</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T13:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37035#M2890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;screen shot of what my administrator looks like&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 13:59:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37035#M2890</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T13:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37036#M2891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As James said earlier you have to actually &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;&lt;STRONG&gt;check out&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt; the license with this line.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.CheckOutExtension("Spatial")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 14:07:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37036#M2891</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2014-04-09T14:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37037#M2892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Matthew,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;A "check-out" would occur after checking and seeing that the license is available - I am being told that no license is available, so I cannot proceed to check it out.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Besides, a check out would not apply for a stand-alone license, would it? only if there's a license server (which i don't have)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think the real clue is when I print out this statment: arcpy.AddMessage(arcpy.ProductInfo())&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and I get as a result:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ArcServer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This box has arcgis server and arcmap installed.&amp;nbsp; Perhaps there is a conflict with the "License Levels". Perhaps at the arcserver license level there is no access to desktop extensions via scripting?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Someone from ESRI?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 14:45:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37037#M2892</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T14:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37038#M2893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ahh yes. An ArcServer install cannot use desktop licenses.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you using 64 bit Python for desktop?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What is your output from sys.path?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 15:07:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37038#M2893</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2014-04-09T15:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37039#M2894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;sys.path[0] is just the path that the script is running from&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I didn't print out other sys.path values, is there a specific value in the list?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the only version of python i have is here: D:\Python27\ArcGISx6410.2\python.exe&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 15:26:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37039#M2894</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T15:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37040#M2895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The entire sys.path output will tell you if you are reading from the desktop or server libraries or both.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 15:29:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37040#M2895</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2014-04-09T15:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37041#M2896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;sys.path output&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 15:36:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37041#M2896</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T15:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37042#M2897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yeah there are no desktop references. You will need to add these to your system paths, and possibly remove the server library references. Modifying depending on what drive/folder you have desktop installed. You will need the 64 bit desktop geoprocessing patch if you don't already.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; 'C:\\Program Files (x86)\\ArcGIS\\Desktop10.2\\bin',
 'C:\\Program Files (x86)\\ArcGIS\\Desktop10.2\\arcpy',
 'C:\\Program Files (x86)\\ArcGIS\\Desktop10.2\\ArcToolbox\\Scripts'&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not 100% sure if this will solve your problem or not as I've never dealt with a mixed install like this before.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:26:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37042#M2897</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2021-12-10T21:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37043#M2898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for helping out with this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I edit my (Python?) system paths?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's very strange, because I've had this setup before, and it's worked fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 21:05:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37043#M2898</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-09T21:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37044#M2899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I haven't tried yet, but this looks to be a solution:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support.esri.com/es/knowledgebase/techarticles/detail/39029"&gt;http://support.esri.com/es/knowledgebase/techarticles/detail/39029&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 05:20:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37044#M2899</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-10T05:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37045#M2900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So, the solution I linked to above describes what to do if desktop level of licensing is interfering with a server level of licensing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What's the solution for the problem where I have a server level of licensing blocking me from running python scripts that rely on a desktop level of licensing?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;From what I've &lt;/SPAN&gt;&lt;A href="http://gis.stackexchange.com/questions/78738/why-does-import-arcview-arceditor-give-gp-setproduct-runtimeerror-error-99999/78743#78743"&gt;read&lt;/A&gt;&lt;SPAN&gt;, one cannot revert or degrade their level of licensing, and I would not want to do this and run the risk of ArcGIS server then not functioning properly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I don't get is "why are desktop and server part of the same spectrum of licensing??!!"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe I can register spatial analyst extension with my server license?&amp;nbsp; has anyone done this ever?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 09:08:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37045#M2900</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-10T09:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37046#M2901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Spatial Analyst for ArcGIS Server is a separate extension requiring it's own license.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.esri.com/software/arcgis/arcgisserver/extensions/spatial-extension"&gt;http://www.esri.com/software/arcgis/arcgisserver/extensions/spatial-extension&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Their licensing is separate but their geoprocessing overlap.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 15:35:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37046#M2901</guid>
      <dc:creator>MathewCoyle</dc:creator>
      <dc:date>2014-04-10T15:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: spatial license "NotLicensed" in stand alone script...</title>
      <link>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37047#M2902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, and I have Spatial Analyst installed, authorized, authenticated, polished &amp;amp; shined, and ready to go.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But the fact of the matter, is that my check for licenses needs to go through the Desktop version of the geoprocessing python scripts to see this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2014 08:02:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/spatial-license-amp-amp-quot-notlicensed-amp-amp/m-p/37047#M2902</guid>
      <dc:creator>MichaelBlom</dc:creator>
      <dc:date>2014-04-11T08:02:52Z</dc:date>
    </item>
  </channel>
</rss>

