Tagged Questions
4
votes
2answers
43 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
0answers
22 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 ...
1
vote
3answers
23 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
5answers
47 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
32 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
38 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
4answers
33 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 ...
0
votes
2answers
22 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
...
5
votes
3answers
61 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
23 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:
...
-1
votes
1answer
31 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
40 views
Windows START command failing to run when executed from RPC
Long story short I have written a program that allows me to install software and run commands on Windows machines remotely. I have been using the START command (which i learned about from another ...
1
vote
3answers
30 views
windows command line multiple commands
I am opening 3 cmd windows in different colours to help me distinguish between servers etc. These commands are in a .bat file.
start cmd /k color 4C
start cmd /k color 5D
start cmd /k color 2A
...
-1
votes
5answers
86 views
Windows batch file unable to move files to another directory
Appreciate any help as windows 7 keeps giving following message in spite of directory exists.
Sample code with error message are below. Thanks in advance
D:\WebService\Project-Print-Services>move ...
0
votes
2answers
29 views
Where does windows cls.exe reside?
As we know windows CMD can clear the scren by cls.exe command. But I cannot find the command location.
Usually, I can use which to find the location of the command program file.
But for cls.exe, it ...
2
votes
4answers
128 views
Check if an environment variable is defined without command extensions and without using a batch file? [closed]
I need to use a cmd.exe command line (cmd.exe is being called from the gyp build tool) to determine whether an environment variable is defined or not. How can I do this? I am okay assuming that the ...
0
votes
2answers
35 views
Cut the last 2 characters of cmd.exe script response
I want to write a script that esentially pings another computer and gets average as number only. Right now I have a script that gets average ping as needed and shows it, but it has 'ms' prefix and I ...
0
votes
0answers
34 views
run script on remote machine using existing ssh connection
I am writing a macro in VBA that does the following
collect some parameters from a word table
open an ssh connection (password-less login) to a web server (I use cwRsync)
run a perl script on the ...
1
vote
1answer
51 views
How to send CONTROL+C at spawn in nodejs
I run CMD to spawn, but if you'll send me a ping command, I can not get out of it, how can I send the console control + c, to avoid this? THANKS!
var fs = require('fs');
var iconv = ...
0
votes
0answers
23 views
How do I get NET SESSION to display computernames / hostnames? [migrated]
On my W7 box at work I send some jobs off to some nodes on a cluster, then when I want to check which nodes have sessions open on my W7 box I usually just type NET SESSION at the cmd prompt and I get ...
1
vote
1answer
37 views
Passing parameters into Windows command line script
I want to pass SampleText as a parameter into my Windows batch script
for %f in (SampleText*.sj) do find /i "SampleText_" %f >> temp.txt
I tried to replace SampleText with %1
for %f in ...
4
votes
0answers
50 views
Ping every ip in a textfile? [migrated]
Let´s say I have here a textfile with some computer names (each line == 1 name):
computerA
computerB
computerC
...
Is it possible to create a batch file that is pinging all of these computers? And ...
0
votes
1answer
38 views
Get Windows Command prompt instance in Java
I want to get windows command prompt instance in my java program so that batch commands like cls, dir etc. can be passed directly from my java program and would want to read its output just like we ...
1
vote
1answer
60 views
Suppress “The program can't start because X.dll is missing” error popup
I have a Python program which uses os.system to execute various commands. (It can't use subprocess because it has to be backward compatible all the way to Python 2.0.)
On Windows, sometimes the ...
0
votes
2answers
27 views
execute network executable file in cmd script?
I wrote a myweb.exe and myweb.cmd.
myweb.cmd is
start myweb.exe My Web Options
start http://localhost:8080
If I put these files on a local folder, it works when user click the myweb.cmd.
But, ...
4
votes
3answers
73 views
Get the own process pid from the command prompt in windows
I'm trying to get the PID from command prompt of its own. But when using the below command i'm not getting the desired output always. Can you please point out what was the error in the below ...
0
votes
4answers
90 views
What does %* mean in a batch file
I have seen the usage of %* in batch files and command lines. Googling did not give me any results. Can some one explain the typical usage of %* with an example.Thanks
0
votes
1answer
26 views
How can I input everything under current directory into executable by Windows batch(cmd)?
I'm a newbie using Windows cmd batch to run my OpenCV executable.
I wish to do this:
I had successfully created an executable under current directory (myImgProc.exe). I have several arbitrarily named ...
0
votes
1answer
40 views
How to run cmd in spawn on nodejs
I want to run cmd in the spawn, but when I run the command, you will not get a reply.
How do I fix this?
var terminal = require('child_process').spawn('cmd', ['/K'], { timeout : 1000*60*60*24 });
...
2
votes
0answers
100 views
Run command with parameters in batch file
Assume a psuedo command:
psuedocmd.exe
It has various parameters like:
/scan /save /savefolder
Now i want to run psuedocmd.exe using batch file.
And i would like to use parameters too.
I am ...
4
votes
2answers
123 views
How to create a shortcut to launch an App with admin privileges from the cmd-line?
I have an installer (Inno-Setup) that installs my application to a path defined by the user. At the end of the install routine i want to create a shortcut that starts the application with admin ...
1
vote
1answer
29 views
Is it possible to show a remote connected console?
I'm connected from a Linux machine to a Windows machine through winexe. I log onto the Windows machine with a user on that machine.
I can run cmd.exe or powershell scripts.
Now my problem: If I'm on ...
1
vote
0answers
49 views
Redirection standard error & ouput streams is postponed
I need to redirect output & error streams from one Windows process (GNU make.exe executing armcc toolchain) to some filter written on perl. The command I am running is:
Make Release 2>&1 | ...
1
vote
5answers
102 views
Running cmd commands in C++
I am trying to make a text adventure based on C++. I have made folders which contains the specific files to each path. Suppose I go south from a room, i need to go into a folder named "south". I am ...
1
vote
2answers
30 views
%USERPROFILE% space error
I want to start my programm with
start %USERPROFILE%\.myProgramm\myProgramm.exe
But now i get a popup-message, that the folder C:\Documets is not found. This is caused by the missing abostrophes ...
0
votes
2answers
141 views
Faking standard input on the Windows command line
I want to use Evernote's ENScript.exe to create new notes, entering the text and title as arguments. The problem is that ENScript only allows the text to be entered via a file or via standard input.
...
-1
votes
2answers
91 views
Create a batch file to download multiple url [closed]
downloader is download.exe
@echo off
set /p %d% `enter file to load here`
download.exe -u www.xyz.com/1s21.zip -o 1s21.zip
download.exe -u www.xyz.com/1s22.zip -o 1s22.zip
download.exe -u ...
0
votes
1answer
173 views
using cmd / batch file to get all the files recursively modified or created after certain date
I am trying to get all the files in an entire directory structure that have been created or modified after a certain date:
for /f "usebackq tokens=1-7* delims=/: " %I in (`dir/tc/o-d/s ...
0
votes
1answer
53 views
bat does not return right exit status
I have two bat files. callexcode.cmd calls excode.cmd which just makes a call to file 'saurabh' which does not exist. When I want to get the error code printed in the caller (in this case ...
1
vote
0answers
23 views
Finding Win CMD columns (gives result+error)
I have problem with following script:
$ exec('mode con /status', $tmp); print_r($tmp);
It runs the command and gives me result, but also I get every time error message too:
The system cannot find ...
0
votes
2answers
172 views
Difference between “%~dp0” and “.\”?
Let's say I'm using a batch file and want it to direct to a folder located in the same directory of the batch. If I'm not wrong you would write "%~dp0\whateverfoldername". But can't the same done by ...
0
votes
2answers
196 views
File / folder chooser dialog from a Windows batch script
Typically, asking the user to supply a file name to a batch script is a messy affair, requiring no misspellings, quotes around paths with spaces, and so forth. Unfortunately, users aren't well-known ...
0
votes
2answers
40 views
Print MS-DOS %PATH% with every entry on new line
Hello and sorry for my bad English.
I have a task: print all entries of %PATH% variable on new line. F.ex:
C:\Program Files\
C:\Windows
C:\Windows\System32 and so on...
0
votes
0answers
94 views
click the ok button on message box that arrived during running script
I wonder how can i click the 'ok' button on message box in script that arrived during running script.
If anyone knows a simple solution how can i do it ?
Thanks for any answers :)f
1
vote
1answer
58 views
Windows 7 and python 2.7
I want to install python 2.7 to my computer, but I have a problem. I've already installed that .msi file from the python official website and now I have a folder C:\Python27 . I've set up ...
0
votes
1answer
262 views
Using MakeCab.exe & .ddf file (i.e. using directive file) how to specify destination cab filename?
I have decided to use makecab.exe for my requirement to create cab files in my application.
http://msdn.microsoft.com/en-us/library/bb417343.aspx#microsoftmakecabusersguide
And I need to store files ...
0
votes
1answer
225 views
pushd \\network\path returns CMD does not support UNC paths as current directories
I was using a batch file to access some files from network.
I am using
pushd \\Network\path
to navigate to the networked directory to initiate some scripts
My bat file was working perfectly ...
2
votes
1answer
414 views
Why does MinGW/MSys change the binary path?
I'm using Mingw to build a C/C++ project. This project has makefiles beyond my comprehension, and relies on a custom and quite sophisticated toolchain to compile it. It's quite convenient to have GNU ...
4
votes
4answers
4k views
Arrays, linked lists and other data structures in cmd.exe (batch) script
I was playing with cmd.exe, but in its help I didn't find any info, how to define arrays.
I have found, how to define simple variables:
set a = 10
echo %a%
But, I want to create arrays, linked ...

