Previous Page | Next Page

The REGISTRY Procedure

Example 2: 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.

Note:   The file is usually very large. To export a portion of the registry, use the STARTAT= option.  [cautionend]


Program

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

Output: SAS Log

Output From Exporting a File From the SAS Registry

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= "~"

Previous Page | Next Page | Top of Page