0
votes
1answer
31 views
Batch File to Delete Folders
I found some code to delete folders, in this case deleting all but 'n' # of folders.
I created 10 test folders, plus 1 that was already there. I want to delete all but 4.
The code …
2
votes
7answers
47 views
Resources to learn about batch files
Hello,
In my new projects I need to use batch files(many), but now I need to know about they and where can I read some good tutorials to use they very good ;)
PS: I need to distr …
1
vote
3answers
47 views
Translating a Windows batch file into a Linux shell script
I have a batch file that I use to check whether my sites react to a ping.
If a site doesn't react, the script writes the output into a text file.
I wanted to use the same kind of …
0
votes
1answer
20 views
Batch delayed expansion not working.
Ok, I'm getting crazy and I don't know what else to do, I've tried several things and nothing is working.
Look at this sample code (test.cmd):
setlocal enabledelayedexpansion ena …
1
vote
2answers
58 views
Batch Script issue
Hello, for deleting files, I will be using the code below to remove the oldest file in the directory and run it every day. It came from the question of mine.
Applying to the origi …
0
votes
1answer
40 views
complex batch replacement linux
I'm trying to do some batch replacement for/with a fairly complex pattern
So far I find the pattern as:
find '(' -name '*.php' -o -name '*.html' ')' -exec grep -i -n 'hello' {} + …
0
votes
0answers
38 views
Quickest way to scheduled file deletion on Windows [closed]
Hello,
I have a windows server machine that takes daily backup daily and each daily backup takes 1.5gb thus every night, I want to remove backup files that are older than 1 week.
…
0
votes
4answers
117 views
Why %processor_architecture% always returns x86 instead of AMD64
I am trying to retrieve the environment variable to detect whether the system is 32 or 64 bit.
But on 64 bit server the environment variable %processor_architecture% is returning x …
0
votes
2answers
25 views
Trying to store the out of a command to a variable and trying to match in batch file
I am trying to set variable to a registry path.
And then querying a registry and trying to match with the variable.If both are same then goto execute.
But for some reason Im gettin …
1
vote
3answers
96 views
How do I append to an environment variable in a batch file?
I don't know how to describe exactly what I'm trying to do but here's an example batch file that demonstrates what I can't figure out.:
I've got a batch file. Inside that batch f …
0
votes
1answer
29 views
Batch Size in web config for Nhibernate in ASP.NET MVC
How do I set the batch size for Nhibernate? I'd like to do this in the web.config. The examples I see, don't make a lot of sense to me.
In this example they are using code to se …
0
votes
5answers
90 views
Is it possible to put a new line character in an echo line in a batch file?
Is it possible to put a new line character in an echo line in a batch file?
Basically I want to be able to do the equivalent of:
echo Hello\nWorld
You can do this easily enough …
0
votes
2answers
41 views
Why is this variable appearing as undefined?
I have this code:
FOR %%d IN (c d e f g h i j k l m n o p q r s t u v w x y z) do (
IF NOT EXIST %%d:\ (
echo Free drive %%d
set D=%%d:
)
)
echo d=%D%
echo …
0
votes
4answers
59 views
Need help in finding the root cause in this wrong batch command
IF %processor_architecture% == AMD64 (SET querypath=hklm\software\x) ELSE (SET dsetquerypath=hklm\software\y)
FOR /F "tokens=* delims=\" %%G IN ('REG QUERY "%querypath%" 2^>NUL …
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 …
