Questions tagged [command-window]
51 questions
24
votes
3 answers
Is the "xsd" command not supported in Visual Studio 2012 command window?
I've read that it is possible to run xsd commands right in visual studio (2010). I have VS 2012 on my machine and when I run
xsd XMLFile.xml
I get
Command "xsd" is not valid.
So, is the "xsd" command not supposted in VS 2012 and is there any…

Aleksei Chepovoi
- 3,915
- 8
- 39
- 77
19
votes
1 answer
How to save the contents of MATLAB's Command Window to a file?
I want to save everything in the "Command Window" to a file automatically. Is there a way to do it?

Mohammad Moghimi
- 4,636
- 14
- 50
- 76
18
votes
4 answers
How to turn off blinking cursor in command window?
I have a Python script that sends output to a DOS command window (I am using Windows 7) using the print() function, but I would like to prevent (or hide) the cursor from blinking at the next available output position. Has anyone any idea how I can…

Alan Harris-Reid
- 2,811
- 8
- 33
- 32
14
votes
3 answers
How to keep the VBScript command window open during execution
When I execute a VBScript, the command window that it creates closes quickly before the user gets a chance to read the output. How can I get the window to stay open without modifying windows registry?
This is the code:
Set objShell =…

Martin
- 3,396
- 5
- 41
- 67
7
votes
2 answers
Print in Command Window without 'ans = ' in matlab?
When I use sprintf, the results show like this :
sprintf('number=%d %d %d',a,b,c)
sprintf('or %d',h)
ans =
number= 5 4 2
ans =
or 2
How can I display the results without ans = obstructing them ?

NLed
- 1,845
- 14
- 39
- 68
4
votes
1 answer
How can I format the command window output of a custom class in Matlab?
how can I achieve a formatted output in the command-window in Matlab when I call the object ob a custom class? The regular output of a custom class is a list of all public properties as shown below.
customss with properties:
A: [8×8 double]
…

Marcel
- 43
- 3
3
votes
1 answer
Visual studio command window - one alias for more commands
is there a possibility in Visual Studio command window to have one alias for more commands? E.g. one alias for:
save all
close all
show output
build

Petr
- 182
- 1
- 4
- 18
3
votes
1 answer
Is there a command or a way to clear workspace and command window at the same time?
I feel a little troublesome to enter the clear command to clear the workspace, and then enter the clc command to clear the command window.
Is there a command or a way to clear the workspace and the command window at the same time?

Ray Chen
- 182
- 1
- 2
- 13
3
votes
1 answer
Which Visual Studio Command Window commands to you find most useful?
I've only recently started using the Visual Studio Command Window, and for the vast majority of the time, it's in order to use the of (open file) command. Which commands do you find the most useful (and what do they do, if it's not obvious)?

darasd
- 2,899
- 3
- 26
- 39
3
votes
0 answers
Using ctrl-backspace to remove previous word in MATLAB command window
I use ctrl-backspace in MATLAB Editor (MATLAB 2015a) to remove the previous word, but it doesn't work in the command window. I tried changing it in Preferences -> Keyboard -> Shortcuts, but there doesn't seem to be the option to bind it to "Remove…

Shaiyan
- 41
- 1
2
votes
1 answer
How do I set the default directory that the PL/SQL Developer Command Window opens in?
I'm trying to run a script in a sql file in PL/SQL Developer. I open a command window and I find myself not in the directory where the sql script is.
I encounter a couple issues when trying to navigate to the directory:
cd into the directory…

gib65
- 1,709
- 3
- 24
- 58
2
votes
2 answers
DDE using System.Windows.Automation
Is it possible to use the .NET System.Windows.Automation namespace and do the equivalent of the old DDE?
My requirement is to read the text inside a command window(which could be a mainframe screen as well) from my .NET Windows Forms application.
Am…

cethie
- 49
- 3
- 8
2
votes
4 answers
Is there a way to look at what the windows command prompt just closed?
When the command prompt opens and then just closes really fast (because there isn't a pause line) is there a way to see what it just showed you?

thepaulpage
- 4,614
- 2
- 25
- 39
2
votes
1 answer
How to stop printing out from a standalone application in Matlab?
I have to execute a standalone application, aTool.exe, from a .m file, Gen.m.
I put a command in Gen.m to execute the aTool.exe as
system('aTool.exe');
It worked fine. However, because aTool.exe has a lot of printings to the command window, it…

Cassie
- 1,179
- 6
- 18
- 30
2
votes
1 answer
how to get matlab's output which appeared in command window
How to get the matlab's output? NOT the whole output(I know diary can help)
A easy example:
>> st = rng
st =
Type: 'twister'
Seed: 0
State: [625x1 uint32]
what I want is to copy the output to clipboard. when I use clipboard function,…

HaveF
- 2,995
- 2
- 26
- 36