Chapter Contents

Previous

Next
The REGISTRY Procedure

Example 3: Listing and Exporting the Registry


Procedure features:
EXPORT=
LISTUSER

This example lists the SASUSER portion of the SAS Registry and exports it to an external file.


Program
 Note about code
proc registry
   listuser
 Note about code
   export='external-file';
run;


SAS Log

1  proc registry listuser export='external-file';
2  run;
Starting to write out the registry file, please wait...
The export to file external-file is now complete.
Contents of SASUSER REGISTRY.
[  HKEY_USER_ROOT]
[    CORE]
[      EXPLORER]
[        CONFIGURATION]
        Initialized= "True"
[        FOLDERS]
[          UNXHOST1]
          Closed= "658"
          Icon= "658"
          Name= "Home Directory"
          Open= "658"
          Path= "~"


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.