1 Answer
- Newest
- Most votes
- Most comments
1
If you have changed the Administrator password since the first launch then the PEM files and stored administrator password will no longer work. If the instance is registered with SSM, you can reset the Password and re-login through fleet manager or use this script via the PS Console
$Password = Read-Host -AsSecureString
$UserAccount = Get-LocalUser -Name "Administrator"
$UserAccount | Set-LocalUser -Password $Password
Relevant content
asked 3 years ago

Thanks a lot! It worked!!!