Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!seismo!rutgers!ucla-cs!zen!ucbvax!RITVAX.BITNET!AWPSYS From: AWPSYS@RITVAX.BITNET Newsgroups: comp.os.vms Subject: RE: how do you find out if logins are disabled. Message-ID: <8707280301.AA23857@ucbvax.Berkeley.EDU> Date: Mon, 27-Jul-87 23:01:21 EDT Article-I.D.: ucbvax.8707280301.AA23857 Posted: Mon Jul 27 23:01:21 1987 Date-Received: Wed, 29-Jul-87 02:13:19 EDT Sender: daemon@ucbvax.BERKELEY.EDU Distribution: world Organization: The ARPA Internet Lines: 20 >Is there any way to find out if logins are disabled when a user logs in ? >(There must be - VMS does it...) I'd like to track users with OPER priv >who login during SYSTEM maintenance time (when logins are disabled). I >DON'T want to disable them - just know when they login. Checking the >interactive count won't do either. Since the command SET LOGIN/INTERACTIVE=n changes the SYSGEN parameter IJOBLIM you can find out if logins are disabled by using the DCL lexical function F$GETSYI() to find out what Logins are set to. Something like: $ if f$getsyi("IJOBLIM").eq.0 then - write sys$output "Hey guys..logins are disabled" Andrew W. Potter Rochester Institute of Technology Rochester NY. AWPSYS@RITVAX.BITNET