The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
48 views

Return error level Batch

I have this script and the script works fine. Except one part. I am trying to return the error level after each quey i do to determine my error level. I know i have syntacts that is wrong please help. ...
0
votes
0answers
55 views

Error level for averagePowerForChannel - iOS

Does anyone know what is the error in respect dB level measurement with averagePowerForChannel: method (AVAudioRecorder class) in iOS? I was looking for it on Apple Developer's site but I didn't find ...
0
votes
1answer
49 views

Mstest not setting the errorlevel correctly

I have a test project that builds fine. I am trying to run the tests using mstest. Here is the command I am executing: Command: echo mstest.exe /testcontainer:SecurityLogging.Tests\Logging.Tests.dll ...
0
votes
1answer
86 views

Jenkins “Batch-Build” fails every time

here is my configuration. -> sorry, is german... ( the batch thing is important ) http://www.abload.de/image.php?img=configurationknjkj.jpg And here is the result (console). ...
0
votes
1answer
65 views

Why is there difference between the errorlevels in these two cases?

Scenario 1: calc.exe is running taskkill /IM calc.exe /f | if "%ERRORLEVEL%"=="0" taskkill /IM calc.exe /f This sets 1 as the errorlevel. Scenario 2: calc.exe is not running taskkill /IM ...
0
votes
0answers
88 views

Access ERRORLEVEL environment variable within SQLCMD script?

Is it possible to access the environment variables in an SQLCMD script? I want to execute a command with !! and then test the ERRORLEVEL but I don't see how to get access to it. I tried testing ...
1
vote
2answers
97 views

Switch between two .reg files

I'm looking for a quick and easy way (I don't need any error checking) to switch between two reg files by opening a batch file. If a user runs a batch file, the batch file should merge reg file A to ...
2
votes
1answer
810 views

Batch programming setting ERRORLEVEL from failed FIND command

I have found the need to report an error level to a program that calls batch scripts. The script will create a CSV log file that I would like to check in order to display whether the script was run ...
0
votes
1answer
291 views

Does mysqldump return an error code I can utilize in a batch file?

Does mysqldump return error codes I can use on a Windows batch file with such code: if errorlevel 1 and so on? I would like to verify the success or failure of a backup. Thanks.
1
vote
1answer
89 views

How do you set a range of number as an errorlevel in batch?

I have this script in batch and got a range of questions 1 - 12. All my code works, but I just cant seem to find a code to throw into my batch to throw out an error message for invalid ranges selected ...
0
votes
1answer
409 views

What is the syntax for executing a Perl script and capturing its exit value in Windows batch script? [duplicate]

Possible Duplicate: How do I get the application exit code from a Windows command line? The Perl script that I'm calling inside batch returns a 1, 2, or 3. What's the syntax for calling ...
0
votes
3answers
604 views

Redirecting command-line output to keep error messages from showing in the command window

I'm testing the existence of a folder and depending on it's existence I want to run different commands: DIR %MYDIR%\tmp > test.txt IF ERRORLEVEL 1 ( echo/FOLDER DOES NOT EXIST ) else ( ...
0
votes
1answer
218 views

DOS Return ErrorLevel Without Running Program

I'm running Powershell commands thru a DOS prompt and I'd like to check if Powershell is installed first before I start running my commands. I'd like the script to exit if powershell doesn't exist ...
0
votes
1answer
404 views

Command prompt errorlevel issue after running sqlcmd

I include the code that I have a problem CALL:ECHOCOLOR "Executing on server:[S059D526\TCH] db:CS filename:[9990294_UPDATE_Concessions.sql]." Cyan SET CURRENT_SCRIPT="9990294_UPDATE_Concessions.sql" ...
0
votes
0answers
425 views

Autohotkey - ImageSearch

I m trying to test a GUI by comparing my current screen with an image of the required screen and seeing if they match. I m using ImageSearch of AutoHotKey for this. CoordMode, Pixel ...
2
votes
1answer
622 views

Running remotely Linux script from Windows and get execution result code

I have the current scenario to deal with: I have to schedule the backup of my company's Linux-based server (under Suse Linux) with ARCServe R15 (installed on Windows 2003R2SP2). I know I have the ...
0
votes
2answers
1k views

FTP server responses are sometimes undetected in batch

I'm running a batch file in Win2003 to transfer a file via FTP. The batch file pipes the FTP session results into a FIND to see if there's a 226 success message, and this works well. Unfortunately, ...
0
votes
2answers
186 views

How do I get the exit code via %errorlevel% , its not working anymore with assembly program

I want to get the exit code of my tutorial assembly program ( using masm32 and link). It was working fine, I would type echo %errorlevel% and it would display my exit code that I typed in after invoke ...
1
vote
1answer
556 views

Exit code “lost” from child process in Windows XP, not in Windows Server 2003

EDIT 3 OK, so it seems like this might not be an Installer issue after all. When I make a simple batch file: exit /b 12 and call it as cmd /c test.cmd echo %ERRORLEVEL% I get "12" on Windows ...
1
vote
2answers
868 views

Windows batch file all encompassing error levels

I have a batch file which just does a load of copy and xcopy commands, if any of them fail I need to jump out of the copying to a goto label, but it would be very inconvenient to have to check ...
6
votes
1answer
1k views

Powershell fails to return proper exit code

When executing a Powershell script (in 2.0) using the -File command line switch, and explicitly defining the input parameters in Param, the exit code is always "0" (never fails) instead of properly ...
0
votes
1answer
2k views

Batch file 'choice' command's errorlevel returns 0

I'm trying to create a batch file that performs different 'choice' command based on the version of Windows being executed on. The choice command's syntax is different between Windows 7 and Windows XP. ...
6
votes
1answer
405 views

Does Powershell forget to set ERRORLEVEL on parser errors?

In a command prompt, Try this out: powershell aaa echo ErrorLevel is %errorlevel% Powershell will fail (with an error). You will also see "ErrorLevel is 1". This is because it runs aaa as a ...
5
votes
2answers
595 views

How do I “map” certain return value of a script to “yellow” status in Jenkins?

In Jenkins there is a possibility to create free project which can contain a script execution. The build fails (becomes red) when the return level of the script is not 0. Is there a possibility to ...
0
votes
2answers
374 views

AutoHotKey PixelSearch and && (AND)

I need to write script like this: if (PixelSearch && (other)PixelSearch == true) { // code } So I need to use Errorlevel, but how use Errorlevel with 2 different PixelSearch? Please help!
3
votes
1answer
900 views

Detecting if a file is open in a batch file

Say I have a batch file for carrying out a long build and at the end it creates an EXE. If I forget to close the app down before I start the build, the link phase fails when it can't re-create the ...
2
votes
1answer
3k views

accessing ERRORLEVEL from bash script

I have an application that only works properly when called from a windows command prompt. Something to do with the input/output streams. So I can call it from a bash script by passing it as an ...
4
votes
1answer
286 views

How to use the return code of the first program in a pipe command line

I'm writing a simple program that parses the output from a compiler and reformats any error messages so that the IDE we use (visual studio) can parse them. We use nmake to build, and it will call the ...
2
votes
1answer
473 views

QProcess:exitCode() does not appear to return %errorlevel%

I am trying to catch specific error codes from a windows command line application run as a QProcess. I had an error today where the application fails: When run on the command line: echo %errorleve% ...
1
vote
1answer
712 views

Why does makensis.exe return errorlevel 1 even though it worked?

I have a NSIS script that works. It compiles, the produced installer works fine. And yet, makensis.exe returns 1 instead of 0. This is a real pain because I use it in a continuous integration setup ...
10
votes
2answers
5k views

Exiting batch with `EXIT /B X` where X>=1 acts as if command completed successfully when using && or || operators between batch calls

I'm trying to chain a series of .bat files using the EXIT /B X command to return success or failure and && and || for conditional running of the next .bat (e.g. a.bat && b.bat). ...
1
vote
4answers
75 views

Making levels of danger obvious

I'm working on a monitoring system: it sends messages, each message has a danger/severity flag and I want it to be very obvious for even a casual user. Which of the following have obvious meanings, ...
2
votes
1answer
7k views

ERRORLEVEL inside IF

Just stumbled into a weird thing with %ERRORLEVEL% and wanted to see if anyone knows why and if there's a way to fix it. Essentially, it seems as if commands executed inside if statements don't set ...
0
votes
1answer
70 views

echoing (creating) an error log file

I have the following lines commands: if %errorlevel% equ 1 ( set/a error=1 if not exist "error.log" echo. > "error.log" echo the ...
5
votes
1answer
2k views

get return code from plink?

In a DOS batch script, I'm running a single command on a remote (also windows) computer using plink. Formerly, this command was only run on the local machine, and was relying on the return code to ...
4
votes
3answers
7k views

Errorlevel in a For loop (batch windows)

I have the following windows batch code: for %%i in (iidbms iigcc iigcd dmfacp dmfrcp rmcmd qwerty) do ( tasklist | findstr /i %%i echo %errorlevel% if %errorlevel% == 0 (echo %%i ...
0
votes
1answer
944 views

Batch ERRORLEVEL results different from CMD?

Why does ERRORLEVEL behave differently in these two circumstances? From the command line: Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\>aescrypt.exe -v ...
8
votes
6answers
4k views

System.exit(num) or throw a RuntimeException from main?

I've got a single threaded app that should set the DOS errorlevel to something non-zero if there is a problem. Is it better to throw a RuntimeException, or to use System.exit(nonzero)? I don't need ...
4
votes
2answers
882 views

Create event with the batch files

Here's what i want to achieve. We have this email archive database which we optimize on a weekly basis . At the moment we are manually logging in run the command and monitor the status. The ...
0
votes
2answers
3k views

Errorlevels set by DOS commands on Windows

I have a batch program that calls several child batch programs and they make entensive use of various DOS commands. In case of error, i would like to provide logging information about the error ...
2
votes
2answers
2k views

Why does cmd.exe have different errorlevel behavior on a 64-bit machine?

If I make a batch script named temp.bat (for example) containing: exit /b 1 When I run it in various ways, I get different behavior on my 32-bit XP system vs. a 64-bit XP system. On 32-bit: > ...
2
votes
2answers
5k views

Killing a process in Batch and reporting on success

i have the following batch file, which terminates the iTunes program so, that if i connect my iPod, it's not going to sync it. (I know you can set this up in iTunes.) @echo off :kill cls taskkill /F ...
0
votes
3answers
357 views

How does pylint quit the Windows command box it is running in?

Pylint is doing something odd on my Windows box - something that shouldn't be possible. This isn't a question about fixing pylint, so much as fixing my understanding. I have a typical install of the ...
0
votes
2answers
2k views

Windows batch-file errorlevel question

I've got a batch file that parses a bunch of file names out of a text file and concatenates them into a single strong - it was previously discussed here. However, I don't want the string to contain a ...
1
vote
2answers
1k views

TortoiseSVN from the command line and “IF ERRORLEVEL”?

I have a batch file I'm running from a Windows XP w/service pack 3 workstation which applies SQL changes to a database using sqlcmd.exe in SQL 2005. I've got a command-line entry for TortoiseSVN to ...
13
votes
6answers
13k views

What is the easiest way to reset ERRORLEVEL to zero?

I have a post-build event that runs some commands for a c# project. The last command would sometimes cause the ERRORLEVEL value not equils to zero and then the build fails. I want to append an extra ...
0
votes
1answer
939 views

How to set ERRORLEVEL in SSIS?

I have a batch file that runs an SSIS job. I have no knowledge of how the SSIS job runs, I took over a project involving it. The batch file uses %ERRORLEVEL% to detect errors that occur within the ...
2
votes
2answers
2k views

Handling nmake errorlevel/return codes

I have an nmake-based project which in turn calls the asp compiler, which can throw an error, which nmake seems to recognize: NMAKE : fatal error U1077: ...