Using makecert for Development SSL

Posted by John on Stack Overflow See other posts from Stack Overflow or by John
Published on 2009-01-30T18:40:04Z Indexed on 2010/03/24 20:53 UTC
Read the original article Hit count: 332

Filed under:
|
|

Here's my situation:

I'm trying to create a SSL certificate that will be installed on all developer's machine's, along with two internal servers (everything is non-production).

What do I need to do to create a certificate that can be installed in all of these places?

Right now I've got something along these lines, using the makecert application in Microsoft Visual Studio 8\SDK\v2.0\Bin:

makecert -r -pe -n "CN=MySite.com Dev" -b 01/01/2000 -e 01/01/2033 -eku 1.3.6.1.5.5.7.3.1 -ss Root -sr localMachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 mycert.cer

However, I'm not sure as to how to place this .cer file on the other computers, and when I install it on my local machine IIS, everytime I visit a page via https:, I get the security prompt (even after I've installed the certificate). Has anyone done this before?

© Stack Overflow or respective owner

Related posts about iis

Related posts about makecert

  • Makecert.exe hangs

    as seen on Server Fault - Search for 'Server Fault'
    I was following the steps in Scott Hanselman's blog post describing how to create a certificate authority and code signing certificate for PowerShell scripts. Initially, I created the certificate authority and a personal certifcate and used it to sign a powershell script successfully. All went as… >>> More

  • Syntax error for makecert.exe tool

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Did I missed anything during this? I am running a this command from command prompt in Windows 7 to create a certificate but it is showing a syntax error. Command I ran: makecert.exe "c:\1\Test.cer" -a sha1 -n "CN=AppGuid" -sr LocalMachine -ss My -sky signature -pe -len 2048 Output I got: Usage:… >>> More

  • Missing makecert.exe

    as seen on Stack Overflow - Search for 'Stack Overflow'
    For some reason I am missing makecert.exe on my system. I searched the whole hard drive and it's not there. In particular, it's not in C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin where I believe it's supposed to be. I haven't found any articles on this topic on the Internet. Any ideas what's… >>> More

  • Makecert problem under Windows 7

    as seen on Stack Overflow - Search for 'Stack Overflow'
    I'm creating a certificate to use with an SslStream, and I've been doing it this way under XP: makecert -r -pe -n "CN=aName" -ss my -sr localmachine -sky exchange -sp "Microsoft RSA SChannel Cryptographic Provider" -sy 12 server.cer If I understand this correctly, this creates a certificate… >>> More

  • Using makecert for Development SSL

    as seen on Stack Overflow - Search for 'Stack Overflow'
    Here's my situation: I'm trying to create a SSL certificate that will be installed on all developer's machine's, along with two internal servers (everything is non-production). What do I need to do to create a certificate that can be installed in all of these places? Right now I've got something… >>> More