Hi All,
I am getting below error when i enter user and password for automation of epma deployment
version 11.1.2.4
windows 2012 server r2 standard
All of the Gp(Group policies are given are correctly)

My batch client script in editor...
@echo off
setlocal
set HYP_VER=11.1.2.0
if '%EPM_ORACLE_HOME%'=='' GOTO NO_EPM_ORACLE_HOME
set CONFIGTOOL_HOME=%EPM_ORACLE_HOME%\common\config\%HYP_VER%
call "%CONFIGTOOL_HOME%\setJavaRuntime.bat"
if '%JAVA_HOME%' == '' goto NO_JAVA_HOME
if '%EPMA_BATCH_HOME%' == '' set EPMA_BATCH_HOME=%EPM_ORACLE_HOME%\products\Foundation\BPMA\EPMABatchClient
set COMMONS_HOME=%EPM_ORACLE_HOME%\Common
set CLASSPATH=^
%EPMA_BATCH_HOME%\lib\epma-actions.jar;^
%EPMA_BATCH_HOME%\lib\epma-batch-client.jar;^
%EPMA_BATCH_HOME%\lib\epma-common.jar;^
%COMMONS_HOME%\jlib\%HYP_VER%\epm_client.jar;^
%COMMONS_HOME%\jlib\%HYP_VER%\epm_epma.jar;^
%COMMONS_HOME%\jlib\%HYP_VER%\epm_misc.jar;^
%COMMONS_HOME%\jlib\%HYP_VER%\epm_j2se.jar;^
%EPM_ORACLE_HOME%\..\oracle_common\modules\oracle.webservices_11.1.1\wsa.jar;^
%EPM_ORACLE_HOME%\..\oracle_common\modules\oracle.wsm.agent.common_11.1.1\wsm-pap.jar;^
%EPM_ORACLE_HOME%\..\oracle_common\modules\oracle.wsm.agent.common_11.1.1\wsm-agent.jar;^
%EPM_ORACLE_HOME%\..\oracle_common\modules\oracle.wsm.common_11.1.1\wsm-pmlib.jar
pushd %EPMA_BATCH_HOME%
for /F "tokens=*" %%1 in ('chcp') do set CHCP_OUTPUT=%%1
if '%CONSOLE_ENCODING%' =='' for %%1 in (%CHCP_OUTPUT%) do set CONSOLE_ENCODING=%%1
%JAVA_HOME%\bin\java -classpath "%CLASSPATH%" ^
-D"java.util.logging.config.class=oracle.core.ojdl.logging.LoggingConfiguration" ^
-D"oracle.core.ojdl.logging.config.file=%EPMA_BATCH_HOME%\conf\logger.xml" ^
com.hyperion.bpma.cli.BPMAPlus -N%CONSOLE_ENCODING% %1 %2 %3 %4 %5 %6 %7 %8 %9
goto QUIT
:NO_EPM_ORACLE_HOME
echo ERROR: Environment variable EPM_ORACLE_HOME not defined.
goto QUIT
:NO_JAVA_HOME
echo ERROR: Environment variable JAVA_HOME is not set.
goto QUIT
:QUIT
popd
endlocal
Thanks,