well, to create a cert you need makecert.exe, which you can google for. Then create a bat file with the following:
makecert.exe -r -n "CN=your.dns.name.here" -b 01/01/2004 -e 01/01/2006 -eku 1.3.6.1.5.5.7.3.1 -ss my -sr CurrentUser -a sha1 -sk your.dns.name.here -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12
Replace 'your.dns.name.here' and save it as a .bat file in the same place as makecert.exe. Then create a service in FD to run the batch file. After this SSL should work and you may delete the service you just created
|