Debug Console instead of system32\cmd.exe

  • Thread starter Thread starter Bumbrlik
  • Start date Start date
B

Bumbrlik

Guest
When I compiled and ran a desktop application - Release configuration, Console (/SUBSYSTEM:CONSOLE), an output window labeled "c:\windows\system32\cmd.exe " opened and the code executed in it.

After I updated VC++ 2017 v. 15.7.x to 15.8.8, the window changed to "Microsoft Visual Studio Debug Console". Still running it in the release configuration. The issue is that only one instance of this windows stays open so I cannot compare various runs. I want to switch back to the "cmd.exe" window, what do I need to do? Thank you.

Linker Command line:

/OUT:"C:\Users\xx\Documents\C++\x64\Release\SplitTrades.exe" /MANIFEST /LTCG:incremental /NXCOMPAT /PDB:"C:\Users\xx\Documents\C++\x64\Release\SplitTrades.pdb" /DYNAMICBASE "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" /DEBUG:FULL /MACHINE:X64 /OPT:REF /INCREMENTAL:NO /PGD:"C:\Users\xx\Documents\C++\x64\Release\SplitTrades.pgd" /SUBSYSTEM:CONSOLE /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /ManifestFile:"x64\Release\SplitTrades.exe.intermediate.manifest" /OPT:ICF /ERRORREPORT:PROMPT /NOLOGO /TLBID:1

Continue reading...
 
Back
Top