I am having a problem configuring the remote desktop connection in the new Windows Azure portal:
- Created a new worker role.
- Configured the remote desktop connection with an expiration time in the past.
- Exported and uploaded the generated certificate.
- Published the worker role.
- Configure the remote desktop in the new Windows Azure Portal (manage.windowsazure.com). This last step gives an error: "Remote Desktop cannot be enabled. The role definition does not contain the Remote Desktop module."
This is strange, because when I select the instance and try to connect, the rdp-file is downloaded and I can connect, ofcourse Windows won't let me, because the useraccount is disabled. When I go to the previous portal, I can configure the connection.
Hopefully somebody can tell me what I am doing wrong.
CSDEF
file - to get RDP to work in the new portal, you must add<Import moduleName="RemoteAccess" />
and likely<Import moduleName="RemoteForwarder" />
to yourCSDEF
imports. – SliverNinja - MSFT