Kind is short for Kubernetes in Docker.
As the name suggests, you need to have a working installation of Docker before you can use KinD.
You can refer to instructions at the top of this article on the best option to install Docker on your machine.
Once Docker is installed, you should install kubectl next.
Kubectl is a command-line interface that assists in handling Kubernetes clusters.
In most cases, it should easily be installed through Chocolatey with:
The steps to install Chocolatey are described here.
Install on Windows using Chocolatey or Scoop
choco install
kubernetes-cli

If installed already kubernetes-cli
Install KIND
Now you will use choco to install Kind using cli PS1: choco install kind -y

If you hadn’t installed Docker till now, the above command should install it automatically.
Note: If you have WSL 2 installed, it will automatically be used.
Let’s test it
Using cli : kind create cluster for test


The command could take a while (5 minutes+ and if your RAM is 8GB, you’ll see some slowdown as well).
To check if we were successful, type:
Excellent, your cluster is ready!
Good lucky
Phuong Nguyen
Refernce sourc: https://learnk8s.io/installing-docker-kubernetes-windows