|
2010-01-05 09:18 AEST by Arthur Barrett -
Could this be because it's launched in ASCII mode, or because it's a little old?
RunTimeInstaller calls LaunchCommand which uses the ASCII version of CreateProcess with
showminimized and CREATE_NO_WINDOW:
PROCESS_INFORMATION processInfo;
STARTUPINFOA startupInfo;
SecureZeroMemory(&startupInfo, sizeof(startupInfo));
startupInfo.cb = sizeof(startupInfo);
startupInfo.dwFlags = STARTF_USESHOWWINDOW;
startupInfo.wShowWindow = SW_SHOWMINIMIZED;
res = CreateProcessA(0,
command,
0, 0,
FALSE,
CREATE_NO_WINDOW,
0, 0, &startupInfo, &processInfo);
I'd like to know if the latest CVSNT 2.5.05 Build 3649 (RC1) would behave better for this person if it's
launched 'native' ie: CreateProcess() with no parameters to 'hide' the windows.
|
|
2010-01-28 09:16 AEST by Glen Starrett - After the progress bar sat at 100% for an extended time (20 min+), it ran
through the installing files, .. etc. items and showed progress moving.
Recommend adding message to progress indicator on what operation is and that it
may take 20 min or more (We think it was uninstalling the old version).
At end there was an error:
Could not find application loader, check your installation.
Missing Smartloader.dll.
|