Kaydet (Commit) a1b78c3b authored tarafından Vladimir Glazunov's avatar Vladimir Glazunov

CWS-TOOLING: integrate CWS installer11_DEV300

...@@ -257,6 +257,9 @@ extern "C" UINT __stdcall IsOfficeRunning( MSIHANDLE handle ) ...@@ -257,6 +257,9 @@ extern "C" UINT __stdcall IsOfficeRunning( MSIHANDLE handle )
// When there is no program folder, there could be no running office // When there is no program folder, there could be no running office
if ( dwError == ERROR_FILE_NOT_FOUND ) if ( dwError == ERROR_FILE_NOT_FOUND )
return ERROR_SUCCESS; return ERROR_SUCCESS;
if ( dwError == ERROR_PATH_NOT_FOUND )
return ERROR_SUCCESS;
// The destination folder should never exist, don't know what to do here // The destination folder should never exist, don't know what to do here
if ( dwError == ERROR_ALREADY_EXISTS ) if ( dwError == ERROR_ALREADY_EXISTS )
return ERROR_SUCCESS; return ERROR_SUCCESS;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment