Background
I want to run my ASP.NET site under full IIS on my local machine so I can be debugging more quickly after a rebuild. My team's policy is that developers don't have admin privileges on their machines. Even without admin rights, it should be possible to debug under IIS by configuring the IIS worker thread to run under my own account, but it's not working like that for me.
The worker process is running under my own account:
And when I am running Visual Studio as admin, the thread is shown as running under my own account:
But when running Studio as a non-admin user, the process list doesn't include the IIS worker thread unless I tick "all users", and then the User Name is blank:
Question
Is there anything I can do to get the thread to show up and be attachable when running Visual Studio under my own user?