is this possible? I launch a process from my main process and when the second process attempts to use DLLs that the first is using, the second program crashes. However, when I click the icon for the second application while the first application is running, it accesses these DLLs just fine. I have used CreateProcess and ShellExecute to launch and both provide the same outcome. If CreateProcessAsUser is the solution, will it work for creating the process as the same user who launched the first process?
A
aolinc38
@aolinc38
Posts
-
create a process from a process and have it not in the same security context -
Launch an Application from Event in HTMLVIEWI need a way to launch an external application (like notepad.exe) from a click within the page displayed in the CHTMLVIEW of an MFC application. I accomplished this with wscript.shell.run in javascript but I get an annoying prompt every time with a yes or no for whether i want to allow the active X content to run. ALL the internet explorer script and active X stuff has been set to "Enable" and i still get this. Is there some better way to launch an application based on a link in the webpage that won't prompt the user each time?