Syntax error for makecert.exe tool

Posted by user340817 on Stack Overflow See other posts from Stack Overflow or by user340817
Published on 2010-05-14T00:59:55Z Indexed on 2010/05/14 1:04 UTC
Read the original article Hit count: 299

Filed under:
|

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: MakeCert [ basic|extended options] [outputCertificateFile]
Basic Options 
-sk
-ss
-sr
.
.
.

Did I missed anything during this?

© Stack Overflow or respective owner

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

Related posts about certificate