CreateProcessWithLogonW错误1783:存根收到错误数据

时间:2014-12-03 13:26:54

标签: windows winapi createprocess createprocessasuser

我有这个测试代码:

int main(int argc, char *argv[])
{
    setlocale(LC_ALL, "");

    std::string user;
    std::string pass;
    std::cout << "user: ";
    getline(std::cin, user);
    std::cout << "\npass: ";
    getline(std::cin, pass);
    std::cout << std::endl;

    std::wstring suser = std::wstring(user.begin(), user.end());
    LPCWSTR su = suser.c_str();
    std::wstring spass = std::wstring(pass.begin(), pass.end());
    LPCWSTR sp = spass.c_str();

    DWORD     dwSize =  0;
    HANDLE    hToken ;
    LPVOID    lpvEnv =  0;
    PROCESS_INFORMATION pi = {0};
    STARTUPINFO         si = {0};
    WCHAR               szUserProfile[256] = L"";

    si.cb = sizeof(STARTUPINFO);

    if (!LogonUser(su, L".", sp, LOGON32_LOGON_INTERACTIVE,
            LOGON32_PROVIDER_DEFAULT, &hToken))
        qDebug() << "LogonUser";

    if (!CreateEnvironmentBlock(&lpvEnv, hToken, TRUE))
        qDebug() << "CreateEnvironmentBlock";

    dwSize = sizeof(szUserProfile)/sizeof(WCHAR);

    if (!GetUserProfileDirectory(hToken, szUserProfile, &dwSize))
        qDebug() << "GetUserProfileDirectory";

    WCHAR app[] = L"\"C:\\Program Files (x86)\\Adobe\\Reader 11.0\\Reader\\AcroRd32.exe\" \"C:\\Users\\UD\\Desktop\\insect immunity.pdf\"";
    if (!CreateProcessWithLogonW(su, L".", sp,
            LOGON_WITH_PROFILE, NULL, app,
            CREATE_UNICODE_ENVIRONMENT, lpvEnv, szUserProfile,
            &si, &pi)) {
            LPVOID lpMsgBuf;
            LPVOID lpDisplayBuf;
            DWORD dw = GetLastError();

            FormatMessage(
                FORMAT_MESSAGE_ALLOCATE_BUFFER |
                FORMAT_MESSAGE_FROM_SYSTEM |
                FORMAT_MESSAGE_IGNORE_INSERTS,
                NULL,
                dw,
                MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
                (LPTSTR) &lpMsgBuf,
                0, NULL );

            // Display the error message and exit the process

            lpDisplayBuf = (LPVOID)LocalAlloc(LMEM_ZEROINIT,
                (lstrlen((LPCTSTR)lpMsgBuf) + 40) * sizeof(TCHAR));
            StringCchPrintf((LPTSTR)lpDisplayBuf,
                LocalSize(lpDisplayBuf) / sizeof(TCHAR),
                TEXT("failed with error %d: %s"), dw, lpMsgBuf);
            qDebug() << QString::fromWCharArray((LPTSTR)lpDisplayBuf);
    }

    if (!DestroyEnvironmentBlock(lpvEnv))
        qDebug() << "DestroyEnvironmentBlock";

    CloseHandle(hToken);
    CloseHandle(pi.hProcess);
    CloseHandle(pi.hThread);

    system("pause");
    return 0;
}

在我朋友的电脑上,它的工作总是很好。在我的电脑上它有时会起作用!只是有时候,它大多数时候会产生1783错误。我试图在我的电脑上删除一些服务,但这没有帮助。我需要该代码适用于许多其他PC,所以我需要了解为什么会出现此错误以及如何解决它。

2 个答案:

答案 0 :(得分:0)

帮助在CreateProcessWithLogonW /

中将环境设置为NULL

答案 1 :(得分:0)

对我有用的解决方法:

以前,我从来宾帐户调用此方法来启动系统帐户中的进程。我让应用程序弹出一个对话框来接收凭据(如果需要)并在函数CreateProcessWithLogonW中使用它,但它失败并出现错误代码1783.

解决方案:现在,在收到错误代码后,我弹出一个UAC对话框,用户必须在该对话框中输入凭据(而不是处理凭据的应用程序),然后才能运行。

看起来像是权限问题。无论如何,这适用于我的用例,如果有人也是同样的话,可能会有所帮助。