There are two editions of the Docker engine - the Enterprise Edition (EE) and the Community Edition (CE).
Docker Desktop for Windows, which is designed to be used on Windows 10/11 includes the Community Edition (CE). If you do not wish or want to use Docker Desktop for Windows, the "Docker Engine" itself can be installed. Some community-based package installers such as Chocolately provide an easy installation.
If you are using a server-based operating system, then Windows Server 2016/2022 provides a PowerShell package installer that installs the Enterprise Edition (EE) of Docker.
Full information on installing Docker is contained in the Docker Desktop page on the Docker site.
To install Docker Enterprise Edition on Windows Server 2016 use the following PowerShell commands:
Install-Module DockerMsftProvider -Force Install-Package Docker -ProviderName DockerMsftProvider -Force