Ignore:
Timestamp:
1/29/2010 12:40:49 AM (2 years ago)
Author:
lowjoel
Message:

Backported changes from trunk.

r1718: Author: lowjoel: When we have problems starting Eraser from the shell extension check the return code for ERROR_ELEVATION_REQUIRED; if we get that, then we should re-run the operation as an administrator.
r1717: Author: lowjoel: If the directory we are deleting does not exist, we should just return -- there's nothing to be deleted.
r1716: Author: lowjoel: Catch IOExceptions when we try to connect to other running instances and show a error message when one occurs.
r1715: Author: lowjoel: Set that files are not meant to be indexed when it is meant for deletion before we even set the file times.
r1714: Author: lowjoel: Fixed race condition potentially created by initialising the remote executor server thread immediately upon construction since Run is not yet called.
r1713: Author: lowjoel: Since we only force the creation of the SchedulerPanel?'s handle in the constructor, InvokeRequired? should be called on the panel itself, and not on subcontrols as they are still delay-constructed. Fixes crash when Eraser is started quietly and a task is created remotely.
r1712: Author: lowjoel: ThreadAbortExceptions? should not trigger BlackBox? report creation.

Location:
branches/eraser6/6.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eraser6/6.0

  • branches/eraser6/6.0/ShellExt/CtxMenu.cpp

    r1677 r1719  
    954954                NULL, NULL, &startupInfo, &processInfo)) 
    955955            { 
     956                //Why did we fail? Is it because we have too many files 
    956957                if (GetLastError() == ERROR_FILENAME_EXCED_RANGE) 
    957958                    throw FormatString(LoadString(IDS_ERROR_TOO_MANY_FILES)); 
     959                 
     960                //Or if elevation is required for this operation 
     961                else if (GetLastError() == ERROR_ELEVATION_REQUIRED) 
     962                    return RunEraser(action, parameters, true, parent, show); 
     963 
     964                //Or otherwise? 
    958965                else 
    959966                    throw FormatString(LoadString(IDS_ERROR_MISC), FormatError().c_str()); 
Note: See TracChangeset for help on using the changeset viewer.