You mark a permission error in IIS

-1

I was working normally and turned off the computer installed the typical updates and now when I want to open the solution marks me

El proyecto de aplicación web SiteServer está configurado para usar IIS.
No se puede obtener acceso a la metabase de IIS. 
No tiene privilegios suficientes para obtener acceso a los sitios web de IIS en su equipo.

This in a visual project with the framework 4.0

I do not know what the source of the error is.

    
asked by Alan Medrano 10.10.2017 в 00:16
source

1 answer

1

I have encountered the same problem and the solution has been this:

  
  • Open the project .csproj file and change the following line:    <UseIIS>True</UseIIS> to <UseIIS>False</UseIIS>
  •   
  • Save the file.
  •   
  • Reload your project.
  •   

Solution found here: link

I know the question is old, but in case someone comes here with a search like mine.

    
answered by 24.08.2018 в 10:45