rem mofpretty.bat rem rem Copyright 2002, 2003 Oracle Corporation, All rights Reserved rem rem WIN32 bat file to run the Oracle MOF pretty printer rem @echo off if not (%ECHO%) == () echo %ECHO% rem rem Location of your java home. Change as approrpriate rem set JAVA_HOME=C:\Program Files\Java\jre1.5.0_06 rem rem Pointer to java and rt.jar file. You should not need to touch these rem set JAVA=%JAVA_HOME%\bin\java set JAVALIBS=%JAVA_HOME%\jre\lib\rt.jar rem rem Classpath may need to be updated to include location where mofpretty rem was placed. It is set for d:\mofpretty right now. If you install rem elsewhere, adjust the path to the mofpretty directory. rem set CLASSPATH=.;%JAVALIBS%;.\mofpretty.zip rem rem Main executable. Should not need to change this. rem set MOFCOMPILE=mofpretty.MofPretty rem rem Run the pretty printer rem "%JAVA%" -classpath "%CLASSPATH%" %MOFCOMPILE% %1 %2 %3 %4 %5 %6 %7 %8 %9