Top "Windows-console" questions

Windows character mode applications using the functions provided by the console I/O functions.

Console App Terminating Before async Call Completion

I'm currently writing a C# console app that generates a number of URLs that point to different images on a …

c# asynchronous webclient windows-console
Windows CMD: How to pipe running program output to FINDSTR and write to file

I am trying to filter the output of a running program (ping) and write the results to a file. In …

command-line cmd pipe findstr windows-console
Using STDIN with an AllocConsole()

I have a third-party dll that I load into software that isn't mine, and I'm using AllocConsole() to create the …

c++ winapi windows-console
How do you stop a Windows Batch file from exiting early?

I have a windows batch file that looks similar to: C:\DoStuff.cmd move output.bak C:\newfolder\output.bak …

command-line batch-file windows-console
PowerShell Issue with Get-Content

I have an issue. When I run a command: powershell -command "gc C:\Program Files\Microsoft SQLServer\MSSQL.1\MSSQL\LOG\…

windows powershell file-get-contents remote-access windows-console
How to use the new support for ANSI escape sequences in the Windows 10 console?

The latest Windows 10 updates include support for ANSI escape sequences in conhost.exe. I have been able to confirm that …

python cmd windows-10 windows-console
How to avoid console window with .pyw file containing os.system call?

If I save my code files as .pyw, no console window appears - which is what I want - but …

python windows console windows-console pythonw
How can i add a console output to a windows wpf application C#

i would like to add an additional console window to log realtine info from my wpf application. Any idea?? Bayo …

c# wpf windows-console
CreateProcess does not create additional console windows under Windows 7?

I am trying to run a process using CreateProcess(...) and run it independently in a seperate console window. I can …

winapi createprocess windows-console
Suppress output for windows move command

Here is simple move command that moves all the text files to the folder TextFiles Move *.txt TextFiles I am …

windows command-prompt windows-console