How can I fix the following error?
error: cs0016 could not write to output file...c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\sitename\6c57f9d2\bb09b49d\App_global.asax.5odzsyz5.dll' access is denied
How can I fix the following error?
error: cs0016 could not write to output file...c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\sitename\6c57f9d2\bb09b49d\App_global.asax.5odzsyz5.dll' access is denied
I was struggling with this problem for a while. Found some solutions on the web that involved setting permissions on the "Temporary ASP.NET Files" directory in the error message. But even opening it up to "Everyone" didn't work.
Then eventually the following steps fixed it:
There may also be some other necessary steps, which I did while troubleshooting, but this is the key step. For some reason the App Pool Identity (such as IIS_APPPOOL\SiteName) isn't granted access when "Everyone" is. I'm sure someone else can shed some light on why this is the case... Hopefully this helps others resolve this frustrating issue.
After spending hours on this issue myself below is the solution that worked for me on Windows 7 running IIS 7.5:
The application pool identity associated with the site was not a member of the IIS_IUSRS group. To add the app pool identity to the group I used the following steps:
Repeat steps 7 through 8 for each app pool identity you wish to add. Click OK.
Now the app pool identity is a member of the IIS_IUSRS group which should already have access to the Temporary ASP.NET Files directory. After all that I was still receiving the error and I found (thanks to process monitor) it was because the app pool identity could not write to the windows temp directory. To resolve this I added the IIS_IUSRS group to the windows temp directory with read/write permissions.
I had the same problem. Found an easy way to resolve: Set "Load user profile" to true in app pool's advanced settings.
I've fixed this issue setting full control for 'NETWORK SERVICE' to the system temp:
C:\Windows\temp
The error message reported by the web server is a bit misleading. Hope this helps.
Go C:\Windows\Temp Right Click on Temp Folder > go To Security Click on Edit Add New User [IIS_IUSRS] AND GIVE IT FULL PERMISSION. Then Press Ok,
I have all permissions about writing and reading but I'm starting to get that error.
I can suggest "restart machine" At least, it works for me