1 REM ############################################# 2 REM Licensed under the Apache License, Version 2.0 (the "License"); 3 REM you may not use this file except in compliance with the License. 4 REM You may obtain a copy of the License at 5 REM 6 REM http://www.apache.org/licenses/LICENSE-2.0 7 REM 8 REM Unless required by applicable law or agreed to in writing, software 9 REM distributed under the License is distributed on an "AS IS" BASIS, 10 REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 REM See the License for the specific language governing permissions and 12 REM limitations under the License. 13 REM ############################################# 14 @echo off 15 set OM_HOME=%~dp0 16 set OM_CONTEXT=openmeetings 17 18 set CLASSPATH=%OM_HOME%\*;%OM_HOME%\lib\*;%OM_HOME%\webapps\%OM_CONTEXT%\WEB-INF\lib\*;%OM_HOME%\webapps\%OM_CONTEXT%\WEB-INF;%OM_HOME%\webapps\%OM_CONTEXT%\WEB-INF\classes 19 20 java -cp "%CLASSPATH%" -Dom_home=%OM_HOME% -Dcontext=%OM_CONTEXT% org.apache.openmeetings.cli.Admin %* 21