> For the complete documentation index, see [llms.txt](https://i.janardhanpulivarthi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://i.janardhanpulivarthi.com/season-1/install-microsoft-iis-server.md).

# 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
```
