Issue
I am trying to run this command on terminal - keytool -exportcert -list -v \ -alias <your-key-name> -keystore <path-to-production-keystore>
after putting keyname and key path I am getting this error - '-alias' is not recognized as an internal or external command, operable program or batch file.
Solution
Your command should be on one line without the backslash:
keytool -exportcert -list -v -alias <your-key-name> -keystore <path-to-production-keystore>
Answered By - Thomas Kläger