Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6918475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:51:50+00:00 2026-05-27T09:51:50+00:00

I wrote a windows service (and it runs fine). Now i have a separate

  • 0

I wrote a windows service (and it runs fine). Now i have a separate app where I want to start this service from, but it seems this is not possible without administrator rights.

How would a proper solution look like that a user can start/stop the service (e.g. from a tray or application)

IMHO its bad that the application must always be started with administrator rights.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T09:51:50+00:00Added an answer on May 27, 2026 at 9:51 am

    You just need to change the permissions on the service object, preferably at the same time you install it.

    wchar_t sddl[] = L"D:"
      L"(A;;CCLCSWRPWPDTLOCRRC;;;SY)"           // default permissions for local system
      L"(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)"   // default permissions for administrators
      L"(A;;CCLCSWLOCRRC;;;AU)"                 // default permissions for authenticated users
      L"(A;;CCLCSWRPWPDTLOCRRC;;;PU)"           // default permissions for power users
      L"(A;;RP;;;IU)"                           // added permission: start service for interactive users
      ;
    
    PSECURITY_DESCRIPTOR sd;
    
    if (!ConvertStringSecurityDescriptorToSecurityDescriptor(sddl, SDDL_REVISION_1, &sd, NULL))
    {
       fail();
    }
    
    if (!SetServiceObjectSecurity(service, DACL_SECURITY_INFORMATION, sd))
    {
       fail();
    }
    

    I’m assuming here you’ve already opened the service handle. You need WRITE_DAC permission.

    If you also want non-admin users to be able to stop the service, add the WP right, i.e.,

    L"(A;;RPWP;;;IU)"                           
      // added permissions: start service, stop service for interactive users
    

    SDDL codes for service rights can be found in Wayne Martin’s blog entry, Service Control Manager Security for non-admins.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a VB.NET Windows Service that I wrote and it works fine. In
I have a class called FooJob() which runs on a WCF windows service. This
I wrote a VB.NET Windows Service, which works fine. I have only one issue
I'm trying to write a windows service. It installs fine, but fails when I
I have a program I wrote in Windows with this piece of code that
A few years ago I wrote a WCF service, which runs on a Windows
I have a windows service that do something periodically. on user account runs systray
I have designed a windows service in C#, which runs continiously and spawns three
I want to consume a SSRS report within a windows service (wrote in C#).
I have wrote a Windows Service and I have a admin panel which I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.