Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Opens the specified executable file to be debugged.
Syntax
devenv /DebugExe ExecutableFile
Arguments
ExecutableFile
Required. The path and file name of an
.exefile. If the.exefile isn't found or doesn't exist, no warning or error is displayed, and Visual Studio starts normally.
Remarks
Any strings following the ExecutableFile parameter are passed to that file as arguments.
Visual Studio will parse any strings following the ExecutableFile parameter for matches in Devenv command-line switches. You can prevent Visual Studio from parsing a command-line switch by surrounding the switch with double quotes.
Example
The following example opens the file MyApplication.exe for debugging.
devenv /debugexe MyApplication.exe