1
vote
0answers
13 views

Automate Software Updates from batch

Can someone please help me figure out the code for Windows batch file that will look a the properties of executables or installers in a directory, determine the version of the installer and the name ...
0
votes
1answer
19 views

Remove Directory Command is not working as expected

I have following batch script. It takes data from C:\Source into C:\MyTEST\A\webroot\payrollservice.The source folder has two files 1. Web.config and 2. Web_PROD backup. In the roll script there is a ...
0
votes
3answers
28 views

Storing results of multiple commands in a single file

I have a batch file with two commands as listed below. ping google.com > C:\Test\logfile.txt ping yahoo.com > C:\Test\logfile.txt When I run it (in Windows XP), only the result for the ...
1
vote
1answer
23 views

How do I set the timezone from command line ?

How can I set the timezone in Windows from command line or from a batch file? Do I need to use powershell or cscript?
0
votes
2answers
56 views

Searching for files in directory by DATE using cmd [closed]

I want to create a bat file that copies all jpeg image files created on a specific date - eg 2013/05/05. It will go something like this: xcopy g:\DCIM\images\'command for date'*.jpg ...
0
votes
2answers
21 views

Batch start command not opening program

When I enter the following from a command prompt: start myprog.exe It opens the program in a command window, but it doesn't start the actual program itself. Does anyone know what I'm doing wrong ...
0
votes
1answer
45 views

how to stop running programs on windows 7 with batch commands

Can any body tell me how to stop (few) selected running program/software using batch file (.bat) in windows 7 64bit? My requirement is simple : I've set utorrent and few download manager program to ...
0
votes
1answer
53 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
37 views

Setup environment using batch file for DotNet Framwork 4.0 Command line for easy way around

I have .net framework 4.0 (and older versions)installed, want to use the command line compiler for C# csc.exe Now I found across few forums using the direct path I can use the compiler, also ...
0
votes
2answers
52 views

Batch script not running just stops at cd of folder when trying to modify multiplue files

I have a script in my main script but this section will not function correctly you can download the full thing here with the changes i am working on and cant seemt to get to work when in theory they ...
0
votes
1answer
55 views

batch file that opens cmd prompt types string as command line

I got my batch file to open cmd prompt and change directory successfully, however what I cannot get to work is after the directory has changed I want the batch to then to enter a string as a command. ...
0
votes
2answers
53 views

Explain batch command please

I want to create a folder with the name of the current date and time. After searching a lot i found this which actually works. Can someone explain what these batch commands do? set ...
-3
votes
2answers
109 views

How to login website with username and password using windows (XP) batch script [closed]

I am able to connect website using batch file but I don't know how to insert username & password into it and of course a click on submit button. Also i would like to know how to click buttons ...
0
votes
1answer
42 views

How to use JpegTran to recursively process all images, overwriting them, in a directory using Windows?

Right now I have the following batch file that I use to process my images: @echo none cd %1 md "%~1\ProcessedJPEGS" for %%i in (*.jpg) do "C:\Program Files\Image Optimization\jpegtran.exe" ...
1
vote
1answer
49 views

Display file contents

I am trying to display a full textfile in a batch file, but when I do it like this, it opens notepad. @echo off call YourText.txt pause >nul exit I also tried @echo off more < YourText.txt ...
2
votes
0answers
110 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 ...
1
vote
1answer
41 views

command line tool for export data from server to server

In SqlServer Management Studio, if we click on data database there is menu task > export data. This help me to export this database to another server. However, I need to run this wizard to complete ...
1
vote
3answers
72 views

Windows Command line script decrementing variables in FOR loop based on a user defined starting variable

I'm trying to write what seemed like an easy script but I can't figure it out. Basically, a user is asked Question 1: "How many (in this case) video files they want to add together to create 1 big ...
0
votes
1answer
64 views

Windows batch combining coffee-script, copy and uglyify

So im trying to write a nice batch file to combine my javascript libraries, combine and compile my .coffee files, combine the both results and then minify it with uglyify. However im running into some ...
0
votes
2answers
46 views

Pass a parameterized folder name to command line

I use the following command-line: call run.bat TEST.properties In TEST.properties file I initialize the following parameter output.dir=C:/Test_Results I would like the 'Test_Results' to contain a ...
0
votes
1answer
185 views

Set Wallpaper directory using batch file

I am developing a simple application that downloads Desktop Wallpapers from server and saves the images in Wallpaper Downloads. I want to set this directory as my Wallpaper directory as we see in ...
-1
votes
1answer
36 views

How to run a script at the start of the visual studio command-line tool?

I am using visual studio 2010 I need a script that launches the visual studio console and executes some commands More specifically something like this: %comspec% /k ""C:\Program Files (x86)\Microsoft ...
0
votes
1answer
83 views

Error with FOR LOOP in BAT FILE (WINDOWS)

Here is a for loop in a bat file, this loop takes numbers 1 through 100 and uses the mod operator on each integer. Im having difficulty calculating the average after the loop ends? can someone help me ...
0
votes
2answers
103 views

Using a for loop in batch with modulus operator

for /L %%i in (1, 1, 100) do ( SET VAR=%%i %% 5 set /a CAL=%VAR% %% 5 echo %CAL% ) Hey guys here is the simple code above, im trying to take the index and use % 5 on each ...
1
vote
1answer
82 views

How to enter password that an external program asks from batch file

I'm writing a batch file to execute a program and do some requirements. After some steps, it asks me password. Here is the .bat file I'm executing from command prompt; C: cd "C:\PROGRAM FILES ...
0
votes
1answer
41 views

make a file that will run in cmd

is it possible to make a file that when double clicked, it will run "ping 8.8.8.8 -t" to Windows Command Prompt automatically. so dont need to "Windows+R > ping 8.8.8.8 -t > enter" to do that do i ...
0
votes
2answers
102 views

Command line: Create folders in subfolders with spaces

For a project I received 700 folders with names of institutions (containing spaces). The purpose is now to create subfolders in each of these folders. [institution folder]\Documents\ [institution ...
2
votes
5answers
74 views

Problems using the operator “+=” in batch file

Ok It's simple. I just want to add 1 to a number every time trought the use of += operator! So i go in prompt just like this: C:\Users\fsilveira>SET teste=000007 C:\Users\fsilveira>ECHO ...
0
votes
1answer
30 views

Search Files of a directory in another directory

Things Required Step-By Step: List all files/items in Directory/Sub-Directory.(e.g. List files/items of DirA) Search All Listed Files in another Directory (e.g. Search files/items of DirA in DirB) ...
0
votes
1answer
63 views

Copying a folder, but excluding specified sub-directories

I need help with copying a folder, but doesn't copy sub-folders with the names that are specified in a text file. The text file is located: U:\Directory\Directory\Textfile.txt I need to copy ...
0
votes
2answers
106 views

Batch file: How to save/use subdir-name when iterating thru directories with FOR /R {directory} in (.fileext)

I'm trying to unrar files with a batchscript. I want to iterate thru a folder and its subfolders and whenever there is a .rar file I want it to rar its content into the same folder as the .rar file is ...
2
votes
1answer
129 views

Delete file longer then 30 days old for long path and long file name

I tried to make batch file in windows by using task schedule once a month to find *.bak. With condition more then 30 old. I create two condition full path name and non-8dot3 path name. For those ...
0
votes
1answer
25 views

batchfiles eclipse main application external tools

I am working with Lejos and java Eclipse on Windows 7. As my machine is 64 bit it will not allow me run the standard Lejos driver as an Eclipse plugin I installed it as an external tool . I followed ...
0
votes
2answers
218 views

How to Delete All files But Excluding Specific Files (Batch File)

I know there are questions here like this before but in my case there are special conditions in specifying the files to be excluded in the "delete" operation. Filename examples: A_001.xml A_002.xml ...
0
votes
2answers
115 views

Can we Fetch/Scrape particular data from html site into Batch to do following?

Awesome work guys by guys in this post on this site. But I need modifying this script according to my needs. I am not hardcore coder but with little help I can get it working. I have website it ...
0
votes
1answer
300 views

batch file to execute a command on all files in multiple directories

I would like to make a batch file that runs this command: C:\Program Files (x86)\IrfanView\i_view32.exe" "C:\Users\digi_admin\TIFFs\ OLD DIRECTORY\*.tif" /ini="C:\Users\digi_admin\Documents\" ...
0
votes
3answers
181 views

How to delete first 7 characters of folder name by using batch script?

I did do research but I could not figure out, sorry! Google can only help me to add characters but not delete characters... say under the dir E:\Movies\2011\ there are several folders e.g. [0603] ...
0
votes
1answer
35 views

A script with a variable that references a sym links, but I need to move/rename the source file

we are trying to design a windows command line script that will move and rename a source file when the script is triggered by an application at the end of a transcode job. The first part of the ...
4
votes
3answers
61 views

How is it possible to view windows environment variable without executing arguments within it?

Basically I would like to export my exact PATH variable to a file automatically. It contains things like %ANT_HOME%/bin and I would like to keep it that way. From what I could find, using both set and ...
0
votes
2answers
306 views

Command Prompt making a Username and Password

i have tried this, but it keeps returning an error saying the syntax of the command is incorrect. Here is the code i tried: @echo off echo Enter Username and Password to view files set /p user=Enter ...
0
votes
1answer
46 views

Batch File Replace Extracted File

I have a .bat file that unzips a kml from a kmz. If I run the batch file again it prompts me if I want to replace the file. Is there away I can have it always replace the file without prompting the ...
0
votes
2answers
38 views

How to detect error if archive of jar file failed?

I'm facing a problem where %errorlevel% return value of 0 even when archive of jar files failed. What I'm trying to achieve is to archive log files in production environment. I use ROBOCOPY command ...
1
vote
3answers
56 views

DOS work-around for the “&” character? [duplicate]

DOS doesn't seem to deal well with the "&" character in a string. I'm trying to parse url's, many of which have one or more &'s. If I do something like: set var = ...
1
vote
2answers
169 views

Windows Batch error: “'ping' is not recognized as an internal or external command operable program or batch file.”

I am trying to run this command in windows: ping -n 5 127.0.0.1 > nul I get the error: 'ping' is not recognized as an internal or external command operable program or batch fie. Why can't ...
0
votes
1answer
43 views

Populating empty folders recursively with Windows

I have a huge series of folders, named 'A' through 'Z' such that each folder has subfolders in the same form. For example, I could have a directory at this path: .\A\D\E I want to populate each of ...
0
votes
1answer
46 views

Is it possible to move the command prompt to a certain position on the screen?

As the title says, is it possible? I've searched all over the internet in order to find it, but whatever variation of my search query I come up with, I end up getting results which are about the move ...
1
vote
4answers
101 views

Windows console width in environment variable

How can I get the current width of the windows console in an environment variable within a batch file?
0
votes
1answer
135 views

How to reset environment after running vcvars32.bat

I'm writing a batch file to run some builds using Visual C++. I would like to "undo" the vsvars32.bat/vcvarsXX.bat changes at the end of the script so that I leave the environment unchanged from ...
2
votes
2answers
264 views

Script to batch rename to retain only some characters of original filename?

I need to rename thousands of rar files with original filenames of variable sizes. I must make them 10 characters long by keeping the first 3 and the last 4 characters of the original filename and ...
0
votes
2answers
431 views

I can't auto answer yes in batch file

I create batch file like this in Windows7 but it can't delete file. echo y | DEL autorun.inf echo y | DEL autorun.ini when I run this code it show like this but not delete any file. N:>echo y ...

1 2 3 4 5 10