The SKIPERROR directive turns off error handling for script attributes when an error may appear from the acted-upon device, potentially preventing further job execution. You may issue SKIPERROR: on for one part of a script, thereby disabling error handling, and re-enable error handling again by issuing a second SKIPERROR: off directive.
SKIPERROR can be used in Action-Command attributes and Trigger-Command attributes.
Example
...
# Turn off
...
error
...
handling
SKIPERROR:
...
on
<further
...
script
...
execution
...
here>
...
# Turn error
...
handling
...
back
...
on
...
SKIPERROR:
...
off