- Newest
- Most votes
- Most comments
I have noted your request. I will raise this with the service team. Will also check if there is a current solution / workaround.
Hi Harry,
I have found a workaround that might help you.
This involves setting up a launch script which will enable audio and narrator during the setting up of a lightsail windows instance. THe launch script enables audio , edits a registery key for the current user to launch narrator on sign on and starts narrator. Here is the script. It is a workaround as currently the browser RDP session doesn't support audio. You will need to use a thick RDP client on your laptop to connect to the instance. Also you will need to add your IP address to instance to be able to connect using RDP. By default you can only connect using the browser RDP. This you will find in the networking section. check Restrict to IP address and add your ip address. (this does require you to stop and start the instance) . once this is done you should be able to log into the instance with Narration up and running.
I will write up a full step by step guide, host this script into a github repo and share the link.
Please find below the launch script. I have tested this on Windows Server 2022.
<script>
net start audiosrv
reg add "HKCU\Software\Microsoft\Windows NT\CurrentVersion\Accessibility" /t REG_SZ /v Configuration /d narrator /f
narrator
</script>
<persist>true</persist>
If you are facing any issue please comment here I will try my best to resolve it.
Relevant content
- asked a year ago
- asked 3 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 months ago
Hi Harry. Please do a +1 if this has helped you. Keen to know if it has worked for you.