What are exit codes from the taskkill utility?

后端 未结 1 322
一向
一向 2021-01-17 13:34

In my MSI installer custom-action handler (done with C++) I cannot obtain the SE_DEBUG_NAME privilege to be able to open and terminate a process, thus I have to resort to do

相关标签:
1条回答
  • 2021-01-17 14:15

    Official error code documentation is at:

    http://msdn.microsoft.com/en-us/library/windows/desktop/ms681381(v=vs.85).aspx

    Unfortunately this covers ALL windows error codes, which may well be shared between applications.

    However the two you mentioned above are on there. For example, 128 is listed as 'There are no child processes to wait for.'

    0 讨论(0)
提交回复
热议问题