I am developing console application in .Net and I want to change a behavior a little based on information that application was started from cmd.exe or from explorer.exe. Is it possible?
|
|
|
|
|
|
|
|
||
|
|
|
One issue with the ToolHelp/ManagementObject approaches is that the parent process could already have exited. The GetStartupInfo Win32 function (use PInvoke if there's no .NET equivalent) fills in a structure that includes the window title. For a Win32 console application "app.exe", this title string is "app" when started from cmd and "c:\full\path\to\app.exe" when started from explorer (or the VS debugger). Of course this is a hack (subject to change in other versions, etc.).
|
||
|
|
|
|
The CreateToolhelp32Snapshot Function has a Process32First method that will allow you to read a PROCESSENTRY32 Structure. The structure has a property that will get you the information you want:
This article will help you get started using the ToolHelpSnapshot function: |
||
|
|
