home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
po7_win
/
install
/
user.pvf
< prev
next >
Wrap
Text File
|
1994-12-30
|
905b
|
31 lines
/* Copyright (c) Oracle Corporation 1994. All Rights Reserved */
/************************************************************************
NAME
user.pvf - user-defined .pvf script
DESCRIPTION
This script allows users access to their own customizable .pvf script.
OWNER
Bryan Sabol
MODIFIED MM/DD/YY Reason
zzerhoun 12/30/94 Modified for Personal Oracle
AKelley 07/13/94 Added "in case of floppy" section from LMurphy's file
bsabol 03/18/94 Created.
**************************************************************************/
{
dirname = directory_name(current_script);
if (directory_name(dirname) == dirname)
pinname = "%dirname%user.pin";
else
pinname = "%dirname%\user.pin";
if (exists(pinname))
copy_file(pinname,"%installer_home%\");
return(execute("%installer_home%\%operating_system%.pvf"));
}