30
Error 5: acceso denegado al iniciar el servicio de Windows
Recibo este error cuando intento iniciar un servicio de Windows que he creado en C #: Mi código hasta ahora: private ServiceHost host = null; public RightAccessHost() { InitializeComponent(); } protected override void OnStart(string[] args) { host = new ServiceHost(typeof(RightAccessWcf)); host.Open(); } protected override void OnStop() { if (host != …