"The Certificate With Thumbprint <thumbprint> was not found in the personal certificate store"
I used the typical method of creating a Azure management cert (makecert - in Windows SDK)
makecert
-sky exchange -r -n "CN=
MyCert" -pe -a sha1 -len 2048
-ss My "
MyCert.cer"
Turn out, I had the cert in the my personal store, but it needed to be imported into Trusted Root Certification Authorites:
Instructions on Exporting and Importing the cert into the appropriate folder is located in the following Microsoft KB:
https://support.microsoft.com/en-us/kb/2977336?wa=wsignin1.0
Thanks, this fixed my problem right away
ReplyDelete