Command Prompt (executable name cmd.exe) is the Microsoft supplied command line interpreter on OS/2, Windows CE, and Windows NT operating systems (including Windows 2000, XP, Vista, 7, Server 2003, and Server 2008).
10
votes
10answers
16k views
How does “FOR” work in cmd batch file?
I've been programming in dozens of languages for 20 years but I could never understand how "FOR" work in windows cmd shell batch file, no matter how hard I tried. I read
...
0
votes
3answers
98 views
Determine Intel or AMD through Windows batch file
Is there a way to determine if the machine is running an Intel or AMD processor through the Windows command line (so it can be placed in a Batch file)? I am trying to make an installation script for ...
0
votes
2answers
48 views
Command to find default program related to file(.pdf) using command line in windows OS
Is there any command through which I can find that user has selected a particular program (e.g. Adobe reader/Adobe acrobat) as default program for a particular file extension (e.g. .pdf) in Windows?
...
0
votes
4answers
1k views
“Dont let cmd window to close automaticaly” -how can i do this?
see i have compile one c program and prepare one a.exe
Now when ever i click on a.exe
cmd windows opens
a.exe run
and automaticaly close that windows.
What should i do in program or anywhere so ...
0
votes
1answer
32 views
Delete all files but not directory
echo Process Run time: %DATE% %TIME% >> log1.txt
echo Disconnecting the Existing Drive if Any >> log1.txt
net use E: /delete
net use E: \\myserver_ddl\mydrive$ /USER:user1\my_test ...
0
votes
1answer
11 views
How does the “Eclipse IDE” manipulate Windows environment “Path” variable?
I have problems setting "run configuration" in Eclipse. When I use the Windows cmd to compile and run java.class I use .bat file that looks like this:
rem Wipe standard Windows Path variable and use ...
7
votes
1answer
402 views
How to mouse scroll with Git Bash?
Using Git Bash or MinGW Shell, if I put in a command with much output,
for example env, I cannot mouse scroll. A regular old Command Prompt (cmd.exe) window will do this however.
Please refrain from ...
63
votes
18answers
71k views
Displaying Windows command prompt output and redirecting it to a file
How can I run a command-line application in the Windows command prompt and have the output both displayed and redirected to a file at the same time?
If, for example, I were to run the command dir ...
0
votes
2answers
21 views
Batch File to copy folders from a text file to another directory
I am trying to create a batch file to read off a text file and copy the folder with the files to another directory:
set dest=f:\Test
for /f %%i in (C:\dirs.txt) do copy "%%i" %dest%
When I run this ...
-2
votes
0answers
27 views
MySQL? how do i open it in Powershell [closed]
I need to be able to copy commands that i entered and results i get. But CMD dosent let me copy text... I know that powershell lets me copy...
i know how to open mysql command line thing, i need to ...
14
votes
3answers
54k views
What does cmd /C mean? [closed]
I can understand cmd but not cmd /c. I was trying to invoke a java program from the current for which I use Runtime.getRuntime().exec("cmd /C java helloworld"); There arises my doubt.
0
votes
1answer
22 views
How to record commands executed by processes (on MS Windows)?
I'm wondering if there is a way to capture/record shell commands being executed by any given process, e.g. if I have some GUI app with menu items that execute shell commands when I click them and I ...
-5
votes
4answers
43 views
How to make batch file open new CMD with commands in it?
How can i make a batch file open another CMD window with this in it?
Title Matrix
color a
mode 1000
:start
Echo %Random% %Random% %Random% %Random% %Random% %Random% %Random% %Random% %Random% ...
0
votes
2answers
27 views
Batch script that rename a file by appending a version
@echo OFF
set CURR_DATE=%DATE%
set MONTH=%CURR_DATE:~4,2%
set DAY=%CURR_DATE:~7,2%
set YEAR=%CURR_DATE:~12,2%
set SEQ=%DAY%-1
set VERSION=%YEAR%%MONTH%%SEQ%
if exist "E2F.csv" (
echo "File Exists, ...
1
vote
3answers
75 views
+100
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/hiber nate/cfg/Configuration
I created a project in Eclipse and executed it succesfuly (It's a normal project, without Maven or Beans, really simple), I created a .jar with the project and tried to execute it but it throws the ...
0
votes
1answer
38 views
Process.Start() arguments does not take effect
I have a code here in C#, the function of this is to generate a list of files in a folder:
ProcessStartInfo processStartInfo = new ProcessStartInfo("cmd.exe", "dir /B /S *.* > D:\\tempf.txt");
...
2
votes
3answers
6k views
“Error: Could not find or load main class My.class”
Im using Java SDK 1.7 on Windows 7 via cmd.exe . Up until a few hours ago everything was working correctly when suddenly I was unable to run my compiled class files, consistently presented with the ...
1
vote
3answers
33 views
Multiple instances of a RegEx string in FINDSTR
I am looking for a way in a Windows batch file to find if a file contains the word Shutdown a given number of times.
I have tried this using FINDSTR:
FINDSTR /r .*Shutdown.*{5} file.txt
This ...
0
votes
2answers
14 views
Batch file to check programs
I am working on a batch file that would need to check if an icon exists on the desktop, if not i want it to check the program folder and if there move it to the desktop. If it isnt installed i want it ...
0
votes
0answers
12 views
Remove certificate from cmd
I create certficate from command line as follows:
makecert -r -pe -n "CN=WWW.TEST.COM" -b 01/01/2005 -e 01/01/2020 -sky exchange -ss my
how can I remove it using command line?
2
votes
2answers
469 views
Executing cmd commands in Windows 8 c#?
I wish to execute a cmd command in my windows 8 Metro app. I visited many sites and I got confused. They kept saying that Windows 8 apps uses Windows RT rather than the Win32 API, as it used to ...
4
votes
2answers
51 views
Semaphore for CMD instances working in Parallel
I have .bat that would be started X times (with different arguments) at the same moment.
I would like them to modify one specific file but it has to be done in sequence with controllable delay. ...
0
votes
1answer
28 views
Can't get the http response using telnet from the command line [closed]
I'm using Windows 7 (x64). I want to send an http request from a command line and to get a response. I use Telnet. I type in the command line: telnet www.google.com 80.
After I press "enter" the ...
1
vote
0answers
26 views
CMD/Batch Get Handle to Open App?
I've just made a batch file that launches a new instance of an application (Excel) and then opens a file with this instance.
However, I would like to be able to store a config file on each users ...
3
votes
2answers
2k views
How to sort the tasklist in the command prompt?
I just wanted to know how to make the MEMUSAGE column be in decreasing or increasing order. I searched all over the web and still did not find the answer, the closest point I got was this:
tasklist | ...
2
votes
3answers
1k views
Run ipconfig command with php
I use this code to understand some information of visitors (clients). It has been running on my virtual server on Xampp, but I can`t run on my main server (host). I see just a blank page.
$info = ...
0
votes
0answers
24 views
Python Windows8 CMD 32 bit/64 bit
I have Activestate Python 2.7 installed at D:\Python27.
The normal system environment paths are set
The Python is 32 bit and runs on a 64 bit computer.
With W8 64 bit there appears to be 3 types of ...
0
votes
1answer
23 views
Batch file code - runs of CMD but not in .bat file
I'm not very good at it and not familiar with syntax, I googled and I still cannot work out:
@echo off
for /f "tokens=1-5 delims=/" %d in ("%date%") do set curDate = _%d_%e
...
0
votes
0answers
9 views
for /f run powershell escape characters
When I run the following in cmd prompt, it works fine
pushd "C:\Converter"
for /f "delims=" %g in ('dir "C:\Toconvert" /b /s /ad') do (powershell .\BatchConvert.ps1 "%g" 10)
popd
It executes the ...
0
votes
1answer
17 views
Parallel Port Controlling using executable file
How can I control Parallel Port outputs/inputs with Batch files or other Executable File ?
Like i say, i want to high pin number 3,4 and 7.
Please Any One Give me any idea.
Thanks in advance.
0
votes
0answers
16 views
Mongo shell in Windows 7 “unicode text could not be correctly displayed”
I am using Windows 7 64 bit and i have English and Greek language installed for my keyboard.
If i switch to mongo shell and i try to write a UTF Greek character, i get this error
"Unicode text ...
0
votes
5answers
53 views
Add if statement to cmd.exe script
I have a cmd.exe script:
FOR /F "tokens=5 delims==<ms" %i IN ('ping -n 1 -4 host1.internal ^|find "Reply from"') DO @echo %i
Basically, it returns ping value to host1.internal without anything ...
1
vote
4answers
50 views
Can a wmic processes table (within the command prompt window) be sorted by a value?
I've been exploring various options, such as the /format flag, however it appears that sorting is only possible in XML or HTML output. I would like to sort within command prompt itself. It seems that ...
1
vote
0answers
42 views
Is there a way in python to not filter out escape sequence from a subprocess
here is the situation, I am wrapping a subprocess in windows that I am communicating with remotly.
connection_process = subprocess.Popen(r"C:\Windows\System32\cmd.exe", shell=True, ...
1
vote
0answers
41 views
Save text file in UTF-8 encoding using cmd.exe
Is it possible to save a text file in UTF-8 encoding using Windows' command line cmd.exe?
-1
votes
1answer
33 views
How to send messages using command prompt on a school network? [closed]
I'm in a computer lab with 25 other logged in computers. The 'net use' command returns only me, 'MSG * Hey' messages only me, no one else. I can find every computer under 'net view' and I can get ...
0
votes
3answers
37 views
cmd /C “MyBatch.bat Param1 Param2 Param3” works under WinXP but fails under Win7
This command is in the middle of a large batch file that has worked problem-free for more than 5 years under Windows XP, but when run under Windows 7(32bit) it reports "MyBatch.bat is not recognised ...
0
votes
1answer
34 views
updating tool from site in cmd
so i have a simple batch tool
its url is somesite.tool[version].zip
eg: somesite.tool1.9.zip
and theres a file in the tool called version.
in this case it contains 1.9
the tool.zip will have the ...
0
votes
3answers
769 views
Robocopy, xCopy or other solution?
I need to a way to update all files in a destination folder and its sub-directories with files in a single source folder.
Source : File A, File B, File C
Destination : File A, Destination->SubFolder ...
1
vote
4answers
34 views
Keep open a cmd window
I have a python code in a program that opens a cmd window and runs there another program. The code looks like:
os.chdir('C:/Abaqus_JOBS' + JobDir)
os.system('abaqus job=' + JobName + '-3_run_rel2 ...
6
votes
5answers
6k views
How to capture Python interpreter's and/or CMD.EXE's output from a Python script?
Is it possible to capture Python interpreter's output from a Python script?
Is it possible to capture Windows CMD's output from a Python script?
If so, which librar(y|ies) should I look into?
3
votes
7answers
13k views
Android: keytool error on the command line when locating debug.keystore
I'm trying to generate the MD5 fingerprint from the debug.keystore file using keytool.exe in my JDK so I can use Google Maps in my Android project.
I've located the keystore file and have moved it ...
1
vote
4answers
2k views
How do you redirect standard input to a file in the Windows command line?
On Unix I would do something like:
cat > file.txt
How can I do this on the Windows command prompt or batch file?
EDIT: Basically, I am looking for the functionality of cat with no arguments (it ...
1
vote
3answers
4k views
Write variables to file as %VAR% not as the value of the variable in BAT
Write variables to file as %VAR% not as the value of the variable, as well ask making tasklist function properly when redirecting output.
Code im using to write to file:
echo tasklist /FI "IMAGENAME ...
0
votes
2answers
128 views
VBScript - Open batch file with 32-bit cmd
I have a .hta application and the below code.
By default, the below command opens file.bat in C:\Windows\ syswow64 \cmd.exe
How do I get it to open with C:\Windows\ system32 \cmd.exe?
A workaround ...
9
votes
4answers
59k views
How to run an app as “run as administrator” from command prompt? [closed]
I have a batch file called test.bat. I am calling the below instructions in test.bat file
start /min powershell.exe %sysdrive%\testScripts\testscript1.ps1
When I run this through the command prompt ...
2
votes
1answer
31 views
How to workaround doskey's special character, like $L
I got a useful tip from this post: http://stackoverflow.com/a/374363/151453 , but plagued by doskey's special characters.
(env: Windows 7 and Windows XP)
Using Visual C++ command line, we have ...
0
votes
2answers
28 views
Choosing folders with numbers in batch
ok so from the title you might have an idea as to what im trying to accomplish.
What I want to do is [ tree ] and show a list of folders ( hence the tree command ) and then allow me to select a ...
0
votes
2answers
26 views
Windows CMD Search and Delete file by name
I have a website dump which has about half a gig worth of images which have been converted to various file sizes. The structure goes like:
media/
1/
1.original.jpg
1.large.jpg
...
0
votes
2answers
28 views
CMD - Command to change front size
Is there a way to enter a command into cmd, and increase the front size, not the resolution?
Not by clicking on the properties, but by typing a command in the cmd.





