Script files that are executed by the Windows command-line interpreter.
0
votes
0answers
7 views
Executing cmd command using Maven
I want to execute this command:
zipalign [-f] [-v] <alignment> infile.apk outfile.apk
Using Maven. I have to execute this command in the Android SDK/ tools directory. Can anyone help me on ...
0
votes
1answer
13 views
How do I find and read lines from text files? Batch
I need some thing read in a text file that goes as follows:
Nicholas password1
Micheal password2
myname password3
I want the batch file to detect if the variable %fname% (Nicholas) exists.
...
0
votes
1answer
26 views
Error Calling powershell script from batch file in separate directory
I have the following .ps1 for unzipping a zip file...
param([string]$path)
$shell=new-object -com shell.application
$Location=$shell.namespace($path)
$ZipFiles = get-childitem *.zip
get-childitem ...
0
votes
1answer
18 views
svn diff issue in windows
I have written a batch scrip to do the diff between two revisions using windows command line svn. The dir name is having a space ( I am cursing the developer for creating a dir name with a space).
...
0
votes
0answers
20 views
Small tool to edit app settings
I need to small tool in Windows environment to change an entry in appsettings.config.
It can be a cmd tool which I can write a batch file on it.
Does anyone have a clue?
Thanks
-1
votes
1answer
28 views
How to remove a linebreak in a text file VBScript
I have numerous CSV files and they don't import correctly to excel, im just asking is there a way to remove the line breaks at the end of the strLine using VBScript?
3
votes
4answers
42 views
Windows batch script help for checking last line of the file
I have a few hundred files,most of which contains 'exit' at the end(the end line).Not all of the files have this 'exit' at the end.How can I check the content of last line of the files and then remove ...
1
vote
1answer
19 views
batch script to read text seperated by delimiter
I have a text file which contains a list of URLs seperated by comma.
e.g. URL1,URL2,URL3 etc.
I have a batch script which just launches the url in the text file.
for /f "delims=," %%a in ...
1
vote
1answer
36 views
Psexec batch file running on large network
I'm trying to run a batch file that will connect to the list of ip's on my network, open up cmd then run a list of commands: like ipconfig /all, nbstat -c, arp -a. Then it must save the results into a ...
-1
votes
0answers
53 views
“Press Any key to Continue..” in batch programs
I am working in Batch Programs. I am doing a Insert into oracle table with "BLOB" parameter.
Here is my code
drop directory dir_temp;
create or replace directory dir_temp as 'F:\Test';
DECLARE
...
0
votes
3answers
20 views
batch command input menu
i have a question . It is possible to make a batch menu to accept multiple commands at the same time?
Example : ( my code )
@ECHO OFF
set tries=6
:top
cls
set /a tries=%tries% -1
if %tries%==0 (
...
4
votes
0answers
27 views
Make a batch login/register system? Code to it?
I am trying to make this advanced batch-file which has a role of a simple login system, that means that you can register in this batch file, and your data is exported to another batch file, under ...
0
votes
2answers
43 views
windows 7 batch script- if statement not working
cd C:\Users\user1\Desktop
if "%time:~0,1%" == " "
ren 85.txt %time:~1,1%.txt
else ren 85.txt %time:~o,1%.txt
pause
The script above is not working, but if I put the following line into file:
...
0
votes
2answers
30 views
How I can execute a Batch Command in C# directly?
hi i have a question to c# and batch files. I want do execute a batch command and save the output in a string in c#. but i can only execute the file but not save this content in a string and show this ...
1
vote
2answers
24 views
To delete folder starting with a same starting charecters in DOS
I need to delete folders in a folder in one shot, and this folders start with a common name, but does not end with. So any command with del/rm to do this? I tried with wildcards but that didn't work.
...
1
vote
2answers
17 views
Windows Batch script tp process flat files
I want some help in writing Windows Batch Script.
I have a Delimeted Text file with data as shown below:
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6
1|2|3|4|5|6.
I want to write a ...
1
vote
3answers
43 views
VBScript to loop through all files in a folder
I have the code to carry out the process on a single file, could anyone alter this script so it loops through all files in the directory "H:\Letter Display\Letters" with the file type ".LTR" and saves ...
1
vote
1answer
34 views
delete all folder except one using batch
I have a folder named Scripts in current directory Say C:\QTP\Script\. I am not sure the folders names and count in that scripts folder. Inside each unknown folder name i have Objective Evidences ...
0
votes
1answer
24 views
Sending a error message if folder not found
I have written a bat file for users to download a svn repository and finally open that folder using the start command. Here is how the script looks like:
@echo off
echo.
echo. [ SVN Updater ]
set ...
3
votes
1answer
40 views
Conditional Statements in Batch File
I have written an MS DOS batch file that runs a series of commands.
Each command invokes a program with some specific parameters. To automate this, I combined all the commands.
The structure of the ...
-2
votes
1answer
35 views
How do I restore a minimized batch script?
I have a batch script that I have minimized but at some point in the script I'd like to be able to restore the window
Can this be done?
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 ...
-1
votes
1answer
47 views
How to remove file extension from the filename?
I wrote some simple batch file that converts any audio/video files to .ogg (audio) format. For example music off youtube which is in .flv format. Here's the script:
set ogg_rate=1.3
set ...
1
vote
0answers
35 views
VBScript not fully working [closed]
I have an issue with a VBScript that only works sometimes. I execute the VBScript from a batch file that is being run every 6 hours from Task Scheduler. Here's the VBScript itself:
Set objFS = ...
0
votes
1answer
24 views
What of the vbs or batch is the best way to convert content of a file in uppercase?
I need to convert all content of a file in uppercase.
It's very simple to do that in VBScript
set fso=createobject("scripting.filesystemobject")
...
1
vote
1answer
19 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?
1
vote
0answers
25 views
Visual Studio Postbuildevent Batch
I hope someone got an idea for a little problem of mine...
I got the following Postbuild-event script in my visual-studio 2010 project:
copy "D:\Sources\Project/output\program.exe" ...
1
vote
1answer
28 views
Deploy SQL File from VSS to SQL Server using Batch File
I want to know if there is any way for me to deploy a stored procedure (sql file) that is checked-in at VSS? I have a couple of procedures that I want to deploy to SQL Server. I'm trying to create a ...
0
votes
2answers
26 views
Increase number in string in bat file?
How can I increment the value of an int in a string ?
Say I have foo-815-bar. I'd like to have foo-815-bar.
foo and bar can be constants (although if bar can be an unknown variable, it would be ...
0
votes
2answers
26 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, ...
1
vote
1answer
29 views
CScript:Timestamp since epoch in miliseconds?
I need to get the current time-stamp in mili-seconds since the Unix epoch.
I got
WScript.Echo DateDiff("s", "01/01/1970 00:00:00", Now())
from answer to this question:
Is there a way to get ...
0
votes
3answers
35 views
Windows equivalent to #!/usr/bin/php
I am trying to execute a php file from sos-berlin jobscheduler. My OS is windows 7. I am following the documentation
http://www.sos-berlin.com/mediawiki/index.php/How_to_execute_a_PHP_script_with_JS
...
0
votes
2answers
25 views
subprocess.call doesn't work as expected
I have the following batch file (test.bat)
my.py < commands.txt
my.py does the following:
import sys
print sys.stdin.readlines()
Everything works fine if I launch this batch file from ...
1
vote
1answer
26 views
Batch file parsing text file from UNIX
I'm attempting to write a batch file that backs up files from my Android phone to my computer. Part of this process is having my phone generate a file list as a text file using the android debug ...
0
votes
2answers
31 views
Batch file copy a specific line from conf file to another conf file
using batch file.
in between the <username>dynamic_username</username> tag of text1.conf is a dynamic username string. I want it to automatically be selected and copy it to the other file ...
0
votes
1answer
45 views
batch computer coding random game making
I am trying to make a randomized RPG type game using batch scripting. I had it all worked out but then the code got messed up. I have been looking around for a while and cant find what I need. I am ...
0
votes
1answer
25 views
removing nonalphabet characters in a filename
I have a bunch of files and I'd like to remove all the characters that are not in the alphabet. So given a filename of "Home - noises (f).txt" i want a result of "Home noises f.txt. the batch file ...
0
votes
4answers
57 views
Replace or delete certain characters from filenames of all files in a folder
How do I delete certain characters or replace certain characters with other characters by some batch file execution, for filenames of all files in a Windows folder in one go, is there a DOS command ...
0
votes
1answer
12 views
Batch script to change MD5 of all files in every folder
I am using this to change the MD5 of all .rar-files.
FOR %%a in (*.rar) do ECHO.>> %%a
The problem is: The *.bat has to be in the folder where the .rar-files are, but I want to put the *.bat ...
0
votes
2answers
40 views
Batch file that copy itself to folders in current directory?
The Scenario is this.
I have a batch file in I:\test.bat
In I drive, there are 3 folders. like this.
I:\folder1
I:\folder2
I:\folder2\folder3
Assume that I don't know the name of folder1, folder2, ...
2
votes
4answers
52 views
What does :: (double colon) mean in DOS batch files?
I found this program http://baiyunmanor.com/blog/work/get-current-date-time-in-dos-batch-file/
But I don't know what does the line
:: datetime.bat
at the end mean?
-5
votes
0answers
40 views
.bat file that copies a file in the same folder [closed]
My friends and I are at a LAN and are attempting to figure out how to write a .bat file that we can run on a friends computer that will create an infinite amount of copies of a file.
To clarify, we ...
2
votes
2answers
56 views
Create a Windows executable (.exe) from Batch and Vbscript
It is asked me to create a Windows executable (.exe) from scripts written in batch and vbscript. unluckily I don't know which tool use to realize that. Therefore Let me ask you some questions which ...
0
votes
3answers
43 views
editing .bat file to open folders
First, here is what I have:
%SystemRoot%\explorer.exe "X:\CNC\2_NewPrograms"
%SystemRoot%\explorer.exe "X:\PRINTS"
%SystemRoot%\explorer.exe "X:"
This opens up 3 folders that I regularly use. I ...
0
votes
1answer
21 views
I am not getting the out put file for the below sql batch file
@echo off
set sql_exe="C:\Program Files\MySQL\MySQL Server 5.1\bin\mysql.exe"
set sql_options=-user root -password amma
set sql_db="C:\Documents and Settings\All Users\Application Data\MySQL\MySQL ...
0
votes
1answer
20 views
How to get windows batch's parent folder
I'm writing a batch file, I need to get the parent folder of this bat file. Is it possibile?
NB I mean the parent folder of the batch file not of the current directory of the prompt calling that ...
-3
votes
0answers
66 views
Executing of batch file [duplicate]
I want to execute one command using batch file but non of below code is working where Please tell me where I am going wrong,
Following are codes for executing batch file,
First trial:-
...
-4
votes
0answers
42 views
How to create a batch file with a mysql query and generate the result in a report file [closed]
I need to create a batch file with a simple mysql query in it, and the query should get executed on running the batch file, and the result should get generated in report file in a specified path.
The ...
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 ...
1
vote
3answers
31 views
Understand how batch do when there is a goto command nested into a for loop
A very simple question to understand semantic of a batch running. please look at this piece of code
FOR /F %%x IN (file.txt) DO (
if /i "%~1"=="%%x" goto :label
if /i "%~1"=="%%xYZ" goto :label
)
...



