# Install Microsoft IIS server

```bash
# PowerShell

PS > Get-WindowsFeature -Name Web-* | Install-WindowsFeature
```

```bash
# cmd.exe

C:\Users\John > pwsh
PS > Get-WindowsFeature -Name Web-* | Install-WindowsFeature
```
