# Internet Information Service Installation

ARKSSPR Server role needs IIS service to run. All agents communicate with the server over the TCP 443 (HTTPS) protocol. The site must be secured with a valid HTTPS certificate.&#x20;

The necessary IIS components and the [PowerShell script](#powershell-komutu) required for the installation of these components are given below.&#x20;

## Powershell komutu

You should open Powershell screen with RunAs Administrators right. Paste powershell command in this screen.

{% code title="InstallIIS.ps1" overflow="wrap" lineNumbers="true" %}

```powershell
Add-WindowsFeature Web-Server,Web-WebServer,Web-Common-Http,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Static-Content,Web-Http-Redirect,Web-Health,Web-Http-Logging,Web-Custom-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Performance,Web-Stat-Compression,Web-Security,Web-Filtering,Web-Basic-Auth,Web-Windows-Auth,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase
```

{% endcode %}
