Is there a way to view the Azure Web role Startup task logs. Do we need to explicitly enable remote desktop to view the logs?.
Invoking a batch file as part of start of our cloud service. Below sample batch file where we are printing information on console
SET LogFileDir=%DiagnosticStore%LogFiles\StartupTask\
echo "Starting .PS1">> "%LogFilePath%" 2>>&1
....
CSDEF config changes
<Startup>
<Task commandLine="Startup\global.cmd" executionContext="elevated" taskType="simple">
</Task>
</Startup>