SSL用のサーバ証明書が必要なときに、(CaCertとかだと該当ドメインを所有してないといけませんが)、サーバ名かIPだけでお手軽に作成する方法をメモしておきます。
makecert -pe -n “CN=My Test CA” -ss my -sr LocalMachine -a sha1 -sky signature -r “d:\MyTestCA.cer”
makecert -pe -n “CN=MyServerNameOrIP” -ss my -sr LocalMachine -a sha1 -sky exchange -eku 1.3.6.1.5.5.7.3.1 -in “My Test CA” -is my -ir LocalMachine -sp “Microsoft RSA SChannel Cryptographic Provider” -sy 12 “D:\MyTestServer.cer”