Normal
0
false
false
false
MicrosoftInternetExplorer4
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}
hi
If I’m not mistaken, then by default all application pools
in IIS 7 run under Network Service account.
So I created asp.net application
and gave Network Service account access permission to files in that application
directory. But when I tried to request a page, I received access denied message ( 401.3 )
I then granted access to IIS_IUSRS group, but I still got
access denied message <-- Here I’m assuming network service account is by default
member of this group?
a) Doesn’t IIS 7.0 automatically add the account under which
worker process executes to the IIS_IUSRS group? If yes, then why do I get
access denied message?
b) I gather IIS 7.0 worker process can run under any account
( and also doesn’t have to be a member of IIS_IUSRS group ), as long as we grant
that account access to the resources which it will need to access?
Thank you