The shellexecuteex tag has no wiki summary.
6
votes
3answers
264 views
Start external app with ShellExecuteEx and wait until it become initialized
I have an application which needs to run several other applications in chain. I am running them via ShellExecuteEx. The order of running each of the apps is very important cause they are dependant on ...
4
votes
1answer
282 views
ShellExecuteEx error on a write protected USB drive?
I'm trying to test an application on a write protected USB drive, I want to use the ShellExecuteEx API (I need to use this API call because I need the lpVerb := "runas") call to execute a second ...
3
votes
1answer
277 views
Wait till a file editing ends
I have next task. It is necessary to wait of end of editing Microsoft Office files.I use next conventional approach: file is editing While file is busy:
function FileIsBusy(AFileName: string): ...
2
votes
2answers
445 views
WinApi ShellExecuteEx - using verb 'copy' on a file list
is it possible to use ShellExecuteEx to copy or cut a group of files in a given directory ? The Windows function works fine on a single file but I can't find anywhere any tips over the subject (with a ...
1
vote
2answers
117 views
How to detect if launcing through ShellExceuteEx is cancelledBy UAC
I launch exe through ShellExecuteEx:
tstring sPath = _T("C:\\Test\\MyApp.exe");
tstring sArgs = _T("/S");
SHELLEXECUTEINFO lpExecInfo = {0,};
lpExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
...
1
vote
2answers
277 views
How to create a process that is not a child of it's creating process?
I have two processes, A and B. At some point A creates B. After B is created, if A's process tree is killed, I want B to still be around.
I am using CreateProcess() to create B, and I can't seem to ...
0
votes
2answers
315 views
ShellExecuteEx returning 42 in hInstApp when expecting a 31 (No file association)
When using ShellExecuteEx in Delphi 7 to open a file using a verb, I always seem to be getting 42 back as a result in hInstApp, even though I'm expecting to get a failure and a 31 result, as there is ...
0
votes
1answer
566 views
How to convert CreateProcess to ShellExecuteEx?
I use MS detour library to hook CreateProcess and it works fine on Win7. Then I want to replace the detoured CreateProcess with ShellExecuteEx so that I can use 'runas' to silently run the program ...
0
votes
2answers
100 views
What are the default access rights for a process started with ShellExecuteEx?
I need to perform certain operations on a process started with ShellExecuteEx - like waiting for it, duplicating handles, querying and setting information etc. Now I am wondering if I can do all these ...
0
votes
1answer
204 views
What does “ShellExecuteEx failed; code 18” mean (on vista)
A buddy of mine has been getting this error mesage when trying to run uninstall programs andor new program apps, windows just shows "ShellExecuteEx failed; code 18" and refuses to run the program.
0
votes
2answers
501 views
ShellExecuteEx with SEE_MASK_FLAG_NO_UI displays error when starting .NET app on system without .NET
The ShellExecuteEx Win32 function call has a flag SEE_MASK_FLAG_NO_UI in its SHELLEXECUTEINFO structure, which should suppress any error dialogs which could be displayed because of an error when ...