Blog Post

System Center Blog
1 MIN READ

Console Task Execution with Flexibility

System-Center-Team's avatar
Feb 15, 2019
First published on TECHNET on Aug 14, 2008
We may run into a situation where we want to execute a console task within OpsMgr based on some condition, like if a file exists, run it otherwise execute another file. Without the If-condition which is not supported by the <Task>, how can we achieve that? Well there is a workaround. Command line has an IF command through which you can do that.

IF [NOT] ERRORLEVEL number command
IF [NOT] string1==string2 command
IF [NOT] EXIST filename command


It also supports ELSE. However, for it to work, it has to occur on the same line as the command .

IF [NOT] EXIST filename (command) ELSE (command)

Adding the IF statement after the CMD.EXE (or %COMSPEC%) will give you much flexibility executing applications based on some criteria, as opposed to directly running the application.



For Example

<

CommandLine>%COMSPEC% /c IF EXIST C:MyFile.exe (C:MyFile.exe) ELSE (C:MyOtherFile.exe)</CommandLine>

Updated Mar 11, 2019
Version 5.0
No CommentsBe the first to comment