0
votes
1answer
27 views

Coping files from multiple directories into one folder

I have many pictures in multiple directories and want to copy them to one folder, but my script is interrupted when a file with the same name already exists in the destination folder. I tried for /R ...
0
votes
1answer
60 views

Extracting IP from ping into variable in bat script

is there anyway i could do this? @echo off REM #Testing FIND in IPCONFIG setlocal EnableDelayedExpansion for /f "tokens=3" %%a in ('ping localhost ^| findstr /i "reply"') do ( set address=%%a ...
1
vote
1answer
27 views

Tracing (for documentation purposes) through .cmd and .pl files.

I am somewhat new to programming and VERY to command line and perl. I was wondering if anyone knew of a way that I can trace through a .cmd file and see what perl scripts its calling and then open ...
0
votes
0answers
24 views

Deleting content of .html files with a script (more info in description)

Ok so I have a new job and they are asking me to rebuild the html of a lot of pages, I mean a LOT. I just simply can't consider doing this by hand. I have 859 .html files that I have to recode. I ...
0
votes
2answers
23 views

Using variables to shorten cmd script length

This is my first attempt at scripting in the windows command line. I am trying to use variables to make the commands that I am going to write easier to read. Unfortunately I can't get the script to ...
0
votes
1answer
59 views

Batch script to keep asking for username until correct user name is entered

I am not good with writing batch scripts, but here is what I am trying to achieve. I want to execute some sql (oracle) scripts from command prompt, but script cannot be run by one particular user ...
0
votes
2answers
38 views

character manipulation in file cmd

this is file.txt hello hai So i wanna create a program that will read this file. and then replace every ALPHABET with the succeeding one. keeping all numbers and other symbols intact. so the ...
0
votes
3answers
47 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
96 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
2answers
27 views

replace specific lines of two files

alright. i have two files file1 and file2 file1 line1 helloa hellob line2 file2 line3 helloc hellod helloe line4 i want to replace all the hello lines in file1 with that of file2, the lines ...
0
votes
1answer
43 views

copy specific lines from one file to next

question-1) i have two files file1 has abc=123 acd=234 helloa=455 hellob=768 adb=234 file2 has abc=123 acd=564 helloa=2343 hellob=123 adb=685 i know the string helloa and hellob but i dont know ...
0
votes
1answer
29 views

compare folders and copying non identical folders and files

i have two folders folder1 and folder2 folder1 has file1 file2 folder3 folder4 and folder2 has file1 file2 file3 folder3 folder5 here i want to copy everything thats not present in folder1 from ...
-1
votes
2answers
91 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 = ...
0
votes
1answer
72 views

cmd script with sqlplus not returning any results

I a cmd script that looks like this right now: for /f "delims=" %%a in ('sqlplus user/pass@OMP1 @CheckRowCount.SQL') do set rowcount=%%a if %ROWCOUNT% GTR 0 ( ...
0
votes
3answers
60 views

Filter Information with cmd/batch script

I'm using "Disk Usage" (http://technet.microsoft.com/en-us/sysinternals/bb896651) to get the size of the recycle bin. The problem is that I get a bunch of information that I don't need and I can't ...
0
votes
2answers
108 views

Multiple statements using && [duplicate]

What would be the equivalent statement of CMD's: dir && cd .. in Powershell? I tried: dir -and cd .. but it throws error: Get-ChildItem : A parameter cannot be found that matches ...
0
votes
1answer
121 views

How do i start Mintty and run a script file?

I wrote a simple CURL and put it in a script file. if i run mintty first and then "test.sh" it runs the script in the file just fine. Works perfectly. however, if i try to run mintty with any of ...
0
votes
1answer
295 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
0answers
108 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
0
votes
1answer
34 views

Lynx Web Browser Crashing

I am using the lynx web browerser (v2.8) from the command line with the following command: lynx -crawl -dump "http://www.urlhere.com" >1 When I paste the code into CMD one at a time it works ...
1
vote
1answer
78 views

Exclude a folder inside temp when executing a del batch file

What do I add to my DEL batch file if I want to exclude a folder inside a folder I want to delete? I have this code to delete my all the contents of the temp folder DEL /F /Q C:\temp Now, I want ...
1
vote
2answers
196 views

Batch to copy a file to a folder and only ONE subfolder deep

I have this batch file now that copies example.jpg from C:\Temp to the Test-folder and all its subfolders. I would like it to copy the file only 1 subfolder deep in the Test-folder. For example copy ...
0
votes
0answers
77 views

How to assign output string to a variable in cmd dos [duplicate]

How do we pipe the output and trim the output in a single command? E.g. c:\software\scripts\scripts>find /I /C "Running" status.txt ---------- STATUS.TXT: 0 Desired output: ...
0
votes
1answer
223 views

How to stop a windows service, check if its been stopped, and start it up again using Cmd Line?

I have a rather simple task to achieve but am a total noob at command line scripts. I have googled around and found some of the basic commands to interact with the services on a windows machine but ...
1
vote
2answers
274 views

MS DOS Batch file heading color

I create a utility to automate some tasks in windows using .bat file. I have only MS DOS commands there. Once, I execute the .bat file it displays the command prompt with default colors. Black ...
0
votes
2answers
73 views

Can I open a word document and execute find operation using a script?

Can I do this operation in any command line or any scripting language ? I have a string and I want to search for it in word document exactly as a user would do it. Steps: 1- I want to open the ...
0
votes
1answer
63 views

Why won't my CMD batch IF condition work?

In my batch script I have a variable SET VAR=SVI and an IF condition IF "%VAR%"=="SVI" ( ECHO HELLO ) that doesn't work! If I say ECHO IF "%VAR%"=="SVI" just before the IF statement it will ...
1
vote
1answer
31 views

Why does a Deleted File Magically Reappear During Batch Script Execution?

I have a batch script that creates a file through a cleartool command. Basically ClearCase activity information is read to file and analysed. After analysis, the file is deleted. All is good. ...
0
votes
1answer
109 views

Visual Basic CMD/.bat Issue

I'm beyond the point of confused.. I've tried everything. Currently I'm trying to execute the following script; Public Class Form1 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As ...
0
votes
1answer
43 views

How do I replace a path subset with another path in a cmd batch file?

If I have a path C:\folder1\folder2\folder3\keyfolder\folder4\file.ext and a string keyfolder which corresponds to one of the subfolders in the path, how can I change the path root up until the ...
0
votes
0answers
66 views

Windows script to resotre incremental backups [closed]

I'm running daily incremental backups for a shared network drive on a file server. The first backup is a full copy of the entire contents of the drive. Each backup after that copies only the files and ...
1
vote
2answers
302 views

wild card (asterisk) in Windows batch

I have this command in my windows's script (.cmd file): CALL mv *.exe foo.exe The wildcard character doesn't seem to be be interpreted as a wildcard at all, because the when the script is executed, ...
0
votes
3answers
2k views

Batch file to find all images and copy to a folder

Not even sure if this is possible, but I'd figured i'd give it a try. So here's my problem. I need to search multiple big hard drives (1TB and bigger) for all images and move them to one folder. My ...
0
votes
1answer
143 views

cmd script to copy files based on month

I am writing a script to copy file from a ftp server to local.i am able to use cmd command to download file etc. My only problem now is copying file to destination. I want copy file based on month.If ...
0
votes
1answer
432 views

How to run an HTA as another user via VBS

I am trying to launch a HTA, via VBS script with my domain account (and have it prompt me for The script and hta will be in the same directory on a flash drive, so the code has to point to the ...
1
vote
2answers
71 views

How do Loop this command?

I'm new to this community and new to coding. I'm trying to figure out if there is a way to repeat a command like this CMD /k Taskkill /IM A.exe /F CMD /k Taskkill /IM B.exe /F CMD /k Taskkill ...
0
votes
1answer
186 views

Is there a way to move down one directory in ms-dos(cmd)?

Is there a way to move down one directory using ms-dos? i.e scripts and batch files. Like i know you can move up one directory using ..\ but i need to move down one directory without knowing the name ...
0
votes
1answer
139 views

Compiling multiple files in a single directory separately with CSC

I have multiple C# sources files (around 50) in a directory. What I want to do is to compile all of them separately, i.e. so that each of them should generate its own executable file. (Some of the ...
2
votes
1answer
50 views

step by step / quickest way to script to to remotely execute files

Hello i have 3 networked machine with a shared folder, i need a script on one of the machines to run a files on all 3 computers at the same time. What is the best way to approach this?
1
vote
1answer
179 views

Running a python script on C# not working

I have this code that I'm trying to run a Python script. It works correctly when I do it manually via the command prompt but if I try to do it via a button click in a C# Windows form it doesn't work. ...
1
vote
1answer
71 views

To build a script from Eclipse to run commands in cmd

I am using a set of commands to build my project in a expanded mode to deploy it in weblogic so each time i need to go to cmd and change directory to my project directory and run the command 'client ...
1
vote
2answers
116 views

Windows CMD checking variable if it has only capitals

I've got a variable and I need to check if it has only captials. For Example: ABCDEF should match But ABcdef shouldn't How can I do it?
0
votes
1answer
210 views

How can I monitor a log file for file size changes with a batch script?

I am trying to figure out a way to monitor a log file via a script that gets kicked off by task scheduler. So ideally, what I want to happen, is for the script to check the file size, compare it with ...
2
votes
0answers
129 views

Script to remove multiple registry keys for graphics adapter

The goal is to create a batch file which will remove registry entries for multiple versions of a graphics card driver. It should search the HKLM\System\CurrentControlSet\Control\Video registry key and ...
3
votes
1answer
753 views

Batch Script to Extract Email Addresses From Target Folder/File

Program: Command Prompt (CMD) batch script I have a folder filled with lots of files. Within those files are lots of email addresses mixed with other misc. text junk. I'd like a way to extract these ...
0
votes
1answer
54 views

Open new prompts to run binaries in python

I want my python script to run several other executables (all of which run on the windows cmd). I'm currently using subprocess.Popen(content) But this will open all the executables on the same ...
0
votes
1answer
759 views

how do I make the txt output from a .cmd file contain the current date and time in the filename?

I have a script that scans computers for a certain registry entry. I want to make it to where after the scan the text file that is created, to include the date and time of day as part of the filename ...
1
vote
1answer
247 views

Simple CMD argument throught VBScript

Its been a while... I have the command line arg: xml sel -t -v "computer/general/name" nsk1501901173m.xml > test.txt that produces the results I want in the text document specified but I need ...
2
votes
1answer
271 views

The syntax of the command is incorrect TYPE command

I am trying to run a script that fails. I have isolated the problem to a simple TYPE command. Here is the code IF NOT [%1]==[] ECHO Appending this log to %1 IF NOT [%1]==[] TYPE C:\test.log >> ...
-1
votes
3answers
965 views

Run batch scripts in parallel [duplicate]

Possible Duplicate: How to run multiple DOS commands in parallel? I want to run a batch script in parallel, for instance run: net start X net start Y I want them to be run in parallel ...

1 2