Skip to content

Instantly share code, notes, and snippets.

@Romiko
Created February 8, 2012 23:01
Embed
What would you like to do?
Windows Azure Startup Tasks
<WebRole name="Web" vmsize="Medium">
<Runtime executionContext="elevated" />
<Startup>
<Task commandLine="Startup.cmd" executionContext="elevated" taskType="background">
<Environment>
<Variable name="EMULATED">
<RoleInstanceValue xpath="/RoleEnvironment/Deployment/@emulated" />
</Variable>
</Environment>
</Task>
</Startup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment