Script files that are executed by the Windows command-line interpreter.

learn more… | top users | synonyms (8)

0
votes
0answers
2 views

Psfile batch file with psexec

I'm trying to run psfile and autorunsc in a batch file then use psexec to execute the commands over a list a hosts on the network. I have created a shared folder that the results can be stored too. ...
0
votes
0answers
9 views

View is not visible to readonly account users

I am the admin of one DB and i have created View in admin account using below code to know the status of running jobs. CREATE OR REPLACE VIEW CAF_DB_REFRESH AS SELECT * FROM ...
0
votes
1answer
29 views

Drive (C:/ D:/ E:/) Details in .bat Files

How can i get the drives Total Space and Available space by running an .bat file. In powershell script it is possible. But i should not use power shell. In the basic script programming i need to get ...
0
votes
0answers
9 views

batch file converted to .exe not running in xp - visual studio

I have created a batch file and then converted it to exe with the help of IEXPRESS. When i create a visual studiosetup and deployment project, my installer should call this exe. It works fine in ...
0
votes
2answers
18 views

batch- needs to get first element of file name and check part of property name existance

I have two requirements to achieve those are as follows. 1) I have couple of .xml files in a folder. The file names are like ...
1
vote
0answers
11 views

Error-handling in batch controlled ftp-transfer

I have a script for a customers of us, which transfers one or more files to a remote ftp server. @echo off @echo %DATE% %TIME% Starte FTP-Transfer. Bitte warten. >>C:\Users\xx\Desktop\log.txt ...
1
vote
1answer
17 views

How to write a batch file for svn commit and update

so far I have used Tortoise SVN to commit and update folders under version control. When I commit I check "all" in the GUI dialog so that deletions as well as additions are committed. Now I have more ...
-1
votes
2answers
24 views

PHP - Batch picture resize script to work with subfolders [closed]

I picked up following script to batch resize picture on my server. Worked great, but now i need it for a folder with pictures in subfolder. And i'm not very firm with this. ...
1
vote
0answers
54 views

Sorting and moving huge amount of files [closed]

Well, as I expected, not any of totalcomander and filezilla can sort files with a specific filenames. For example, I have about 40 000 + files, that has filename in this way: ...
0
votes
0answers
9 views

Can't execute the batch file using InvokeProcess

I am trying to execute a batch file, using Invoke process in my build definition. However the batch file is not executed in any case My build definition is compiliting a .sln file and in the ...
0
votes
2answers
31 views

How to get the path of a file in text

I have a variable set i = %1 %1 is d:\work\temp_h.txt I want to get a path "d:\work". If I use the below code I can get the name of path %%~nxi %%~nxi= temp_h.txt. How can I get the path of i ...
1
vote
3answers
33 views

Output all files inside Sub Folder: Absolute File Path

I am attempting to list the absolute path of all files inside a sub directory. I am able to find and output all files in that sub directory but the file path that I output is incorrect, ie one folder ...
1
vote
2answers
18 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
24 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
31 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 ...
1
vote
1answer
22 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
1answer
24 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
35 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
5answers
57 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
24 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
40 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
57 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
21 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
31 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
45 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
33 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
30 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
18 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
47 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
37 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
25 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
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, ...
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
38 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
28 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
27 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
32 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
46 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
59 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 ...

1 2 3 4 5 199