Is it possible to change the location for the attached local storages in Azure Cloud Service Roles? -


per default setup, attached local storage end in directory at: c:\resources\directory\..

an example c:\resources\directory\002823b0b8854e3ca2768025d08464e9.composite.windowsazure.webrole.boot.c1

are there options shorten other changing rolename (the project name in visual studio) , storage folder name (setting in .csdef).

no. there no way change location of local resources.

however (undocumented) can (almost) freely write c: drive. need run elevated start-up task create new folder under c:\ (say c:\my_funky_folder) , set acl full control everyone.

the latter required if not run role code elevated, suggested security best practice. default code run under low privileged account, has no permissions on c: drive, other defined local resource folders.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -