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 ...
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, ...
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 ...
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
27 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
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 ...
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
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.
-5
votes
4answers
46 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
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
27 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 ...
5
votes
3answers
65 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
2answers
129 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
3answers
71 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 ...
-1
votes
1answer
33 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 = ...
0
votes
3answers
32 views

Math. Batch (misssing operand, or missing operator)

set /a var=2 ( set /a %var%=var * 2 set /a %var%=%var% * 2 set /a %var%*= 2 ) Why does it say its wrong? I got messages like Missing operand and Missing operator. Well, operator is there, though I ...
1
vote
1answer
46 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 ...
0
votes
1answer
47 views

User input path psftp script batch file

I am trying to implement a scenerio like the user should give a path and the path should be binded to another . bat file and that path should be the destination where am going to put my file from ...
0
votes
1answer
47 views

QueryTables Error: Expected ')'

Getting an error: "Expected ')'" on Line 22, Char 60 (i.e. right at the "connection" in the QueryTables.Add function). This VBA is being called by a batch file. I'm trying to understand what is wrong ...
0
votes
2answers
43 views

Issue with a variable in my batch script

I want my script to: Accept a variable Create a path using that variable as input Display the path Display the contents of the directory What is wrong with the following code? The ECHO statement ...
0
votes
2answers
33 views

Parse a simple text file with dos cmd line

I have a text file (vernum.txt) containing one line: At revision 2. How do I use dos cmd line to read in the line and save a variable with JUST the number? It will always be "At Revision ####." ...
3
votes
1answer
65 views

Read a string from a text file and copy it on another text file using batch file

What I want to do is basically read a text file containing ping results, detect a certain string and copy it in another text file. the strings I want to copy are those bold in the example. Envoi ...
0
votes
5answers
64 views

How to copy only files(not directories) using batch file?

The directory structure is: Images -Folder1 -image1.jpg -image2.jpg -Folder2 -image3.jpg -image4.png -Folder3 -image6.png -image7.jpg ...
0
votes
1answer
122 views

batch file for putty file transfer automation

i have a batch file for moving file from my local PC to server through SFTP. I have Putty installed in my system and the batch file code follows. cd C:\Program Files (x86)\PuTTY psftp open <IP> ...
0
votes
1answer
36 views

command not working in batch file

When I run the command below on my Citrix server in a CMD window it works fine, but when I run it in a batch file I get "was unexpected at this time" for /f "skip=1 tokens=2 delims=: " %f in ...
2
votes
2answers
36 views

Windows 2003 batch script with pipe

I'm trying to write a batch script that will run every 15 minutes, check number of files in a directory and if that number is bigger then set limit, move all files to another directory. I would easily ...
-1
votes
1answer
36 views

How to get average output for 30 samples of CPU Utilization using cmd? [closed]

I want to get average CPU utilization of my system using cmd for a period of 30 seconds. I can get current cpu util by using: typeperf "\processor(_total)\% processor time" which gives me ...
0
votes
1answer
21 views

Pop-up message when a xml file from a specific folder is older than 10 days

I want to create a bat file that will search for xml files from a folder and if one xml file is older than 10 days to show a pop-up message. The idea is that I don't know how exactly I can do this ...
0
votes
2answers
36 views

how to set anothe path - cmd

I would like to start cmd.exe from batch file and execute command, but: If I use start cmd.exe /k e.g. „net use“ – it executes command behind /k. - and it gives me default path - i would like to ...
2
votes
4answers
132 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
1answer
50 views

How can I execute exe file (which writes a txt file) in classic asp

I want to have a server page which executes a exe file compiled based on C the exe file is filew.exe generated by filew.c; filew.c> #include <stdio.h> int main () { FILE * fp; fp = ...
0
votes
1answer
48 views

How to log input and output of a batch file to a text file?

I have created a batch file with 2000 lines of code and which will peroform various operations in my daily work. For this batch file I have to give some inputs to enable/disable some of the ...
0
votes
0answers
20 views

I want to get last user of files in directory

I have tried to use wmic datafile to get information about a ton of files I have. It looks like there is no get attribute to see who was the last person to accessed the file and who created it. Is ...
1
vote
4answers
78 views

how to add space in for /f “tokens=*”

this is my myfile.txt I want to add space in second column as see the sample ARK,LAR SNE,QNE,898,ILO,SNE,SNE,LAR,LAR,545 AUS,MNY P08,TTL,7776,STO,STL,STL,MNY,MNY,567 BOS,MTZ ...
2
votes
1answer
51 views

Batch ~dp0 doesn't work with admin rights?

I have a batch file which looks like this: set OWNPATH = %~dp0 for /r %OWNPATH% %%F in (*.ocx) do ( echo %%F ) It correctly lists all OCX files in the same folder when I start it, but lists the ...
1
vote
1answer
40 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 ...
2
votes
5answers
104 views

When is the CD environment variable updated?

The tipp to use the CD environment variable from batch scripts to get the current working directory is commonly posted. But CD won't get updated when calling another batch file. Then the cd command ...
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 ...
2
votes
3answers
65 views

Displaying and copying output of a java program from command prompt into a file

i have a Java program which takes input from Users and displays output according to the input. The Program provides the user with a menu of options and the user is required to select one option from ...
0
votes
1answer
152 views

Jenkins cannot run exe batch commands?

Ultimately trying to run some NUnit web tests, but I found that Jenkin's would stop before running the batch command path\to\nunit.exe. So I just tried running a new job that consists of a single ...
1
vote
2answers
37 views

CMD/Batch: Copying files with symbols in path

What's the best way to deal with symbols like "Registered" in a file path - besides renaming? I have a folder "Name®_Name®_1500" that I am trying to copy a file into. When I try to select the folder ...
0
votes
2answers
32 views

Passing command arguments Batch

I need to pass command arguments with a batch file. How would I do that? I have a little program set up but I don't know how to get the command arguments.. or really how to make a command. @echo OFF ...
0
votes
1answer
84 views

How to launch a batch file from within an HTA

I have a basic HTA in which I am trying to launch a batch file via a button, however when I try to launch the batch file, it does not run. When I press the button, a command prompt window launches but ...
0
votes
2answers
65 views

batch file detects drive letter of the USB flash drive it's on then opens cmd prompt

I would like to put a batch file on a USB flash drive that I can just plug in and run the batch. I would like the batch to detect what drive letter has been assigned to the USB flash drive, then open ...
0
votes
1answer
38 views

How to control .exe file with .bat file?

Hi I have program Program.exe which have some 3 parameters. And I am trying to control this program via .bat file. I can run this program with parameters without any problems, its easy. But if this ...
-1
votes
2answers
68 views

Batch script to copy text lines from one textpad to another, and do some other things

I have this notepad file filled with a long list of lines... Like this: MCDXY22 = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = xyzbdk012)(PORT = 11234) (CONNECT_DATA = ...
-1
votes
2answers
79 views

Batch For loop array

Okay so here is what I have. @echo off setLocal EnableDelayedExpansion :begin set /a M=0 set /a number=0 set /p Input=You: echo %Input% >> UIS for /F "tokens=1 delims= " %%i in ("%Input%") do ...
0
votes
2answers
64 views

bat file to move all files in a dir and subdir to a new folder based on many extensions

I was looking at this as reference: batch file Copy files with certain extensions from multiple directories into one directory I have about 300k+ files contained in [sub]folders with many file types ...
0
votes
4answers
92 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
27 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 ...

1 2 3 4 5 23