HP OpenVMS Systemsask the wizard | 
	
 The Question is: hi, Would like to find out if there are any tools available to read sysgen parameters from another system disk. We are currently trying to find the quorum disk information from another clusters ( this cluster is down )system disk. thanks in advance. thanks...pathf1nder The Answer is : 
 
  If the remote system is currently up and running:
 
    $ RUN SYS$SYSTEM:SYSMAN
    SYSMAN> SET ENVIRONMENT/CLUSTER  ! Cluster
    SYSMAN> SET ENVIRONMENT/NODE...  ! Cluster or standalone
    SYSMAN> DO WRITE SYS$OUTPUT F$GETSYI("DISK_QUORUM")
 
  If the remote system is not running, but the system disk is on
  a shared device that is currently accessable from another node
  (of the same architecture) that is up and running:
 
    $ RUN SYS$SYSTEM:SYSGEN
    SYSGEN> USE ddcu:[SYSn.SYSEXE]ALPHAVMSSYS.PAR  ! OpenVMS Alpha
    SYSGEN> USE ddcu:[SYSn.SYSEXE]VAXVMSSYS.PAR    ! OpenVMS VAX
    SYSGEN> SHOW DISK_QUORUM
 
 
 
  |