To get the most out of your EmpowerID deployment, the following software requirements must be met. At a minimum, EmpowerID recommends one dedicated server for the Web Front-End (hosts server web services) and one dedicated server for the Application server (hosts back-end processes).
...
Warning |
---|
Prior to running EmpowerID, you must install the Microsoft IIS CORS and URL Rewrite modules on each EmpowerID server. To do so, please run the below PowerShell script in administrative mode. |
Code Block |
---|
[System.IO.Directory]::CreateDirectory("C:\TempEID")
(New-Object System.Net.WebClient).DownloadFile('https://download.microsoft.com/download/C/9/E/C9E8180D-4E51-40A6-A9BF-776990D8BCA9/rewrite_amd64.msi', 'C:\TempEID\rewrite_amd64.msi'); `
(New-Object System.Net.WebClient).DownloadFile('http://download.microsoft.com/download/2/F/2/2F259559-FC43-4B2C-B53F-DED3E9950912/IISCORS_amd64.msi', 'C:\TempEID\IISCORS_amd64.msi'); `
Start-Process msiexec.exe -ArgumentList '/i', 'C:\TempEID\IISCORS_amd64.msi', '/quiet', '/norestart' -NoNewWindow -Wait
Start-Process msiexec.exe -ArgumentList '/i', 'C:\TempEID\rewrite_amd64.msi', '/quiet', '/norestart' -NoNewWindow -Wait
rm -r 'C:\TempEID' |
...
EmpowerID Application and Front-End Server Software Requirements |
---|
Server Operating Systems | EmpowerID supports the last 2 major versions of Windows Server. Info |
---|
Although support extends to the last 2 major versions of Windows Server, EmpowerID recommends the latest version. |
Warning |
---|
Please note that installing EmpowerID on a domain controller or on the same server that houses the EmpowerID SQL database is not supported in a production environment. |
|
Additional Software | The latest version of the Microsoft® .NET Framework as well as 3.5 SP1 (installed using Server Manager > Features) The latest version of Windows PowerShell is required for servers hosting the Exchange Management Web service. For Windows PowerShell script execution, run the following command in an elevated Windows PowerShell window:
Code Block |
---|
| Set-ExecutionPolicy RemoteSigned |
The latest version of IIS with ASP.NET (Web Server Role, Application Server Role and WCF Activation Features) is required for server running Web applications. Visual Studio 2022 (any version) on both web/app sandbox servers (required to publish and debug workflows). Handle v4.22 or higher is required. More details about the Handle can be found here. SQL Server PowerShell module should be installed for server running Web applications. The SQL Server module can be installed simply by executing Install-Module SQLServer command in the powershell. More details about the module can be found here.
Note |
---|
The (UAC) must be disabled on each client machine running Workflow Studio applications. |
Note |
---|
Compatibility mode must be turned off when using Microsoft® Internet Explorer to browse EmpowerID. If you are unable to disable compatibility mode for the Internet Explorer security zone that EmpowerID falls into due to requirements for other legacy intranet sites in your organization, you may add EmpowerID URLs to the Trusted Sites zone using Microsoft Group Policy. |
|
Tip |
---|
On Windows Server 2012 you can run the PowerShell cmdlets below to ensure all IIS prerequisites are met: |
Code Block |
---|
|
Add-WindowsFeature Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Cert-Auth,Web-Url-Auth,Web-Http-Errors,Web-Net-Ext,Web-Net-Ext45,WAS-Process-Model,Web-Dyn-Compression,NET-HTTP-Activation,Web-Mgmt-Console,Web-HTTP-Redirect,Web-Asp-Net45,NET-WCF-HTTP-Activation45 |
Database Software Requirements |
---|
Supported Databases | EmpowerID supports the last 2 major versions of Windows SQL Server, to include SQL Server 2017. Tip |
---|
Full-Text Search must be installed and enabled. To check your Microsoft SQL Server for Full-Text Search, execute the following T-SQL: |
Code Block |
---|
| select SERVERPROPERTY('IsFullTextInstalled') |
Warning |
---|
At a minimum the log for tempdb needs to have at least 50GB availability for growth. |
|
...
EmpowerID Web Interfaces Software Requirements |
---|
Browser | The latest versions of Firefox, Chrome, Safari, Microsoft Edge and Microsoft® Internet Explorer 11 are supported. Warning |
---|
Compatibility mode must be turned off when using Microsoft® Internet Explorer to browse EmpowerID. If you are unable to disable compatibility mode for the Internet Explorer security zone that EmpowerID falls into due to requirements for other legacy intranet sites in your organization, you may add EmpowerID URLs to the Trusted Sites zone using Microsoft Group Policy. |
|
EmpowerID On-Premise Cloud Gateway Software Requirements (Optional installation) |
---|
Client Operating Systems | |
Additional Software | None required |
...