19

I need to query a windows service for the path to it's executable via the command prompt. I think the way I would do this is:sc qc myServiceName, but when I do that, I get the following error:

[SC] QueryServiceConfig FAILED 122:

The data area passed to a system call is too small.

[SC] GetServiceConfig needs 1094 bytes

I think this means that the sc command is sending a data structure to some other library that is too small for the data that needs to be returned. Instead of SC nicely retrying with a larger data structure (1094 bytes) it bombs out and gives me this ugly error message. Thanks Micro$oft.

So is there a way to work around this error? I just need the path to the executable, but will parse it out of some other text if needed.

Jared
  • 519
  • 1
  • 4
  • 11

6 Answers6

25

I encountered this problem too when trying to get the details of a service where the path to the executable was very long. This discussion contains a workaround; you can pass a buffer size as an argument to sc qc. That is, if you do:

sc qc <service name> 5000

the "data area passed to a system call is too small" error goes away.


Also see SC QC MSDN page:

sc [<ServerName>] qc [<ServiceName>] [<BufferSize>]

where:

<BufferSize> Specifies the size (in bytes) of the buffer. The default buffer size is 1,024 bytes.

Dan Dar3
  • 103
  • 3
Ken Keenan
  • 353
  • 5
  • 8
15

I found an workable solution:

reg query "HKLM\System\CurrentControlSet\Services\<serviceName>" /v "ImagePath"

Of course this needs some parsing, but it gives me the full path that the services.msc dialog box provides.

Jared
  • 519
  • 1
  • 4
  • 11
11

You can do this in PowerShell with a WMI query like this:

$service = get-wmiobject -query 'select * from win32_service where name="winrm"'; echo $service.pathname

This will give you the full path, including options as they are shown in services.msc. Just replace winrm in my example with whatever service you want to search for.

The above query for winrm should output C:\Windows\System32\svchost.exe -k NetworkService

MDMarra
  • 100,734
  • 32
  • 197
  • 329
  • Unfortunately, I can't depend on powershell since XP doesn't have it by default. I need support for XP, server 2008, and 7, all without installing any additional software. – Jared Nov 23 '11 at 17:48
  • @Jared that's too bad. You're unable to run this from a single machine against a bunch of remote machines? – MDMarra Nov 23 '11 at 18:24
  • No this is actually a bit of script to go in the uninstaller for an application. I figured out a solution that works and added an answer for it though. – Jared Nov 23 '11 at 20:01
8

Try it using the wmic command line utility. Here's an example of a service on my machine called CrashPlanService.

C:\Users\Ben>wmic service CrashPlanService get PathName

PathName
"C:\Program Files\CrashPlan\CrashPlanService.exe"

Basically, wmic service <<YourService>> get PathName.

Ben Pilbrow
  • 12,041
  • 5
  • 36
  • 57
  • 1
    Doesn't quite work. But, on the other hand, this works: "wmic service | find "" – djangofan Nov 22 '11 at 23:57
  • @djangofan what output do you get, and with which service? Maybe you've got a different version of `wmic` (I'm on Windows 7 SP1)? – Ben Pilbrow Nov 23 '11 at 00:34
  • @Ben Pilbrow That didn't work for me either. wmic isn't getting the path name (just returns "PathName" with nothing on the following line). Not sure if this is because there are a lot of parameters embedded in the path making it very long. – Jared Nov 23 '11 at 14:53
  • worked for me but i had to process the result a little: ((wmic service SQLBrowser get PathName) -match "`"")[0].replace("`"", "") – katbyte Nov 23 '12 at 00:09
  • `wmic service` works great. Lists all services with their paths. – Shayan May 18 '19 at 14:45
  • If you need to see `path to Executable` of specific windows service then it works charm. Thanks – Harsh Patel Sep 02 '23 at 04:06
2

Starting from PowerShell 7 :

(Get-Service theServiceName).BinaryPathName
SebMa
  • 359
  • 1
  • 10
1
$binpath = (Get-ItemProperty -Path HKLM:SYSTEM\CurrentControlSet\Services\<serviceName>).ImagePath
$binpath = ($binpath).Substring(1,($binpath).IndexOf("<serviceBinFileName>")-1)
Gerald Schneider
  • 23,274
  • 8
  • 57
  • 89
Zosoabi
  • 11
  • 1