<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SYSUAF.LIS in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687833#M73196</link>
    <description>Oh yeah, its also on Encompass' WEB:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.encompassus.org/ftplib/VS0174_SCANUAF_AAAREADME_1ST.html" target="_blank"&gt;http://www.encompassus.org/ftplib/VS0174_SCANUAF_AAAREADME_1ST.html&lt;/A&gt;</description>
    <pubDate>Fri, 09 Dec 2005 09:19:35 GMT</pubDate>
    <dc:creator>John Donovan_4</dc:creator>
    <dc:date>2005-12-09T09:19:35Z</dc:date>
    <item>
      <title>SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687820#M73183</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I would like to extract the current user and their last login from the sysuaf.lis file.  How would I proceed with this?&lt;BR /&gt;&lt;BR /&gt;Thank you in advance.&lt;BR /&gt;&lt;BR /&gt;Jorge C.</description>
      <pubDate>Thu, 08 Dec 2005 14:10:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687820#M73183</guid>
      <dc:creator>Jasper_15</dc:creator>
      <dc:date>2005-12-08T14:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687821#M73184</link>
      <description>Don't attempt to parse the output of AUTHORIZE,&lt;BR /&gt;VMS has the SYS$GETUAI system service to ratrieve items from sysuaf.&lt;BR /&gt;See HELP SYSTEM $GETUAI.&lt;BR /&gt;&lt;BR /&gt;There is a very nice freeware utility GETUAI. &lt;BR /&gt;To get the last login, one would do&lt;BR /&gt;&lt;BR /&gt;getuai/last=last_login huber&lt;BR /&gt;sh symbol last_login&lt;BR /&gt;  LAST_LOGIN = " 8-DEC-2005 19:57:27.9"&lt;BR /&gt;&lt;BR /&gt;Find GETUAI at Hunter Goatleys fileserver:&lt;BR /&gt; &lt;A href="HTTP://www.process.com/openvms" target="_blank"&gt;HTTP://www.process.com/openvms&lt;/A&gt;</description>
      <pubDate>Thu, 08 Dec 2005 14:31:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687821#M73184</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2005-12-08T14:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687822#M73185</link>
      <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;$ write sys$output f$getjpi("","last_login_n") will diaplay the last login time of the current user.&lt;BR /&gt;&lt;BR /&gt;If you know the PID of any specific user's PID, you can pass that PID as the Ist arg to this f$getjpi(pid_of_anu_user,"last_login_n")&lt;BR /&gt;&lt;BR /&gt;using other f$PID, f$extract functions, will help you find the exact username if you feel difficulties finding the username using PID.&lt;BR /&gt;&lt;BR /&gt;If you want to get this last login time from any other high level prog, then there is macro defn (may be $LOGINDEF) where eyou can find the symbol for last login, that can be passed to your prog.&lt;BR /&gt;&lt;BR /&gt;Archunan&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 14:37:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687822#M73185</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-12-08T14:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687823#M73186</link>
      <description>sorry, the macro name is $UAFDEF and the symbol UAF$Q_LASTLOGIN_N.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Thu, 08 Dec 2005 14:47:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687823#M73186</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-12-08T14:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687824#M73187</link>
      <description>Definitely look into the GETUAI freeware utility.&lt;BR /&gt;&lt;BR /&gt;You can create your own script for parsing the data out.  Once you have the USERNAME its just&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$! check for machine type and assign proper getuai&lt;BR /&gt;$!&lt;BR /&gt;$ if f$edit(f$extract(0,3,f$getsyi("HW_NAME")),"UPCASE") .eqs. "ALP"&lt;BR /&gt;$  then&lt;BR /&gt;$   getuai = "$tools:[mgr.getuai]getuai.alpha_exe"&lt;BR /&gt;$  else&lt;BR /&gt;$   getuai = "$tools:[mgr.getuai]getuai.exe"&lt;BR /&gt;$ endif&lt;BR /&gt;$ getuai 'username /interactive_login=ilogin /noninteractive_login=nonlogin&lt;BR /&gt;$ show sym ilogin&lt;BR /&gt;$ show sym nonlogin&lt;BR /&gt;&lt;BR /&gt;If the person has never logged in then it will return NONE, otherwise it will return the date &amp;amp; time of the last login.&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 14:55:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687824#M73187</guid>
      <dc:creator>Peter Zeiszler</dc:creator>
      <dc:date>2005-12-08T14:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687825#M73188</link>
      <description>Jorge C,&lt;BR /&gt;&lt;BR /&gt;from DCL, you can get the last llgin using this single command&lt;BR /&gt;&lt;BR /&gt;$ PIPE search sysuaf.lis "username"/window=(1,9) | search sys$input "last login"&lt;BR /&gt;&lt;BR /&gt;you will last intercative and non-intercative login time.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Thu, 08 Dec 2005 15:04:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687825#M73188</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2005-12-08T15:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687826#M73189</link>
      <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;to repeat Hein's favorite question: "What problem are you trying to solve"&lt;BR /&gt;&lt;BR /&gt;The "current user" are you yourself.&lt;BR /&gt;Unless this is an account used by other users as well (a VERY un-desirable approach, leading to the well-chosen nick-name "whore-account", because everybody is using it, and when something ill comes to pass, everybody can claim: "it was not me"), so, what special info would you desire to get from your own "last login".&lt;BR /&gt;Are you really interested whether you(r account) did do another Login since this session started?&lt;BR /&gt;&lt;BR /&gt;The various answers given above should supply the answer, but I am REALLY curious for the background of THIS question!&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 15:37:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687826#M73189</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-12-08T15:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687827#M73190</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am just trying to pull all the users from our VMS system with active or non-active with their last login info for accounting purpose.  Help!!</description>
      <pubDate>Thu, 08 Dec 2005 16:23:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687827#M73190</guid>
      <dc:creator>Jasper_15</dc:creator>
      <dc:date>2005-12-08T16:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687828#M73191</link>
      <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;so, not the current user, but all authorised users?&lt;BR /&gt;&lt;BR /&gt;Now, we get into the infamous: What version?&lt;BR /&gt;question.&lt;BR /&gt;&lt;BR /&gt;IF your system supports PIPE (sinve VMS 7.something)&lt;BR /&gt;&lt;BR /&gt;$ PIPE MCR AUTHORIZE SHOW *|SEARCH SYS$PIPE "Username:","Last login" /OUTPUT=&lt;RESULT file=""&gt;&lt;BR /&gt;&lt;BR /&gt;Older versions:&lt;BR /&gt;&lt;BR /&gt;$ MCR LIST * /FULL&lt;BR /&gt;$ SEARCH SYSUAF.LIS "Username:","Last login"/OUTPUT=&lt;RESULT file=""&gt;&lt;BR /&gt;&lt;BR /&gt;Success.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;/RESULT&gt;&lt;/RESULT&gt;</description>
      <pubDate>Thu, 08 Dec 2005 16:42:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687828#M73191</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2005-12-08T16:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687829#M73192</link>
      <description>Asked and answerred many times before, including in this forum:&lt;BR /&gt;&lt;BR /&gt;google: +vms +"last login" +site:itrc.hp.com&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=890732" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=890732&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Dec 2005 20:51:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687829#M73192</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-12-08T20:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687830#M73193</link>
      <description>Short of reading the manual now :-), but definitely f$getjpi("","last_login_n") does not  show the users last login:&lt;BR /&gt;&lt;BR /&gt;live example:&lt;BR /&gt;write sys$output f$getjpi("","last_login_n")&lt;BR /&gt; 2-DEC-2005 09:33:58.55&lt;BR /&gt;&lt;BR /&gt;write sys$output f$getjpi("","last_login_i")&lt;BR /&gt;4-DEC-2005 20:59:18.28&lt;BR /&gt;&lt;BR /&gt;authorize show huber&lt;BR /&gt;Last Login:  9-DEC-2005 08:54 (interactive),&lt;BR /&gt; 7-DEC-2005 10:54 (non-interactive)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Dec 2005 03:15:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687830#M73193</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2005-12-09T03:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687831#M73194</link>
      <description>Aah yes, $getjpi last_login_% items return the last login times prior to the start of the current process or session, i.e. the date seen in $getuai at process creation time.&lt;BR /&gt;&lt;BR /&gt;There is, by the way, another utility: LAST&lt;BR /&gt;at &lt;BR /&gt;  &lt;A href="ftp://ftp.process.com/vms-freeware/fileserv/last.zip" target="_blank"&gt;ftp://ftp.process.com/vms-freeware/fileserv/last.zip&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;which does the list for system managers in one go:&lt;BR /&gt;  LAST/ALL_USERS&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Dec 2005 03:36:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687831#M73194</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2005-12-09T03:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687832#M73195</link>
      <description>We use Jim Snyder's SCANUAF to do SYSUAF accounting reports and tracking. It's awesome freeware and can be used remotely to get info from other nodes.  One source I have for it is Hunter's site: &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://vms.process.com/scripts/fileserv/fileserv.com?SCANUAF" target="_blank"&gt;http://vms.process.com/scripts/fileserv/fileserv.com?SCANUAF&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this helps</description>
      <pubDate>Fri, 09 Dec 2005 09:17:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687832#M73195</guid>
      <dc:creator>John Donovan_4</dc:creator>
      <dc:date>2005-12-09T09:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687833#M73196</link>
      <description>Oh yeah, its also on Encompass' WEB:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.encompassus.org/ftplib/VS0174_SCANUAF_AAAREADME_1ST.html" target="_blank"&gt;http://www.encompassus.org/ftplib/VS0174_SCANUAF_AAAREADME_1ST.html&lt;/A&gt;</description>
      <pubDate>Fri, 09 Dec 2005 09:19:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687833#M73196</guid>
      <dc:creator>John Donovan_4</dc:creator>
      <dc:date>2005-12-09T09:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687834#M73197</link>
      <description>Great info.  I will give it try.  Does anyone know how I can assign points?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Dec 2005 23:40:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687834#M73197</guid>
      <dc:creator>Jorge Cocomess</dc:creator>
      <dc:date>2005-12-13T23:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: SYSUAF.LIS</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687835#M73198</link>
      <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;only the initial author of the thread can assign points, see:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;In this case, it would be user: Jasper&lt;BR /&gt;&lt;BR /&gt;Volker.&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Dec 2005 01:54:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sysuaf-lis/m-p/3687835#M73198</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2005-12-14T01:54:23Z</dc:date>
    </item>
  </channel>
</rss>

