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).

learn more… | top users | synonyms (1)

0
votes
1answer
31 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 ...
0
votes
2answers
42 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
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
26 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 ...
0
votes
2answers
26 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, ...
0
votes
1answer
21 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 ...
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"); ...
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?
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
1answer
27 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 ...
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. ...
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 ...
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
22 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 ...
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
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
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
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
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
0answers
40 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
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
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 ...
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 ...
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 ...
-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% ...
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 ...
1
vote
3answers
71 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
2answers
25 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.
1
vote
0answers
41 views

show path in console (windows cmd) whithout tilde

I can log the path of the directory of my node.js server to the windows console here is my server.js: var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, ...
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
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 ...
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
1answer
26 views

How do I iterate over files/directories with names that do not match a wildcard?

From within a batch script file, the following code successfully deletes folders that begin with a name preceding *, denoting a wildcard. How do I write a FOR loop which iterates over the ...
0
votes
2answers
32 views

running cmd as administrator with argument from c#

I want to run cmd.exe as administrator with arguments from c# in order to prevent UAC popup. This is necessary in order to use it as an automated installing process. The command I am passing in is ...
0
votes
1answer
67 views

Windows 7 remote shutdown: Access denied(5) [closed]

I am trying to force a remote shutdown from my laptop to my PC: machine> shutdown -m \\192.168.2.10 -s -f -t 0 192.168.2.10: Access denied(5) I am in a WLAN/LAN environment: Laptop is in WLAN ...
5
votes
3answers
63 views

Windows .bat file, %~$PATH:1 quotes issue

I have a which.bat on Windows 7, @echo off REM This bat searches a file in PATH list to see whether a file can be found. REM If found, it shows the file's full path. REM which.bat gcc.exe REM ...
0
votes
1answer
24 views

recursively rename child folder with parent folder using command line [closed]

I am trying to rename some child folders to include the name of their immediate parent folder. I would then like to take said renamed child folder and move them to the grand parent folder and delete ...
1
vote
1answer
67 views

Loading bar while cmd.exe is running

What I'm trying to do: Pass a command to .cmd, show a loading bar while the command executes, exit cmd and display a message box after progress bar is full What's happening: When I click the button ...
0
votes
1answer
24 views

access console logs ( cmd.exe using windows xp)

when my application logs lots of lines to the windows console the first lines disappear and only the the latest lines are shown. Is it possible to get the first logs anywhere? Are they stored on the ...
0
votes
0answers
35 views

I need to run an application from guest user like administrator

First, sorry for my bad English. I need to run an application from guest user like administrator. some programs use this: bat file code: ...
4
votes
1answer
53 views

Running java files without ugly command prompt box in the background

I made a java program with a GUI using eclipse so whenever I want to run it I run it there, but my friend wants to run it on his computer so I made a class-file using javac in command prompt and also ...
0
votes
2answers
126 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 ...
0
votes
2answers
33 views

Creating long text file in cmd

Simple question i need to create reset.css file with batch file. I know how to make short-text files but when trying to put in a long text it doesn't work. Here's the text html, body, div, span, ...
0
votes
3answers
35 views

change eol character via cmd

i have a file file1in with unix eol, i have a script to do some editing in it, but the editing is done into output.txt and is renamed as file1and this changes the eol to windows/dos the code is ...
0
votes
3answers
70 views

copy lines from a text file to another

i have two text files file1 has the following lines line1 line2 hello-hai-1 hello-2-hai 3-hai-hello hello and file 2 has line4 line3 hello-hai-5 hello-7-hai 6-hai-hello hai hello-4 what i want ...
0
votes
0answers
27 views

How can i make batch file that will show what txt file has written [closed]

I know how to make batch file show what txt file has been written on BUT! how to make it take that text just by ip!
-1
votes
1answer
32 views

Windows cmd/batch - Edit .cfg file where text = something [closed]

I need some help with a batch file that runs through Windows Task Scheduler every 6 hours, and I want it to each time the task is run, change a line that pretty much looks like this: hostname = ...
1
vote
1answer
30 views

How can I get cmd result using php

i am using this code in php for using lucene file indexer and searcher but it results in empty array... $resul = exec('set ...

1 2 3 4 5 65