I've currently connected two monitors via a dock to my notebook. When I'm running my console application, the console window always pops up on the first monitor. How can I change that it's automatically opened on another monitor, e.g. on monitor 3? Maybe there is a property I need to modify?
It's very annoying to always drag the console window onto the monitor on which my IDE is opened.
HKCU\Console
. If the console is created from a shortcut, then the console properties are saved to the shortcut. Otherwise its properties are saved in a subkey ofHKCU\Console
. They subkey name is derived from the initial window title, which defaults to the executable's path unless theCreateProcess
STARTUPINFO
sets a window title. CMD'sstart
command can set an initial title. Watch out when using an empty title string because modifying the properties will update the default properties. – Phototube