Changeset 57753 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Sep 15, 2015 11:15:21 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 102677
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r57656 r57753 868 868 static const char * const s_papszProcNames[] = 869 869 { 870 #ifdef VBOX 870 #ifdef VBOX /* The explorer entry is a fallback in case GA aren't installed. */ 871 871 { "VBoxTray.exe" }, 872 872 #endif … … 913 913 { 914 914 PROFILEINFOW profileInfo; 915 if ( !(fFlags & RTPROC_FLAGS_NO_PROFILE))915 if (fFlags & RTPROC_FLAGS_PROFILE) 916 916 { 917 917 RT_ZERO(profileInfo); 918 profileInfo.dwSize = sizeof(profileInfo);918 profileInfo.dwSize = sizeof(profileInfo); 919 919 profileInfo.lpUserName = pwszUser; 920 profileInfo.dwFlags = PI_NOUI; /* Prevents the display of profile error messages. */920 profileInfo.dwFlags = PI_NOUI; /* Prevents the display of profile error messages. */ 921 921 922 922 if (!pfnLoadUserProfileW(*phToken, &profileInfo)) … … 956 956 } 957 957 958 if ( !(fFlags & RTPROC_FLAGS_NO_PROFILE))958 if (fFlags & RTPROC_FLAGS_PROFILE) 959 959 { 960 960 fRc = pfnUnloadUserProfile(*phToken, profileInfo.hProfile);
Note:
See TracChangeset
for help on using the changeset viewer.