Debugging a website on local IIS without administrative privileges

I have an administrator account on my machine, but due to security reasons, I do not want to run visual studio as an administrator. I have an ASP.NET website, Windows 10, IIS8. Is there a way to debug a website without a pool of pool with my credentials or run visual studio as an administrator or any other method with insufficient rights? I want to configure my windows to allow me to debug my application and not use brute force, such as "run as admin".

For winXP this article exists this

+5
source share
1 answer

https://msdn.microsoft.com/en-us/library/kd3se23d.aspx

if you change the ASP.NET worker process to run under your own user account, you do not have to be an Administrator on the server that is running IIS.

+12

Source: https://habr.com/ru/post/1691463/


All Articles