PMStripper and Netscape 4.xx

I used the following REXX CMD file to install PMStripper
as the source viewer in Netscape 4.xx

My boot drive is L: and Netscape is installed on drive
N: in the directory \NETSCAPE.  PMStripper is installed
on drive N: in directory \PMSTRIPPER.

Remember the the REXX CMD file MUST start with a comment line
and watch for line wraps inserted by your browser or editor.

/* IniName points to the location of your NSCP.INI */

IniName = 'L:\OS2\NSCP.INI'
call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
call SysLoadFuncs

/* Add Registry entries for View Source */
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource','URL:View Source'
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell',0
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open',0
call SysIni IniName, 'Registry', '\HKEY_CLASSES_ROOT\viewsource\shell\open\command','N:\PMSTRIPPER\PMSTRIP.EXE'


