<?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: Installing an Image server via PowerShell DSC in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682562#M43767</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/826001"&gt;@CoryMarino&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;"Server" is correct for the Role.&amp;nbsp; I recommend creating a separate JSON file for the Image Server instance.&amp;nbsp; Below is an example:&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;{
    "AllNodes": [
        {
            "NodeName": "arcgis-image",
            "Role": [
                "Server"
            ],
            "SslCertificates": [
                {
                    "Path": "D:\\automationFiles\\certificates\\arcgis-image.pfx",
                    "PasswordFilePath": "D:\\automationFiles\\passwords\\certificate.txt",
                    "CNameFQDN": "arcgis-image.esri.com",
                    "Target": [
                        "Server"
                    ]
                }
            ]
        },
        {
            "NodeName": "arcgis-webadaptor",
            "Role": [
                "WebAdaptor"
            ],
            "WebAdaptorConfig": [
                {
                    "Role": "Server"
                }
            ]
        }
    ],
    "ConfigData": {
        "Version": "11.1",
        "ServerContext": "image",
        "ServerRole": "GeneralPurposeServer",
        "DownloadSetups": true,
        "Downloadpatches": true,
        "Credentials": {
            "ServiceAccount": {
                "PasswordFilePath": "D:\\automationFiles\\passwords\\serviceAccount.txt",
                "UserName": "esri\\service_arcgis",
                "IsDomainAccount": true,
                "IsMSAAccount": false
            },
            "AGOCredential":{
               "UserName": "myesriadmin",
               "PasswordFilePath": "D:\\automationFiles\\passwords\\MyEsri.txt"
            }
        },
        "Server": {
            "LicenseFilePath": "D:\\automationFiles\\licenses\\ArcGISGISServerAdvanced_ArcGISServer_1428926.prvc",
            "Installer": {
                "Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Server_Windows_111_185208.exe",
                "InstallDir": "D:\\Program Files\\ArcGIS\\Server",
                "patchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
            },
            "ServerDirectoriesRootLocation": "D:\\arcgisserver\\directories",
            "ConfigStoreLocation": "D:\\arcgisserver\\config-store",
            "ExternalLoadBalancer": "gis.esri.com",
            "PrimarySiteAdmin": {
                "UserName": "siteadmin",
                "PasswordFilePath": "D:\\automationFiles\\passwords\\siteadmin.txt"
            }
        },
        "WebAdaptor": {
            "AdminAccessEnabled": true,
            "Installer": {
                "Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Web_Adaptor_for_Microsoft_IIS_111_185222.exe",
                "PatchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
            }
        },
        "Federation": {
            "PortalHostName": "gis.esri.com",
            "PortalPort": "443",
            "PortalContext": "portal",
            "PortalAdministrator": {
                "UserName": "portaladmin",
                "PasswordFilePath": "D:\\automationFiles\\passwords\\portaladmin.txt"
            },
            "RestrictedPublishing": false
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 06 Feb 2026 18:43:30 GMT</pubDate>
    <dc:creator>JakeSkinner</dc:creator>
    <dc:date>2026-02-06T18:43:30Z</dc:date>
    <item>
      <title>Installing an Image server via PowerShell DSC</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682243#M43760</link>
      <description>&lt;P&gt;Hi my organization currently has a three node deployment (datastore / Server / Portal) that we used the Powershell DSC to stand up. We have now been tasked with installing an additional server to serve as an image server. With that said I have two questions&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Can we add the image server as an additional node in "All Nodes" and run the DSC tool to install the image server?&lt;/LI&gt;&lt;LI&gt;What Roles do we give that server in the JSON configuration file.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here is the general construction I had started for the additional Image Server but I wanted to confirm if this is indeed the stuff I should be putting in the section&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
            "NodeName": "NAME",
            "Role": [
                "Server"
            ],
            "SslCertificates": [
                {
                    "Path": "PATH",
                    "Password": "{SSL Password}",
                    "CNameFQDN": "FQDN",
                    "Target": [
                        "Server"
                    ]
                }
            ]
        }&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 01:37:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682243#M43760</guid>
      <dc:creator>CoryMarino</dc:creator>
      <dc:date>2026-02-05T01:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Image server via PowerShell DSC</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682562#M43767</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/826001"&gt;@CoryMarino&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;"Server" is correct for the Role.&amp;nbsp; I recommend creating a separate JSON file for the Image Server instance.&amp;nbsp; Below is an example:&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;{
    "AllNodes": [
        {
            "NodeName": "arcgis-image",
            "Role": [
                "Server"
            ],
            "SslCertificates": [
                {
                    "Path": "D:\\automationFiles\\certificates\\arcgis-image.pfx",
                    "PasswordFilePath": "D:\\automationFiles\\passwords\\certificate.txt",
                    "CNameFQDN": "arcgis-image.esri.com",
                    "Target": [
                        "Server"
                    ]
                }
            ]
        },
        {
            "NodeName": "arcgis-webadaptor",
            "Role": [
                "WebAdaptor"
            ],
            "WebAdaptorConfig": [
                {
                    "Role": "Server"
                }
            ]
        }
    ],
    "ConfigData": {
        "Version": "11.1",
        "ServerContext": "image",
        "ServerRole": "GeneralPurposeServer",
        "DownloadSetups": true,
        "Downloadpatches": true,
        "Credentials": {
            "ServiceAccount": {
                "PasswordFilePath": "D:\\automationFiles\\passwords\\serviceAccount.txt",
                "UserName": "esri\\service_arcgis",
                "IsDomainAccount": true,
                "IsMSAAccount": false
            },
            "AGOCredential":{
               "UserName": "myesriadmin",
               "PasswordFilePath": "D:\\automationFiles\\passwords\\MyEsri.txt"
            }
        },
        "Server": {
            "LicenseFilePath": "D:\\automationFiles\\licenses\\ArcGISGISServerAdvanced_ArcGISServer_1428926.prvc",
            "Installer": {
                "Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Server_Windows_111_185208.exe",
                "InstallDir": "D:\\Program Files\\ArcGIS\\Server",
                "patchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
            },
            "ServerDirectoriesRootLocation": "D:\\arcgisserver\\directories",
            "ConfigStoreLocation": "D:\\arcgisserver\\config-store",
            "ExternalLoadBalancer": "gis.esri.com",
            "PrimarySiteAdmin": {
                "UserName": "siteadmin",
                "PasswordFilePath": "D:\\automationFiles\\passwords\\siteadmin.txt"
            }
        },
        "WebAdaptor": {
            "AdminAccessEnabled": true,
            "Installer": {
                "Path": "D:\\automationFiles\\software\\ArcGIS11.1\\ArcGIS_Web_Adaptor_for_Microsoft_IIS_111_185222.exe",
                "PatchesDir": "D:\\automationFiles\\software\\ArcGIS11.1\\patches"
            }
        },
        "Federation": {
            "PortalHostName": "gis.esri.com",
            "PortalPort": "443",
            "PortalContext": "portal",
            "PortalAdministrator": {
                "UserName": "portaladmin",
                "PasswordFilePath": "D:\\automationFiles\\passwords\\portaladmin.txt"
            },
            "RestrictedPublishing": false
        }
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 18:43:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682562#M43767</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2026-02-06T18:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Image server via PowerShell DSC</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682806#M43769</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Appreciate the response! Wouldn't making the Image Server Config its own JSON configuration make upgrading in the future much more difficult ? Whereas adding the additional server to our singular JSON configuration file would allow us a much easier path to upgrade.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Also I noticed in the example above it has a web adapter but I thought only the general purpose server and portal have web adapters.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Cory&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 17:43:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682806#M43769</guid>
      <dc:creator>CoryMarino</dc:creator>
      <dc:date>2026-02-06T17:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Installing an Image server via PowerShell DSC</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682824#M43770</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/826001"&gt;@CoryMarino&lt;/a&gt;&amp;nbsp;you will want an additional web adaptor to access the new Image Server.&amp;nbsp; This additional web adaptor can reside on the same server where you host your Portal and ArcGIS Server web adaptors.&lt;/P&gt;&lt;P&gt;I believe you'll receive an error if you have two nodes configured with the same Role (i.e. "Server") in your JSON file.&amp;nbsp; Also, you may need to configure different directories for the Image Server vs your traditional ArcGIS Server instances.&amp;nbsp; In a single JSON file, there's only one place to define this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JakeSkinner_0-1770403641032.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/148076iE060CBD02B8B3E1E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JakeSkinner_0-1770403641032.png" alt="JakeSkinner_0-1770403641032.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 18:48:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/installing-an-image-server-via-powershell-dsc/m-p/1682824#M43770</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2026-02-06T18:48:30Z</dc:date>
    </item>
  </channel>
</rss>

