Visual Studio 2015 output window is missing

There is no output window that shows all build messages in Visual Studio. I could not return it using the browse menu. I tried safe mode and diagnostic mode and restarted everything.

How can I get the window back?

+8
visual-studio-2015
source share
7 answers

To quote MSDN :

The Output window does not appear on the View menu in versions of Visual Studio Express. To raise it, use the CTRL + ALT + O hotkey.

+9
source share

Run the following:

devenv.exe /ResetSettings 
+4
source share

I had the same problem, but it turned out that if you open a visual studio without a solution, and then press ctrl-alt-o a couple of times, you will get the output window back! Then you can open your original solution and sort it.

Definitely a bug in visual studio 2015.

+3
source share

I had this problem and tried all your solutions unsuccessfully. Then, finally, I just tried to close every window I could, and found that the output window was hidden behind another docked window. There were no tabs or anything else. Sounds like a bug with Visual Studio (or at least a terrible interface).

+1
source share

It was enough for me to close Visual Studio and open it again.

+1
source share

Go to the browse menu> Select Exit

0
source share

This seems to be a bug in VC ++ 15, as well as in VC ++ 17. There are several ways to reproduce this error. To return a missing window, go to Window โ†’ Reset Window layout, all your disappeared windows will return again.

0
source share

All Articles