Renew Commands

There are five renew commands:

The success or failure of these commands can be tested in a Windows batch file using "not errorlevel 1," which returns true if the error level was 0. An error level of 0 means the command executed successfully; an error level of 1 or greater means the command failed. For example:

java -Dfile.encoding=UTF-8 -jar renew.jar -listenvs -username "admin" -
password "password" -arAddress "http://localhost:8085"
if not errorlevel 1 goto END
echo An error occurred running renew
:END

The following sections describe the commands and provide example output.