Symbol environ

Comment

Author: Admin | 2025-04-28

Target. -pd(User mode only) Causes the target application not to be terminated at the end of the debugging session. See Ending a Debugging Session in WinDbg (Classic) for details. -pe(User mode only) Indicates that the target application is already being debugged. See Re-attaching to the Target Application for details. -pn NameSpecifies the name of the process to be debugged. (This name must be unique.) This is used to debug a process that is already running. -pr(User mode only) Causes the debugger to start the target process running when it attaches to it. This can be useful if the application is already suspended and you wish it to resume execution. -psn ServiceNameSpecifies the name of a service contained in the process to be debugged. This is used to debug a process that is already running. -pt SecondsSpecifies the break timeout, in seconds. The default is 30. See Controlling the Target for details. -pv(User mode only) Specifies that the debugger should attach to the target process noninvasively. For details, see Noninvasive Debugging (User Mode). -QSuppresses the "Save Workspace?" dialog box. Workspaces are not automatically saved. See Using Workspaces - WinDbg (Classic) for details. -QSSuppresses the "Reload Source?" dialog box. Source files are not automatically reloaded. -QSYSuppresses the "Reload Source?" dialog box and automatically reloads source files. -QYSuppresses the "Save Workspace?" dialog box and automatically saves workspaces. See Using Workspaces - WinDbg (Classic) for details. -robpThis allows CDB to set a breakpoint on a read-only memory page. (The default is for such an operation to fail.) -sdceCauses the debugger to display File access error messages during symbol load. For details and for other methods of controlling this, see SYMOPT_FAIL_CRITICAL_ERRORS. -secureActivates Secure Mode. -sesCauses the debugger to perform a strict evaluation of all symbol files and ignore any questionable symbols. For details and for other methods of controlling this, see SYMOPT_EXACT_SYMBOLS. -sflags 0x NumberSets all the symbol handler options at once. Number should be a hexadecimal number prefixed with 0x -- a decimal without the 0x is permitted, but the symbol options are binary flags and therefore hexadecimal is recommended. This option should be used with care, since it will override all the symbol handler defaults. For details, see Setting Symbol Options. -sicvCauses the symbol handler to ignore the CV record. For details and for other methods of controlling this, see SYMOPT_IGNORE_CVREC. -sinsCauses the debugger to ignore the symbol path and executable image path environment variables. For details, see SYMOPT_IGNORE_NT_SYMPATH. -sncCauses the debugger to turn off C++ translation. For details and for other methods of controlling this, see SYMOPT_NO_CPP. -snulDisables automatic symbol loading for unqualified names. For details and for other methods of controlling this, see SYMOPT_NO_UNQUALIFIED_LOADS. -srcpath SourcePathSpecifies the source file search path.

Add Comment