Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
913 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). ...
4
votes
6answers
1k 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
270 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 ...
3
votes
1answer
84 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 ...
3
votes
2answers
51 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 ...
3
votes
1answer
129 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 ...
3
votes
5answers
5k 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 ...
2
votes
1answer
140 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
2answers
1k 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 ...
2
votes
2answers
2k 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 ...
1
vote
1answer
44 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 ...
1
vote
1answer
154 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
361 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 ...
1
vote
4answers
63 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, ...
1
vote
1answer
806 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 ...
1
vote
2answers
983 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: > ...
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 ...
1
vote
2answers
1k 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: ...
0
votes
1answer
111 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. ...
0
votes
2answers
153 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!
0
votes
1answer
261 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 ...
0
votes
1answer
1k 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
49 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 ...
0
votes
1answer
262 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 ...
0
votes
2answers
656 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 ...
0
votes
3answers
274 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
1k 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 ...
0
votes
1answer
694 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 ...