The setup process for installing The SAS System provides a client installation that allows customers to run SAS directly from the CD. This method of running SAS works fine until the license information on the CD expires. When the license expires, renewal information must be entered into the SETINIT.SAS file and applied to the CORE.SC2 file. However, since CD is read-only media the SETINIT.SAS and CORE.SC2 file must be copied to a read/write media for updating. Once updated, SAS must access the updated file for all future executions.
Updating and Applying the SETINIT
(instructions and examples commands use E: as the CD-rom drive and C:\SAS for
the SAS directory, change where appropriate for your configuration)
MD C:\SAS\CORE
MD C:\SAS\CORE\SASHELP
COPY E:\SAS\CORE\SASHELP\CORE.SC2 C:\SAS\CORE\SASHELP
COPY E:\SAS\CORE\SASINST\SETINIT.SAS C:\SAS
COPY E:\SAS\CONFIG.SAS C:\SAS
COPY E:\SAS\SAS.EXE C:\SAS
And remove the read-only attribute from the files that will be
modified:
ATTRIB -R C:\SAS\CONFIG.SAS
ATTRIB -R C:\SAS\CORE\SASINST\SETINIT.SAS
ATTRIB -R C:\SAS\CORE\SASHELP\CORE.SC2
-SASHELP (
C:\SAS\CORE\SASHELP
!SASROOT\CORE\SASHELP
!SASROOT\BASE\SASHELP
.
.
. )
The section beginning with -SASHELP will already be present in CONFIG.SAS
with references to !SASROOT and all of the SASHELP directories for your
product mix. You must add the read/write location as the first directory
in this list, as above.
-SET SASROOT E:\SAS
/ * This icon is not working properly with CD clients ... will update as soon as possible */
E:\SAS\SAS.EXE -SET SASROOT E:\SAS -CONFIG C:\SAS\CONFIG.SAS