CreateProcessAsUser返回错误代码2

时间:2012-07-03 09:56:09

标签: c++ windows visual-studio winapi

我的应用中有两个进程。 1.“myService.exe”这是一个Windows服务。 2.“myApp.exe”,它位于与“myService.exe”相同的目录中。

此过程由“myService.exe”使用CreateProcessAsUser api生成。我们必须使用这个api而不是直接启动进程(使用系统调用),因为我们需要访问当前用户的vpn配置文件。

当我对“myApp.exe”的路径进行硬编码时,它工作正常并且创建了进程但是通过获取“myService.exe”的当前目录获得的相同路径不是创建进程并返回错误代码2(文件没找到。)

我正在使用Visual Studio 2008.该项目是以ASCII模式编译的,而不是下面代码中的Unicode。我尝试使用Unicode api(最后没有'A')。它也没用。

问题不在于获取当前路径。验证该路径不是System32文件夹。

    HANDLE hToken;
LPSTR exePath = GetCommandLineA();
string exePathStr = exePath;
char fileExeChar[256];
strcpy(fileExeChar,exePathStr.c_str());
string serverExe = "myService.exe";
for(unsigned int i=0;i<exePathStr.length()-(serverExe.length() + 1);i++)
{
    fileLocation += fileExeChar[i];// removing the service.exe from the path

}
LPSTR fileLocationLp = const_cast<LPSTR>(fileLocation.c_str());

LPCSTR progName = (LPCSTR)"myapp.exe";

char errStr[100];
DWORD dwCreationFlag = NORMAL_PRIORITY_CLASS | CREATE_NEW_CONSOLE;
STARTUPINFO si;
PROCESS_INFORMATION pi;
int k = WTSQueryUserToken (WTSGetActiveConsoleSessionId (), &hToken);
ZeroMemory( &si, sizeof( STARTUPINFO ) );
si.cb = sizeof( STARTUPINFO );
si.lpDesktop = (LPSTR)"winsta0\\default";
    ZeroMemory( &pi,sizeof(pi));
if ( !CreateProcessAsUserA(
                      hToken,
                      progName,
                      fileLocationLp,  
                      NULL,
                      NULL,
                      FALSE,
                      dwCreationFlag,
                      NULL,
                      NULL,
                      &si,
                      &pi
          ) )
{
    sprintf(errStr, "CreateProcessAsUser Failed %d\n", GetLastError());
} 
else
{
    CloseHandle(pi.hProcess);
    CloseHandle(pi.hThread);
    CloseHandle(hToken);
}

1 个答案:

答案 0 :(得分:5)

默认情况下,Windows服务在System32目录中执行。这就是为什么在未指定其绝对路径时找不到其他可执行文件的原因。您可以通过从Windows服务获取GetCurrentDirectory()来确认这一点。

要解决此问题(假设Windows服务和其他可执行文件位于同一目录中):

  • 使用GetModuleFileName()获取Windows服务可执行文件的完整路径,并将NULL作为第一个参数传递。
  • 从完整路径中提取目录
  • 然后构建其他可执行文件的路径并将其传递给CreateProcessAsUser()或使用SetCurrentDirectory()
  • 更改Windows服务的目录