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

  • Home
  • SEARCH
  • 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 7559337
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T12:36:37+00:00 2026-05-30T12:36:37+00:00

I am trying to set security of PROCESS_TERMINATE. This is the code: CreateProcess(C:\\ADP\\SQLBase\\dbntsrv.exe, NULL,

  • 0

I am trying to set security of PROCESS_TERMINATE. This is the code:

   CreateProcess("C:\\ADP\\SQLBase\\dbntsrv.exe", NULL, NULL, NULL, FALSE, CREATE_NO_WINDOW, NULL, "C:\\ADP\\SQLBase", &si, &pi);       

if(SetSecurityInfo(pi.hProcess, SE_KERNEL_OBJECT, PROCESS_TERMINATE, NULL, NULL, NULL, NULL) == ERROR_SUCCESS)
{
    MessageBox(NULL, "process_terminate granted", NULL, MB_OK);
}
else
{
    MessageBox(NULL, "process_terminate not granted", NULL, MB_OK);
}



                    //--------------------- Permission to query for info to use GetExitCode -------------------------
if(SetSecurityInfo(pi.hProcess, SE_KERNEL_OBJECT, PROCESS_QUERY_INFORMATION, NULL, NULL, NULL, NULL) == ERROR_SUCCESS)
{
    MessageBox(NULL, "process_query_information granted", NULL, MB_OK);
}
else
{
    MessageBox(NULL, "process_query_information not granted", NULL, MB_OK);
}


LPDWORD lpExitCode;
GetExitCodeProcess(pi.hProcess, lpExitCode);

Here SetSecurityInfo for for PROCESS_TERMINATE fails and I get an Unhandled Exception..(KERNEL32.dll):Access Violation for

GetExitCodeProcess(pi.hProcess, lpExitCode);

Why does this happen? Thank You

  • 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-30T12:36:38+00:00Added an answer on May 30, 2026 at 12:36 pm

    The access violation is because of this code:

    LPDWORD lpExitCode;
    GetExitCodeProcess(pi.hProcess, lpExitCode);
    

    Here you declare that lpExitCode is a pointer, but you don’t make it point at anything. When GetExitCodeProcess tries to write to *lpExitCode it results in an access violation.

    The correct approach is like this:

    DWORD ExitCode;
    GetExitCodeProcess(pi.hProcess, &ExitCode);
    

    I also don’t believe that you need to call SetSecurityInfo at all. The process handle that CreateProcess returns should have sufficient rights.

    You will need to wait for the spawned process to terminate before you can expect to get an exit code. This is because GetExitCodeProcess is asynchronous. You can wait like this:

    WaitForSingleObject(pi.hProcess);
    //now you can call GetExitCodeProcess and expect an answer.
    

    And do remember to check all your API calls for errors.

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

Sidebar

Related Questions

I am trying to set security permissions on an object. This is the code:
I'm trying to set up role-based Security with permissions. I'm trying to do this
Following the spring-security documentation: http://static.springsource.org/spring-security/site/docs/3.0.x/reference/ldap.html I am trying to set up ldap authentication (very
I'm trying to set up security for my application for users. I am not
I am trying to set up message level security for a WCF application that
I am trying to implement some custom security code into SSRS 2008 (not R2)
I am trying to set transport level security on a webHttp binding WCF service
I'm trying to set up the LDAP Spring Security. And I've stucked with some
Im trying set the single table inheritance model type in a form. So i
I am trying set up databinding as described in the title. The problem 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.