Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting following error when try to run the above command '"Program Files\java\jdk1.5.0_22\bin>keytool -genkey -keystore myStore -keyalgRSA"' is not recognised as an internal or external command,operable program or batch file.

share|improve this question
2  
The effort you put into writing your question is reflected in the effort we spend trying to answer it. – nfechner Jul 21 '11 at 10:44
Check your path??? Also, the quote before Program Files seems to be missing its counterpart. – nfechner Jul 21 '11 at 10:46

closed as too localized by Thomas, andyb, Vineet Reynolds, McDowell, C. A. McCann Jul 23 '11 at 6:44

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 1 down vote accepted
  1. Go to command line (cmd) in windows (that's pretty obvious).
  2. Type this C:\Program Files\java\jdk1.5.0_22\bin>keytool -genkey -keystore myStore -keyalg RSA (see, I removed the quote)`.

Or enclose everything with quotes (and remove the >):

"C:\Program Files\java\jdk1.5.0_22\bin>keytool -genkey -keystore myStore -keyalg RSA”

Alternatively, use Vineet Reynolds' advice. :-)

share|improve this answer

This is quite obvious from the command you are attempting to run:

"Program Files\java\jdk1.5.0_22\bin>keytool -genkey -keystore myStore -keyalgRSA"

which is hardly a valid executable. Use quotes only to reference the executable:

"C:\Program Files\java\jdk1.5.0_22\bin\keytool.exe" -genkey -keystore myStore -keyalgRSA
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.