
Installgen
Features and Benefits
Installgen
Demo Available for download...
Bookmark This Page

echo off
REM script: 1_win_920_prepinstall_1.bat
REM Features: This windows batch file requests that a shared directory
REM be created and shared on the new Oracle db server.
REM The install scritps, and utilities are then copied to the shared directory
REM from the oracle_build1 CD in the D: drive.
REM
REM Script Sequence# : 1
REM Used By: run manually on windows system
REM Copyright 2002 by .com Solutions Inc.
REM
REM ---------------------- Revision History ---------------
REM Date By Changes
REM 06-18-2002 dsimpson Initial Release
REM This output file was created by Installgen version 1.38 on Thu Nov 14 17:48:05 2002. By .com Solutions Inc. www.dotcomsolutionsinc.net
echo.
echo Insert the oracle_build1 CD
echo.
pause
echo.
echo Create and share the directory: c:\oracle
echo on the host1 server.
echo.
echo.
pause
REM mount the remote share locally under the Z drive letter to avoid conflicts
REM net use Z
echo.
echo Map the networked folder c:\oracle on server: host1
echo to drive letter Z on this machine.
echo Files will then be copied from drive D: (cdrom) to the remote directory.
echo.
echo.
pause
REM copy all of the setup scripts - overwrite existing files, and create sub-directories as needed
xcopy /y /i * Z:
REM copy the Windows utilities (including perl) from the ora_build1 CD.
REM - overwrite existing files, and create sub-directories as needed
D:
cd D:\win_utilities
xcopy /y /i * Z:
cd ..

