Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
712 views

Preventing MSYS 'bash' from killing processes that trap ^C

I have a console-mode Windows application (ported from Unix) that was originally designed to do a clean exit when it received ^C (Unix SIGINT). A clean exit in this case involves waiting, potentially ...
16
votes
8answers
4k views

Output unicode strings in Windows console app

Hi I was trying to output unicode string to a console with iostreams and failed. I found this: Using unicode font in c++ console app and this snippet works. SetConsoleOutputCP(CP_UTF8); wchar_t ...
10
votes
2answers
207 views

Is it possible to fake windows console api?

I've written a ssh server in c# and I thought it'd be neat to hook up powershell as a shell. I've tried 2 methods to get this to work properly but both are far from perfect. Here's what I've tried: ...
6
votes
2answers
79 views

How to ask for password on the Windows console in a Perl script?

I tried the following code use strict; use warnings; use Term::ReadPassword::Win32 qw(read_password); my $pw = read_password('pw: '); print "pw $pw\n"; my $x = <STDIN>; print "x: $x\n"; It ...
5
votes
6answers
3k views

What to do with “The input line is too long” error message?

I am trying to use os.system() to call another program that takes an input and an output file. The command I use is ~250 characters due to the long folder names. When I try to call the command, I'm ...
4
votes
2answers
120 views

Colorize stdout output to Windows cmd.exe from console C++ app

I would like to write something similar to cout << "this text is not colorized\n"; setForeground(Color::Red); cout << "this text shows as red\n"; setForeground(Color::Blue); cout << ...
4
votes
1answer
658 views

Thread exiting message in .Net MVC console

I get this message: the thread has exited with code 0 sometimes in the output window in debug mode when running a .net mvc c# application. The application still works after these messages, it does ...
4
votes
3answers
1k views

unable to print euro symbol in a “C” program

I am unable to print the euro symbol. The program I am using is below. I have set the character set to codepage 1250 which has 0x80 standing for the euro symbol. Program ======= #include ...
3
votes
2answers
174 views

How do I write special characters (0x80..0x9F) to the Windows console?

I would like to have this code: System.Console.Out.WriteLine ("œil"); display œil instead of oil as it does in my test program. The Console.OutputEncoding is set by default to Western European ...
2
votes
1answer
156 views

Python on windows - conhost.exe CPU usage

I'm running a Python script on Windows, and I've noticed that even though the Python process takes ~8% CPU, the associated conhost.exe process takes ~14%. Why is this so? How come such a large part ...
2
votes
1answer
150 views

Getting terminal size in c for windows?

How to check ymax and xmax in a console window, under Windows, using plain c? There is this piece of code for linux: #include <stdio.h> #include <sys/ioctl.h> int main (void) { ...
2
votes
2answers
395 views

How can I get the mouse position in a console program?

How can I get the mouse click position in C++ in a Windows console program? (A variable that returns the position of the mouse when clicked) I want to draw a menu with simple text commands, so when ...
2
votes
3answers
312 views

set local dos variables from java code

If "java -jar" is run from a command line, is there a way to set local dos variable from java program so that after java is exited, it can still be present in the same session? example (cmd) ...
2
votes
1answer
60 views

Get the latest file from a list of files by name and merge it with another file in a Windows batch file?

I have a list of files in a folder. They are named like this: 2011-04-14_00-00-24 Example list: 2011-04-14_00-00-24 2011-04-13_00-01-12 2011-07-08_00-00-28 2010-03-12_00-00-45 ... Now I want to get ...
1
vote
3answers
76 views

Color console output with C++ in Windows

Is there a way to output colored text to the console? I am using Visual Studio 2010, and only need the code to work in Windows. I have been unsuccessful in finding anything except the windows COLOR ...
1
vote
1answer
91 views

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 The problem i have is that DoStuff.cmd executes a java program that once complete exits the ...
1
vote
1answer
225 views

C++ SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE), c) 2 arguments

How to use SetConsoleCursorPosition (GetStdHandle(STD_OUTPUT_HANDLE), c) function when I have not 1 "c" arguments but 2 for example 2 3? Maybe someone know better function than ...
1
vote
2answers
38 views

Batch and not blocking console

I would like to run program from windows console(cmd.exe) and close console after that. now when i do it the console stays opened as long as the program is running. I would like it to start program, ...
1
vote
2answers
206 views

How do I read special characters (0x80 … 0x9F) from the Windows console in C#?

I've finally solved the issue of writing special characters (0x80...0x9F) to the Windows console with the help of David: The output encoding has to be set to UTF-8. The font used by the console ...
1
vote
2answers
167 views

Use “rmdir” functionality but keep specified directory

I would like the functionality of rmdir /s but I need to keep the specified directory. rmdir /s removes all files and sub directories in addition to the directory specified. I've also tried using ...
1
vote
4answers
421 views

What is the windows equivalent of diff command?

I know that there is a post similar to this : here . I tried using the comp command like was mentioned, but if I ahave two files, one with data like abcd and the other with data abcde, it just says ...
1
vote
1answer
77 views

how to delete a certain column (s) from big csv file in Windows

The files sizes might be over 1GB. I can write a script, but I wonder if there is a simple way, for example using Windows Command Promt? Thanks
1
vote
2answers
131 views

Windows batch file commands and variables

I'm not sure whether it is possible, but what I need is a plain bat/cmd file that runs on windows 7 and does such things: Step 1. findstr - it should find a specific string using regular expressions ...
1
vote
4answers
235 views

Please suggest something better than gotoxy function in C++

I have written a program that consists of multiples and multiples of function each of which are printing several things on the console when control is passed to them. Now I am trying to print ...
1
vote
1answer
90 views

Windows: User environment variable cannot be displayed with echo

I am looking at a user environment variable created using Windows console command reg add "hkcu\environment" /v SARMaster_Server_Name /d %smServer% This variable name SARMaster_Server_Name can be ...
1
vote
2answers
162 views

How to execute Windows CLI commands in Ruby?

I have a file located in the directory "C:\Documents and Settings\test.exe" but when I write the command `C:\Documents and Settings\test.exe in single qoutes(which I am not able to display in this ...
1
vote
1answer
145 views

How to enable scrollable console?

In Visual C++, I Created console using AllocConsole function. But I could not control its scroll bar using mouse wheel. Only way to control scroll bar is dragging it. It is too uncomfortable. Is ...
1
vote
2answers
113 views

How to send argument securely using Process class?

I'm using System.Diagnostics.Process to execute an svn command from a windows console application. This is the configuration of the process: svn.StartInfo.FileName = svnPath; svn.StartInfo.Arguments ...
1
vote
2answers
228 views

How to make a console program doesn't have console window

I'm writing a console program. The program doesn't print anything. So, it doesn't need to a console window. I tried to call FreeConsole() function at program starting point. When I execute the ...
0
votes
3answers
61 views

Assigning double variables to dynamic double array in C++

I tried to assign different variables value to double array in loop but the whole array has just 1 value double *float_array; float_array = new double [dynamic_variable]; // debugger does tell me ...
0
votes
3answers
62 views

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 standard windows CLI window so I have an easy means of outputting debug messages. My ...
0
votes
6answers
90 views

How to write in current line of Console?

I am writing a console application and I need to know, how to write in current line with shift of lines. I try to explain this on the next example: Let It console lines with their numbers and contents ...
0
votes
1answer
117 views

Embedding a DOS console in a windows form with Visual Basic

I've managed to find from other questions some data that allows me to achieve the next code: Imports System.Runtime.InteropServices Public Class Form1 <DllImport("user32.dll")> _ ...
0
votes
3answers
57 views

Console.WriteLine multithreaded output is empty with .NET, x64

There is a sample on MSDN for .NET ThreadPool. If I run this code, the output is completely erratic, sometimes, I get a completely empty output on the Console. If I add a Thread.Sleep() call, even ...
0
votes
0answers
70 views

What is the correct usage of the console winevents?

While "deploying" the solution from this question on a number of machines, I noticed some single core machines have terrible results (for example, the solution fails spectacularly on an intel atom). ...
0
votes
1answer
90 views

Second call to GetStdHandle Returns an “invalid” handle

I'm trying to set the text color of a console to a given color, print one line (or more) and then change the color scheme back to what it was. Here's what I have: Function ...
0
votes
1answer
65 views

Windows console - BAT compatibility

I have a command line statement which works perfectly when manually typing it into the console, however, when I put it in a bat file it doesn't work. for %f in (*.flac) do ffmpeg -i "%f" -acodec alac ...
0
votes
2answers
88 views

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 answer: console application in the project properties works for me. thank's
0
votes
6answers
156 views

Best way to concatenate plain text files?

I have a whole bunch of plain text files named as follows: file1.txt, file2.txt, ..., file14.txt, ... I want to concatenate all of them IN PROPER ORDER to one .txt file. How should I do this ...
0
votes
2answers
309 views

How to start 2 programs simultaniously in windows command prompt

Hi i am using windows 7 64bit Here is the code snippet i am using to start @echo off call "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe" call "G:\League of Legends\lol.launcher.exe" exit But ...
0
votes
1answer
222 views

How to type a grave accent/ back tick in a Visual Studio Console?

I need to type a back tick character in a Visual Studio 2010 Console but I can't seem to make it happen. I know it is the Unicode character +0060, and I tried the Alt+ method but that didn't work; ...
0
votes
2answers
129 views

prevent the problem of space in windows folders in the command line

As we know that windows, we can create folders with a name contains spaces(Hello World,New Folder,My Programs). In the commandline if we use start c:\Hello World\mygame.exe , it gives error called ...
0
votes
1answer
91 views

Remove the parent directory name from the echo %cd% command

We know that echo %cd% command print working directory, Assume that it is "C:\test\bin\run" I want to know how to remove "run" from the string. second time "run" directory can be "stop" directory. ...
0
votes
2answers
333 views

unable to create ActiveX object using javascript

i want to rum command using Windows Command Prompt but it require ActiveX object... Mozilla FireFox4 and Google Chrome are giving error Uncaught ReferenceError: ActiveXObject is not defined
0
votes
1answer
281 views

Ruby HTML Entity Problem

New to Ruby and am wondering how to get the following to print just the degree symbol... require 'htmlentities' coder = HTMLEntities.new puts coder.decode('&deg;') Currently the command line ...
0
votes
1answer
103 views

Console output - way to let caret jump to columns and rows

Is it possible to output such a escape code so that the caret in console moves to proper absolute location? I've seen something similar on unix console. Is this even possible on the basic and simple ...
0
votes
3answers
504 views

C# 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 web site and then downloads those URLs as byte streams using WebClient.DownloadDataAsync. My ...
0
votes
3answers
1k views

How to get/set the console cursor position in Ruby (Windows)

I'm trying to write a shell in Ruby, and to implement tab completion I am using the WinAPI function getch to read in a character at a time from the user, checking for tabs. The problem with this is ...
-1
votes
1answer
28 views

In scheduler How to active project in custom time

Work on C# VS2010 console application. My solution contains three projects. I set this solution exe on window schedule, Every morning scheduler active my solution projects consecutively , they work ...