Tagged Questions
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
3answers
32 views
Else command in batch running all at once?
I'm not sure why this is happening, but it seems like the else command in this batch script I'm working on is running all at once, instead of one line at a time. Any suggestions?
set ...
2
votes
2answers
32 views
Batch Script Input Problems
I have two questions regarding a batch script I'm working on. I realize that batch script questions are common but haven't found an answer to my exact question so I thought I'd try asking. The ...
1
vote
4answers
45 views
Batch file help please: If exist C:\Program Files\Adobe OR C:\Program Files (x86)\Adobe
How can I modify the following batch file to check both C:\Program Files\Adobe and C:\Program Files (x86)\Adobe?
This code only looks for C:\Program Files\Adobe
@echo off
if exist "C:\Program ...
1
vote
2answers
43 views
Why is my batch script running both if and else statement when if statement matches?
The batch script processes the else statement even though the if matches (and is processed as well). Why is this?
set getprocesslistlocal=wmic process get name,processid
echo Type the name of the ...
1
vote
4answers
38 views
How to do if A and B and C equal 1 in a Windows Batch File?
I am writing a batch file that needs to check if three variables are all equal to the same thing at the same time.
What I thought would work was this:
if %A% AND %B% AND %C% EQU 1 goto YES
It ...
0
votes
3answers
46 views
If command not executing despite the test being true
I'm currently making a program to use pre-set information stored in .txt files to alter what the program executes. I am, however, having a problem with the following code segment not functioning ...
1
vote
1answer
58 views
Batch script to check last reboot time with if else condition
I want to get few details from my server like the last reboot time using a batch file.
I am using the command
systeminfo | findstr "Time:"
to get the current up time of the server
now my issue is ...
0
votes
2answers
38 views
How can i make my batch file search for a file and run it?
So far, i have tried to make a batch file see if a file is there, and if yes, execute it. It works with default Microsoft programs (Word,Powerpoint,Windows Media Player...), but whenever i try to do ...
0
votes
3answers
60 views
Windows XP Batch IF & XCOPY
I've been struggling with trying to get the below (example) batch file to work on Windows XP SP3. The IF NOT EXIST part seems to work, but I keep receiving the "Does <path\filename.ext> specify ...
0
votes
2answers
120 views
Batch file to search for the existance of .odex file in android system/app
I am working on a large batch file and have a small section that I need help with. I want to do the following. For every *.apk in \mod folder search the phone /system/app for the the .odex version of ...
0
votes
1answer
72 views
bat: Listing empty directories, if/else statements within for statements?
I'm trying to write a script that lists every file name in a specified folder, and notifies the user if that folder is empty. So far I've got:
for /r "O:\Mail\5-Friday" %%d in (*.pdf) do (
dir ...
0
votes
2answers
33 views
Batch file complicated if sequence returns errors.
I am trying to have users login and when they do it sets their power or rank. The ranks are Admin User and Guest. I need to do the code below for every command in the program. It returns ) was not ...
0
votes
2answers
149 views
Batch File IF Else info
I am attempting to get my script to GOTO Manual if the criteria below is not met .
How ever if the get_info.bat fails and throws a error my script stops and just displays the batch file error ...
0
votes
3answers
34 views
(Batch) How can I use two variables to refer to another variable in an IF statement?
This is part of the code for a game I'm making.
:south
set "message=You take a step South"
set /a "posY=%posY%+1" //Moves player down one tile
if "%p%posX%%posY%%"=="#" set /a "posY=%posY%-1" ...
0
votes
1answer
32 views
Batch Comparative Statement breakdown
I have a selection menu that for some reason is breaking down. The code:
: uninstallerMenu
echo REMOVE ME! total items %count%
set uninstallNr=
set /P uninstallNr=Please select a number:
echo ...
0
votes
1answer
72 views
Test if a Reg Query is a specific value in a batch script
So without getting to convoluted, the gist of what I am trying to accomplish is that I currently am listing the results from a reg query by display name of programs, assigning a number to it, and then ...
0
votes
2answers
75 views
Batch File If Error
Ok so I am working on a project and I am doing this and I get to the if statement in confirmOne and it gives me "( was not expected at this time." Please help!
Many of the stray "You got to here!" ...
1
vote
1answer
78 views
Batch file: Check for program, restart, or do nothing
I'm struggling a bit with this. The idea of the script should be:
If program 1 is running
Close it then open it
If not running
Do nothing
This will be used on XP and win7 machines
Here's what I ...
0
votes
2answers
72 views
batch: if..then..else nested make me mad
I've wrote a subroutine with some if..else nested
Unfortunately i can't understand why my code are executed before and after the "ELSE" (!!)
I read it for hours, but i don't find any error.. can you ...
0
votes
1answer
147 views
batch file: if %variable% (commands)
i want to use my %variable% to manage the conditional clauses in a IF.. THEN.. ELSE in a batch file.
Something like the following:
set variable=%%homedrive%% EQU C:
if %variable% (
echo test ok
...
0
votes
3answers
171 views
Nested If Exist statements in Batch File
Ok, I'm trying to do a couple nested IF EXIST statements to check for the presense of a couple folders. If the first folder exists, set Folder1 to equal 1, and then skip to Install. Same with the ...
0
votes
4answers
576 views
Windows Batch check if variable starts with, ends with and contains a specific string
I'm trying to check if a variable in a batch file starts with " contains BETA somewhere and ends with ").
Is it possible?
And if yes, may somebody help me with that?
-1
votes
1answer
102 views
Batch file date check from multiple folders
I'm looking (if possible) for a check and copy batch script that I can run remotely to check multiple directories and copy the newest modified date.
To clarify: On the remote machine I'm looking at a ...
0
votes
2answers
71 views
How correctly use arithmetic and if-statements within a batch-file?
I've just started working on my first batch-file on windows, and i cant get this part through:
SET /p exp= "Enter Arthimetic Expression:"
SET /p ans1= "Enter Expression's Product:"
REM calculating ...
2
votes
1answer
205 views
Sheduled batch file backup
I'm abit stuck with this backup script I have been writing. The goal of the script is to:
Wake-up a sleeping PC on my LAN
Run Microsofts Synctoy(cmd version) to sync all of the paired folders that I ...
1
vote
1answer
40 views
IF statement not fired
I have small calcutations in dos .bat file:
FOR /F "tokens=1-3 delims=/-" %%A IN ("%tag%") DO (
SET Day=%%C
SET Month=%%B
SET /a Year=%%A - 2000
)
echo %Day%
echo %Month%
echo %Year%
echo ...
0
votes
3answers
150 views
check if command was successfull in a batch file
How within a batch file to check if command
start "" javaw -jar %~p0/example.jar
was successful or produced an error?
I want to use if/else statements to echo this info out.
2
votes
1answer
51 views
Comparison operator substitution for IF from FOR cycle in batch scripts
I would like to ask your help in a possibly simple situation (where the solution is yet unknown for me).
I am trying to provide a variable for the if command to make a bit more "dynamic" the code, ...
0
votes
1answer
114 views
I need help writing this batch script
I want to have this script execute another script if a file name starts with one thing, another if it starts with another thing, and to continue on through the rest of the code if it starts with ...
2
votes
3answers
157 views
Checking Time and executing different instrcutions based on hour
I am using a Robocopy command on a Windows Server 2003 server to copy a series of EDB files to special folders from user workstations onto a server. I want to run the robocopy commands twice, once in ...
1
vote
1answer
56 views
Batch If Else Statement Closes Window
I have setup a custom batch file to install a game server. But the issue is that it closes when you would supply a response. It use multiple IF statements.
set /P input6=Would you like a custom ...
2
votes
3answers
382 views
cmd: if exist A and B then
What is the simplest and/or most readable method to IF with AND in a CMD shell? In pseudo code:
IF EXIST file1 AND file2:
then do stuff
ELSE:
do something else
this Q has to be somewhere on ...
0
votes
1answer
64 views
How to use parentheses in batch after if statement?
I'm trying to create a simple number-guessing game with batch. However, I have never been able to use parentheses correctly. The code is:
@echo off
::This is a game that has you guess a random ...
1
vote
1answer
75 views
I dont know why my batch if and goto isnt working
I dont know why my batch if and goto isnt working
it works until the user has to pick a choice to run. The whole thing just shutsdown
Here is my script:
@Echo off
:Password
set input=
set b=
set ...
0
votes
2answers
59 views
cmd if script won't work
@echo off
pause
color 0a
mode 1000
set /p apps = where do you want to go to?
echo metrix = 1
echo nothing = 2
pause
if %apps% == 1 goto metrix
if %apps% == 2 goto nothing
:metrix
:start
echo ...
1
vote
1answer
249 views
Batch File Issue - Nested/Branched 'IF' Statement
I'm trying to get this to work but apparently Windows doesn't like it. Once it hits this segment of my batch file the .bat closes.
if %UserName% = Semedar (
if %UserName% 1394677 (
set ...
2
votes
1answer
209 views
Combining multiple .csv files into one .csv file line wise using a batch file
I have a situation where I need to combine four CSV files into one CSV file. This is easy if i just wanted to add them one after the other, but I need to get them to be side by side in the CSV file. ...
2
votes
3answers
336 views
Windows batch File - Can't set variable value
I'm writing a script that should empty the Recycle.Bin of all the devices / partitions attached to the computer.
It does this by testing the possible devices available (from a to z letter) excluding ...
1
vote
1answer
58 views
Setting variables in IF-statements (Batch)?
Ok i got this basic IF-statement. I want to set a user role, based on it's username. It does look like though, that the set statement never gets executed and therefore i got an empty echo.
if ...
0
votes
1answer
84 views
Abnormal behavior of batch script in If else condition
As a beginner in batch file programming, i have created a batch file. Below is the code snippet-
SET INDEX=1
SET CURRJOBS=10
REM TOTALJOBS and CURRJOBS are dynamic but to keep code here, i have put ...
2
votes
1answer
154 views
Error in batch file “..unexpected at this time batch file”
I have a code in a batch file which is giving an error:
56 was unexpected at this time
at if condition (if %fileSize% == 9363)
My code is:
for %%F in ("site_data.csv")
do set ...
0
votes
2answers
137 views
batch file if statement for removing/adding from registry
I am wondering if someone could tell me how to create a batch file that removes a key/value from the registry if it's there, and adds it if it's not?
0
votes
1answer
75 views
Using IF statement on multiple strings [Batch]
I am writing software to scan through predetermined services and start them if they are stopped. Unfortunately some of the service names have spaces so if i do this:
for %%a in ...
0
votes
1answer
89 views
Software installation script
I am having a problem with the following script, which we wish to use as part of a login script in order to check if software has been installed, and if not, install it:
:STEP1
for /f "delims= " %%a ...
1
vote
2answers
86 views
Using IF Statement in a Batch Script
I'm new to Batch Programming.I'm trying to use an IF Condition in one of my Batch Script.The Code looks like this.
:rmfile
:: removes the file based on it's age.
::
SETLOCAL
set ...
0
votes
1answer
212 views
If statement in Batch file gives error
The below simple steps in the batch script is giving me errors. It says
'else' is not recognized as an internal or external command,
operable program or batch file.
) was unexpected at this time.
...
0
votes
0answers
69 views
Batch script to capture ora error [closed]
Need help to create a batch script in below logic:
::This section generates xx.sql,yy.sql & yy.sql generates spool generating XX.txt, YY.txt & DD.txt respectively though Oracle SID connection ...
0
votes
1answer
491 views
assinging `grep “string”|wc -l` into a variable in batch scripting
I am trying to develop a batch equivalent (windows) code of below unix script:-
i=`grep "ora-error" *.txt|wc -l`
if [ i -gt 0 ]; then
echo "true"
else
echo "false"
fi
tried with "find /c ...
0
votes
1answer
108 views
If else batch command with ipconfig
I'm having trouble with using an if else statement in a batch command. I'm running Windows XP. I wrote a simple batch file to output my ip address which works fine. However, I would like to include ...

