Hi, I used the
CredSSP document for some configuration, but I don't know what to do with the value of $certificate_thumbprint.
# note the value $certificate_thumbprint will be different in each
# situation, this needs to be set based on the cert that is used.
$certificate_thumbprint = "7C8DCBD5427AFEE6560F4AF524E325915F51172C"
As mentioned above:the value $certificate_thumbprint will be different in each. but how do I get the corresponding value?
I did the other configuration in the document to connect to the normal Windows host, but the corresponding domain user was still unable to connect.hosts:
[dbServer]
192.168.227.199
[adServer]
xll-win
dbServer.yml:
ansible_user: Administrator
ansible_password: "Test123"
ansible_ssh_port: 5986
ansible_connection: winrm
ansible_winrm_transport: credssp

ansible_winrm_server_cert_validation: ignore
adServer.yml(Active Directory):
ansible_user: xiell
ansible_pass: "Test123456"
ansible_port: 5986
ansible_connection: winrm
ansible_winrm_transport: credssp
ansible_winrm_server_cert_validation: ignore
thanks