The batch tag is predominantly used for Windows batch file questions.
1
vote
0answers
73 views
Thy Dungeonman 3 using batch
I just started learning commands for batch files. I figured a project is a good way to learn the language better, so I'm attempting to recreate the text-based RPG, Thy Dungeonman 3.
So far, I've ...
0
votes
1answer
92 views
Ajax Done Callback to prevent requests from interrupting each other
I am trying to make sure my Ajax does not send another request before it receives a reply. To the best of my knowledge the code I will post is supposed to do this but I am still getting a -1 for ...
4
votes
1answer
90 views
Batch file command looper
Just a fun batch file I have made. I wanted an easy way to loop any arbitrary command several times: loopme.bat
...
3
votes
1answer
68 views
Batch file for looking through text files
I was creating a program and I was trying to explain it to some of my coding friends. They commented that it was too tedious typing out all the "if" commands. How do I streamline this code?
Note: ...
4
votes
1answer
157 views
Batch script to start the service in a gap of 10 min
I have created a batch script to start the services in a gap of 10 min. My batch file will start the service on the local system and then will wait for 10 mins and starts the service on another system ...
5
votes
1answer
165 views
Windows Batch Tech Tool
I made this to help new techs be more proficient while they are learning. I know most of it is common knowledge around here. I would also like to point out that I don't really know batch but I am ...
1
vote
2answers
403 views
Batch file to copy specific folders and to delete the folder which is not copied
This is the batch file I have created which copy the specific folders which I want. I use the specific server folder name of which I want to copy. This batch file will also delete the folder which you ...
1
vote
1answer
371 views
Batch file to zip logs date wise
This is the batch file I have created which zips the particular month logs and deletes those logs from the source folder after successful zipping. If it does not find the zip file, then it again ...
3
votes
2answers
492 views
Batch file to copy specific folders
This is the batch file i have created which copy the specific folders which I want. I use the specific server folder name of which I want to copy. Please suggest any improvements.
...
2
votes
1answer
55 views
Improving efficiency and flow by changing subroutine orders
A batch file executes WinSCP.exe's console mode to download files and log the actions. Upon exit, WinSCP returns:
ERRORLEVEL 0 if the files are successfully ...
3
votes
1answer
246 views
Checking for a date and compare 2 different files
From snippets around the web, I was able to put together this .bat file to check for a date and compare 2 different files.
This works below but I want to clean it up so it can be much lighter and ...
4
votes
2answers
68 views
Batch file-download script - is it necessary to re-phrase commands?
I run a script to download a file and unzip it. An import process then runs and leaves the files in their source location. I wrote the fully functioning code below to clean up that directory to be ...
3
votes
2answers
216 views
Msbuild batch - if any build fails than skip the last one
I have this batch that builds some projects using msbuild.
What I want to do is to skip building my-last.proj if any of the above builds fail: my-proj1.proj to my-proj5.proj using environment ...
6
votes
1answer
190 views
Making a .bat batch command-line interface
Recently I am working on batch to make a very simple command line interface.
The code looks like this:
...
8
votes
2answers
188 views
Batch-File FizzBuzz
I've never done a FizzBuzz before, so I decided I would. Please let me know what I could have done better. This is ran via a .bat file in Windows.
...
0
votes
2answers
510 views
Speed up SVN backup
The following batch script runs on a Scheduled Task on Windows 7 with a quad core 2.5GHz and 16GB of DDR3.
It makes the svn server unavailable for about 10 minutes, so it can produce a 500MB file, ...