Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleExample how to apply a patch to JOC Cockpit for Windows
linenumberstrue
#@rem navigate to the target directory for patches
cd %ProgramData%\sos-berlin.com\js7\joc\jetty_base\webapps\joc\WEB-INF\classes

#@rem verify the directory by checking if this file is available
dir api-schema-version.json

#@rem download from URL https://download.sos-berlin.com/patches/patch-20220309-JOC-1256-2.2.2_2.2.3.jar
#@rem copy from download location (could be different from this example)
copy %USERPROFILE%\Downloads\patch-20220309-JOC-1256-2.2.2_2.2.3.jar .

#@rem extract the patch archive (use "jar" or "unzip" command)
jar -xf patch-20220309-JOC-1256-2.2.2_2.2.3.jar
#@rem remove the patch archive
del patch-20220309-JOC-1256-2.2.2_2.2.3.jar

...