You want to copy your SSH public key to a remote server to enable passwordless login, but you are using Windows.
The ssh-copy-id
command is not available by default on Windows.
Do it manually:
cat ~/.ssh/id_rsa.pub | ssh user@server "cat >> ~/.ssh/authorized_keys"