[SYSSETUP]

Run an interactive logon for the administrator instead of a network logon.

svn path=/trunk/; revision=61465
This commit is contained in:
Eric Kohl 2013-12-30 22:38:14 +00:00
parent 8c19f17ac0
commit 85f5811079

View file

@ -933,7 +933,7 @@ InstallReactOS(HINSTANCE hInstance)
HANDLE hToken;
BOOL ret;
ret = LogonUserW(L"Administrator", L"", L"", LOGON32_LOGON_NETWORK, LOGON32_PROVIDER_DEFAULT, &hToken);
ret = LogonUserW(L"Administrator", L"", L"", LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, &hToken);
if (!ret)
{
FatalError("LogonUserW() failed!");