Changeset 1818
- Timestamp:
- 2/12/2010 1:19:55 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/eraser6/ShellExt/CtxMenu.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/ShellExt/CtxMenu.cpp
r1787 r1818 498 498 { 499 499 case ACTION_ERASE_ON_RESTART: 500 commandLine += L" -s=restart ";500 commandLine += L"/schedule=restart "; 501 501 502 502 case ACTION_ERASE: … … 509 509 if (InvokeReason == INVOKEREASON_RECYCLEBIN) 510 510 { 511 commandLine += L" -r";511 commandLine += L"/recyclebin"; 512 512 } 513 513 else … … 529 529 //Add the correct command line for the file type. 530 530 if (attributes & FILE_ATTRIBUTE_DIRECTORY) 531 commandLine += L"\" -d=" + escapedItem + L"\" ";531 commandLine += L"\"/dir=" + escapedItem + L"\" "; 532 532 else 533 commandLine += L"\" -f=" + escapedItem + L"\" ";533 commandLine += L"\"/file=" + escapedItem + L"\" "; 534 534 } 535 535 } … … 551 551 { 552 552 std::wstring escapedItem(EscapeString(*i)); 553 commandLine += L"\" -u=" + escapedItem + L",clusterTips\" ";553 commandLine += L"\"/unused=" + escapedItem + L",clusterTips\" "; 554 554 } 555 555 … … 856 856 { 857 857 std::wostringstream parametersStrm; 858 parametersStrm << "\"" << action << L"\" -q" << parameters;858 parametersStrm << "\"" << action << L"\" /quiet " << parameters; 859 859 finalParameters = parametersStrm.str(); 860 860 }
Note: See TracChangeset
for help on using the changeset viewer.
