0
votes
2answers
47 views
Why has my PHP system() command stopped returning output to my scripts … i used to work!
I have a PHP script that calls a .bat file using system(). The output is written to the screen and I derive some values from parsing this output. This is running on windows 2003 II …
0
votes
1answer
17 views
How do I get each comp result ?
I would like to check diffs and when files are not same,stop compare files.
Compare any files C:/UML/reports/* and C:/UML/Test/*.
In this two directory has same file names and also …
0
votes
2answers
51 views
Help on getting started with powershell - rewrite an old BAT + SQL file
Hi,
I'm totally new to powershell, and I need some help to get started.
What I need is to write a small script that backup a SQL database, but every time with different name (to ke …
10
votes
41answers
1k views
Favourite command line trick
bash, bat, whatever...
What is your favourite command line hyperproductivity trick?
1
vote
7answers
499 views
How long a Batch file takes to execute
I'm wonderin' how I can write a script to calculate the time the script took to complete.
I thought this would be the case, but obviously not..
@echo off
set starttime=%time%
set …
1
vote
6answers
2k views
Batch script to copy newest file
I need to copy the newest file in a directory to a new location. So far I've found resources on the forfiles command, a date-related question here, and another related question. I' …
0
votes
2answers
44 views
Passing a shortcut to a batch script
My bat script accepts a filepath as a parameter, which allows me to drag-and-drop a file onto it from Explorer. Unfortunately when I drop a shortcut onto it, I simply get the filep …
0
votes
1answer
79 views
How do I write a batch file to uninstall an application and install a new version of it?
I am using a CAD application which will have monthly updates. For updating, we need to uninstall the current version and install new version which will come with the new patch.
C …
1
vote
5answers
432 views
How can I move files to the Recycle Bin in a Windows batch script or Perl?
I've got a Windows XP batch script which cleans some directories, but I would like to move the deleted files to trash instead of using plain del. How is this done?
It looks like t …
1
vote
2answers
91 views
BAT file to read and copy bottom 16 lines from a text file to another one?
I need to copy the bottom 16 lines from a text file to another text file. I need to do this procedure for all clients. At the client's location the text file will be common but the …
0
votes
2answers
47 views
Write batch file to read a number from a text file and execute the command with that number
I have a text file and a .bat file. Int the text file I have a list of workstation numbers like:
CG002681
CG002526
CG002527
CG002528
CG002529
CG002530
....
so I need to read thi …
0
votes
4answers
179 views
How to check a file every 1 minute in a windows bat script?
I want to write a bat script to check a text file (log). If the log is over 10M, I want to delete some portion of the file, only keep the last 500 lines, and delete all the old co …
0
votes
3answers
161 views
how to direct output into a txt file in bat script in windows
hi, all
in linux, let say i want to start tomcat, and want to direct all the console log into a text file, i can do write a bash script:
./startup.sh > output.txt
but in windows …
0
votes
3answers
243 views
How do I make a bitwise and in a bat-file?
I have tried with the following, but it just says "& was unexpected at this time."
@echo off
:enter-input
echo Please enter a number between 1 and 15:
echo 1 = Selection one
e …
0
votes
2answers
140 views
write to batch file to read text in a file and copy to other text file
I want read a text file on client workstation and copy that text to a text file with that workstation no. this process I need to do for 500+ workstations.
I am having a NOde licen …
