Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
44 views

Batch Scripting Adventure

Here is my batch script file. There are 2 scenarios Scenario 1 @echo off set name= set /P TypeName=Name: %=% if %TypeName% == "abcd" goto correctName else goto wrongName :correctName echo ...
2
votes
2answers
45 views

Why does this .bat cmd always hit a sub routine which i do not intend for it to hit

i have the following in a bat file: @echo off Set /P _environment = Please Enter Environment [d] for Development or [a] for Acceptance: IF ((%_environment% EQU "a") OR (%_environment% EQU "d")) ...
2
votes
1answer
72 views

Batch: how do you bulk rename files (getting close)?

I've seen people do this in Perl, but I'm wondering if there's a way to do it via batch? It's built into Windows, so I think it would be more useful to know how to do this with a batch script. It ...
2
votes
2answers
328 views

Batch Script - Create user in Windows XP programmatically

Is there a way to create a user in Windows XP via Batch Script and even assign it administrator/limited user value?
2
votes
1answer
280 views

sqlcmd - How to get around column length limit without empty spaces?

I'm trying to use sqlcmd on a windows machine running SQL Server 2005 to write a query to a csv file. The command line options we typically use are: -l 60 -t 300 -r 1 -b -W -h -1 However, the ...
1
vote
4answers
34 views

Batch file add/remove hosts file entries syntax error

The following script is supposed to manage adding and removing entries into the hosts file. Entries with .dev are supposed to point to localhost and all others should prompt for an IP address. If the ...
1
vote
2answers
43 views

Comparing a modified file date with the current date in a batch file

Hi guys this is my first time posting a question so go easy on me :) Im required to write a batch file to do a few things, however writing batch scripts is very new to me, and apart from searching ...
1
vote
2answers
55 views

Batch: start application doesn't show a GUI

I try to launch a self written autoit application called "KeyShortcuts.exe" using a batch called "launchMacros.bat". This applications provides keyboard shortcuts for various things and includes a GUI ...
1
vote
1answer
20 views

How can I set a Variable in For-Loop in a batchscript

I am looking for an solution for a trivial problem, i can't get solved. Please help me with that. My plan is to read 2 files. one of them is an folder structur the other is a user list. if the folder ...
1
vote
1answer
20 views

Connecting oracle through Batch

I am trying to connect to oracle and execute one query I have created abc.BAT @ECHO off sqlplus -S scott/tiger@orcl ECHO SPOOL text.out select * from emp; ECHO SPOOL OFF But i am ...
1
vote
3answers
37 views

Run mysql script by batch script

I've searched for hours, there are many posts or tutorials but I couldn't run my batch script. on dos prompt this code works fine: -u root -h localhost -p******** siir_07 dumper.sql but this gives ...
1
vote
1answer
123 views

Batch script for hiding desktop icons

I'm trying to make a script that hides some icons on desktop. When I run it line by line in command promt it works, but when I run the *.bat file in cmd it says "attributesi was unexpected at this ...
1
vote
0answers
94 views

Avoid Windows security warning

I wrote some very simple bat scripts that just call a ffmpeg command with some parameters. When I run them from a command line prompt, it just runs without asking anything. But when I try to call ...
1
vote
3answers
42 views

What is the scripting language for WinNT environment?

I understand that a Batch Script is what you call a script made in the WinNT environment, but a batch script is also a general term for a type of script that performs a batch operation in any ...
1
vote
1answer
66 views

Batch script file to convert every file in every folder one at a time

What im trying to do is convert .ogg files stored in many different folders. What i NEED the batch script to do is go from the first folder and file , convert it and only then move on to the next file ...
1
vote
2answers
140 views

execute a java program through batch script

I have a java class "Test.java" which contains certain code. public class Test { public static void main(String[] args) throws Exception { testMount(); } public static void testMount() throws ...
0
votes
0answers
21 views

Error while getting Svn Log output in Windows

I want to get the svn log output in xml format only for the changes that have been done since yesterday.The below mentioned code is running fine when i remove the date clause after the log command. ...
0
votes
1answer
47 views

Using a batch file to extract text from one file into a new one

I have a folder with over 100 files, in these files contain text. I'm using this .bat code to extract certain text into another text file. SETLOCAL (FOR /L %%i IN (1,1,3) DO SET /P line=) < ...
0
votes
0answers
20 views

How to rename and move dynamic files to new directory

Can anyone provide a windows batch script to move and rename a dynamic file that comes into current directory and then move to the new archive directory and rename it? The file has fixed prefix, ...
0
votes
1answer
25 views

How to make batch file continue running when the triggered exe crashes

I have a batch script that triggers an exe (c++ code) with command line input in a loop. The code for this is something like this: for /f %%j in (file.txt) do ( "MyExe.exe" "input\MyInput_%%j.txt" ) ...
0
votes
2answers
50 views

batch file to get and store the svn log in local directory

The batch file i intend to use should actually produce the svnlog in XML format in my C:\ drive. But it shows an error that: The filename,directory name, or volume label syntax is incorrect My ...
0
votes
3answers
77 views

Change Output Of PAUSE Command In Batch File

I was wondering whether there's any way to change the output of the PAUSE command when creating batch file code? By default the PAUSE command will pause the script and wait for the user to press a ...
0
votes
0answers
30 views

To search for a file at FTP

I want to find if a file exists at FTP using if-exist filename -else statement using FTP batch script which is as follows: ftp.txt open ftp.mysite.com ftp.txt username ftp.txt password ftp.txt if ...
0
votes
1answer
24 views

Basic Batch File Doesn't Work

As far as I can tell this is perfectly valid batch-file code, just a very simple echo command, but everytime I run it, it does nothing - it doesn't echo the text to any window at all. @echo off ECHO ...
0
votes
2answers
34 views

Batch script to check for disk space

i need your help in putting together a batch script to monitor disk space on the logical drives and email if any of the drive crosses the threshold set. I am unable to iterate and perform the ...
0
votes
3answers
92 views

Need help fo finish Batch script?

I would appreciate any help how to start or anything. I just found out that there is a tool 'ImageMagick' who can command-line Auto resize images. Based on that knowledge I think that is smarter to ...
0
votes
3answers
81 views

Linux Delete Files Batch Script

I have a list of file names of files i need to delete. Is there a way to write a batch file that i can specify Linux to delete these files with the given names?
0
votes
1answer
18 views

How to use a batch command to copy all folders to a destination location

I have the following line in a bat file: xcopy script_temp\* \\CHU-Computer-Science\CHU\scripts\ /S /E /H however, this will only copy files, how can i also have it copy the folder?
0
votes
2answers
60 views

Batch file - get and parse CMD output string

I never write a batch file, and now I have to write a batch file that runs a command line and parse its output. (e.g: CMD: Diskpart List volume, Output: list of volumes and the free space, I want to ...
0
votes
1answer
38 views

Command to check the number of pages passed to the printer

I have a batch file that prints a bunch of PDFs, and I want to be able to iterate a command over the amount of pages that the print job has sent to the printer. Is there a CMD command to pull the ...
0
votes
1answer
59 views

Access properties of a file at FTP server

I want to access properties of a file named AH_store_20120117_00432.csv at ftp server with url ftp.mysite.com. Properties such as last modified date/time,size, etc. I am accessing ftp server from ...
0
votes
2answers
23 views

can we redirect output of a batch file to a pdf file

Is it possible to redirect the output of a batch file to a pdf file? I have a batch file that runs "ss diff" (source safe command to get the differences) on all the files in a project. Right now, it ...
0
votes
0answers
39 views

Access cache from batch file in Symfony 1.4

I'm trying to access the cache from a batch file in Symfony 1.4. //lib/batch/test.php require_once(dirname(__FILE__).'/../../config/ProjectConfiguration.class.php'); $configuration = ...
0
votes
2answers
27 views

Pass keystrokes through batch

I am calling a URL using batch. In that url, I want to insert login details through batch only. For example, "start iexplore http://www.mypage.com" this cmd I have used to open mypage, now I want ...
0
votes
3answers
103 views

Redirect output of batch command to an if statement (and string error?)

After a bit of research I've found what looks to be a good work around for getting the output of a batch command and setting it to a variable. I've used a bit of example code from a blog: Just Geeks ...
0
votes
1answer
154 views

Batch Script - Count instances of a character in a file

Using a batch script (.bat file) in windows xp, how would I go about reading a text file and finding how many instances of a character exists? For example, I have a string with the following: ...
0
votes
1answer
69 views

Batch file: If I know what folder name starts with, but not the whole name, how to get into the folder

I was trying to make a batch file to do xcopy from one location to the other, for around 50 folders. lets say the folders are named like: Folder1: 1abc Folder2: 2qer Folder3: 3asd Folder4: 4jfd ... ...
0
votes
1answer
87 views

Batch Script Removing characters from a variable inside a FOR loop

SETLOCAL ENABLEDELAYEDEXPANSION FOR %%A IN (*.*) DO ( SET var=%%A ECHO !var:~0,-4! ) Since we're iterating the variable within the FOR loop, you have to use ! around the variable, however, in ...
0
votes
3answers
64 views

Introduction to batch scripting

This is my shell script echo "Name" read name if [ "$name" == "abcd" ]; then echo "correct name" else echo "wrong name" fi echo "Password" read password if [ "$password" == "pwd" ]; then ...
0
votes
2answers
387 views

SETLOCAL and ENABLEDELAYEDEXPANSION usage question

I notice in most scripts, the two are usually in the same line as so: SETLOCAL ENABLEDELAYEDEXPANSION Are the two in fact separate commands and can be written on separate lines? Will setting ...
0
votes
2answers
128 views

Simple Batch Search & Replace Script

I'm short on time and am looking to create a very simple batch script that will: 1) Rename a string within another file in the same directory (name of file is known) Example: Replace ...
-1
votes
0answers
38 views

Cannot get this bat file correct

Background info. this is in a Windows environment data on the customers pc is encrypted I have the encryption key etc etc....I open this batch from from another one so this runs as myself Also I ...
-1
votes
5answers
102 views

Error while executing java code in batch script

Here is my batch script to execute a java code- @echo off @setlocal set JARS=log4j.jar;commons-logging-1.0.4.jar set abc="JAVA_HOME\bin\java" -cp %JARS%; "C:\Documents and ...
-2
votes
1answer
66 views

running batch file from html page hosted in iis [closed]

Is there any better solution to run batch file from client browser and the html file hosted on IIS? I'm just referring to this forum I'm also fine with server side solution using ASP.Net. Thanks for ...
-4
votes
0answers
39 views

Simple batch script to move my yesterday's file from remote to local directory [closed]

I need a batch script to move yesterday generated files from FTP to local directory. My files name is in the following format: TK_dy_ddmmyy.txt.