I have a Windows EC2 launched from an AMI for which I no longer have the password. I tried running:
aws ec2 get-password-data --instance-id i-instanceId
and also:
aws ec2 get-password-data --instance-id i-instanceId --priv-launch-key C:\key.pem
But the output is this:
{
"InstanceId": "i-instanceId",
"Timestamp": "2017-11-03T18:05:35.000Z",
"PasswordData": ""
}
Trying to get the password by doing this well after 1h of launching the instance:
Returns this:
Is there any way of recovering the password?

