📎 AI Summary:
The original poster, William Johnston, reports being unable to stop a Windows service related to antivirus despite having administrator privileges, encountering "Access is denied" errors and other permission issues. Respondents suggest using the services.msc console and mention that security settings, especially in antivirus suites, might restrict stopping services. They provide detailed instructions on using command-line tools like `sc query` and `sc sdshow` to troubleshoot service permissions, implying that deeper permission adjustments may be necessary. Overall, the thread reflects troubleshooting efforts for permission-related issues when managing Windows services.

William Johnston

New Member
Joined
Oct 20, 2016
Messages
1
Thread Author #1
Hello,

Even though I have administrator privledges for my account, I cannot stop a Windows Service (an anti-virus service) getting an "Access is denied" error.

I seem to be having other permission errors for different programs.

Again, the account is adminstrator.

Any suggestions?

williamj
 

Solution
If you are going through the services.msc console and it is not working, do the following.
  • Open a command prompt and type sc query this will list all services
  • Locate the target service by the "Display Name" field and make note of the "Service Name"
  • Then type sc sdshow <servicename>
  • Copy and paste the funny looking string it prints.
  • Code:
    (Ex: D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)_

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,995
Are you going through the services.msc console to stop it? Also with AV suites they may prevent stopping the service.
 

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,995
If you are going through the services.msc console and it is not working, do the following.
  • Open a command prompt and type sc query this will list all services
  • Locate the target service by the "Display Name" field and make note of the "Service Name"
  • Then type sc sdshow <servicename>
  • Copy and paste the funny looking string it prints.
  • Code:
    (Ex: D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;IU)(A;;CCLCSWLOCRRC;;;SU)_
 

Solution