Hello

I am trying to access the Print Spooler service on a domain from an ASPX web
page using C#. I have created a serviceController component on my form. I
have also created a serviceControllerPermission component with unrestricted
permission.....I know I am not doing this correct, because it's not working.

MSCP = new ServiceControllerPermission(Permission.Unrestricte d);
serviceController1.MachineName = "MyComputerName"
serviceController1.ServiceName = "Spooler";

When I inspect the object, the flags stop and start are true, but the
cancontrol flag is false.

Thank you for your help.