Usage Note 10239: Using RegBld81, RegBld82, 91Regbld and 92Regbld
Following are the instructions to run the REGBLD programs:
- Go to the SAS FTP site, Index of /techsup/download/pc.
- Download the RegBld executable to your PC.
- Run and install the RegBld executable program:
- Click Start ► Run.
- Click the .exe file.
- Click Open.
Note: If you are using an autoexec.sas file, add
-noautoexec
after the RegBld executable before you run the program. For example: c:\temp\Regbld82.exe -noautoexe. This is not necessary for the 91Regbld or the 92Regbld. The -noautoexec is built into the installation.
- Click Next twice, and provide the location of your SAS configuration file and click Next.
Note: The default locations are C:\Program Files\SAS Institute\SAS\V8\sasv8.cfg for SAS 8.x, C:\Program Files\SAS\SAS 9.1\nls\en\sasv9.cfg for SAS 9.1.x, and C:\Program Files\SAS\SASFoundation\9.2\nls\en\sasv9.cfg for SAS 9.2.
- Confirm the SASROOT location and click Next.
Note: The default locations are C:\Program Files\SAS Institute\SAS\V8 for SAS 8.x, C:\Program Files\SAS\SAS 9.1 for SAS 9.1.x, and C:\Program Files\SAS\SASFoundation\9.2 for SAS 9.2. The registry is updated and the message "SAS Registry is complete" appears.
- Click Finish to close the tool.
Important: Use Regbld81.exe on SAS 8.1, Regbld82.exe on SAS 8.2, 91Regbld on SAS 9.1, 92Regbld on SAS 9.2, and 92Regbld_64.exe (for Windows x64 and Windows 64-bit Itanium).
If any one of the following is true, use the alternative method:
- Installshield is not working correctly and you are unable to run regbld (note that two SAS Notes address these Installshield issues: SAS Note 7812 and SAS Note 7655) when installing SAS® or SAS® Enterprise Guide®.
- You are not allowed to download to your site.
- You are not allowed to receive .exe files such as regbld by e-mail.
-
If regbld becomes unresponsive or the following error message appears, see SAS notes SAS Note 6699 and SAS Note 9924 to resolve the issue:
Error: SASHELP lock is not available for REGISTRY.
Error: Read Access Violation in Task REGISTRY.
Exception occurred at (67A043D2) Task Traceback
Note: The SAS System stopped processing this step because of errors.
Alternative method:
Submit this code in your SAS editor:
filename code temp;
%let dir=%sysget(sasroot)\core\sasinst\registry\;
filename dir "&dir";
data x;
did=dopen("dir");
if did le 0 then do; putlog "ERROR: could not open ""&dir"""; stop; end;
n=dnum(did);
length line $ 300;
file code;
do i=1 to n;
name=dread(did,i);
ext=scan(name,-1,'.');putlog ext=;
if lowcase(ext)=:'sasxreg' then do;
line="PROC REGISTRY IMPORT="!!quote("&dir"!!trim(name));
line=trim(line)!!' USESASHELP MARK; RUN;';
put line;
end;
end;
putlog "NOTE: REGBLD - " n " entries processed for &dir";
put '%put NOTE: REGBLD - ' n ' entries processed from;';
put '%put NOTE: &dir;';
if did then rc=dclose(did);
run;
options source notes nosource2;
%inc code;
Operating System and Release Information
SAS System | Base SAS | Windows Vista | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Enterprise Edition | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Standard Edition | 9.2 TS1M0 | |
Microsoft Windows 2000 Advanced Server | 8.1 TS1M0 | |
Microsoft Windows 2000 Datacenter Server | 8.1 TS1M0 | |
Microsoft Windows 2000 Professional | 8.1 TS1M0 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.2 TS1M0 | |
Microsoft® Windows® for x64 | 9.2 TS1M0 | |
Microsoft Windows XP 64-bit Edition | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 9.2 TS1M0 | |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 9.2 TS1M0 | |
Microsoft Windows XP Professional | 8.2 TS2M0 | |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.2 TS1M0 | |
Windows Millennium Edition (Me) | 8.2 TS2M0 | |
Microsoft Windows 95/98 | 8.1 TS1M0 | |
Microsoft Windows NT Workstation | 8.1 TS1M0 | |
Microsoft Windows 2000 Server | 8.1 TS1M0 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
The SAS Registry Rebuild Utility rebuilds the SASHELP registries for your installation.
Date Modified: | 2009-01-12 14:30:30 |
Date Created: | 2003-06-12 11:59:44 |