REM This batch file is used to start the oracle instance 
REM ******************************************************************
REM ** Batch file used to start oracle services
REM ******************************************************************
REM ** START the oracle services
@ECHO off
echo Starting Oracle Services

NET START "ORACLE ProcMGR V10gR3 with VS2005"
NET START "OracleOraDb11g_home1TNSListener"
NET START "OracleServiceEPM910"
NET START "OracleVssWriterEPM910"
NET START "TUXEDO 10gR3 with VS2005 Listener on Port 3050"

echo Oracle Services Started
pause