<?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 inactive users in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307698#M338880</link>
    <description>Good afternoon gentlemen!!&lt;BR /&gt;&lt;BR /&gt;How would I locate user names that have not been active in say 60 days?&lt;BR /&gt;&lt;BR /&gt;Find command?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!!</description>
    <pubDate>Mon, 17 Nov 2008 17:24:57 GMT</pubDate>
    <dc:creator>Ron Irving</dc:creator>
    <dc:date>2008-11-17T17:24:57Z</dc:date>
    <item>
      <title>inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307698#M338880</link>
      <description>Good afternoon gentlemen!!&lt;BR /&gt;&lt;BR /&gt;How would I locate user names that have not been active in say 60 days?&lt;BR /&gt;&lt;BR /&gt;Find command?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!!</description>
      <pubDate>Mon, 17 Nov 2008 17:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307698#M338880</guid>
      <dc:creator>Ron Irving</dc:creator>
      <dc:date>2008-11-17T17:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307699#M338881</link>
      <description>One way is you can finger the user.</description>
      <pubDate>Mon, 17 Nov 2008 17:44:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307699#M338881</guid>
      <dc:creator>Tingli</dc:creator>
      <dc:date>2008-11-17T17:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307700#M338882</link>
      <description>Is your system trusted?  If it is you can 'getprpw' to get information about each user.&lt;BR /&gt;&lt;BR /&gt;# /usr/lbin/getprpw -m slogint username&lt;BR /&gt;&lt;BR /&gt;Will show the last successful login for the user 'username'.</description>
      <pubDate>Mon, 17 Nov 2008 17:46:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307700#M338882</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2008-11-17T17:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307701#M338883</link>
      <description>well...we have over 1000 users.  That would be alot of fingers.</description>
      <pubDate>Mon, 17 Nov 2008 17:51:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307701#M338883</guid>
      <dc:creator>Ron Irving</dc:creator>
      <dc:date>2008-11-17T17:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307702#M338884</link>
      <description>"a lot of fingers"...&lt;BR /&gt;&lt;BR /&gt;awk -F: "{print $1}" /etc/passwd | finger&lt;BR /&gt;&lt;BR /&gt;might get you started</description>
      <pubDate>Mon, 17 Nov 2008 18:15:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307702#M338884</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2008-11-17T18:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307703#M338885</link>
      <description>&amp;gt;OldSchool: "a lot of fingers"...&lt;BR /&gt;&amp;gt;awk -F: "{print $1}" /etc/passwd | finger&lt;BR /&gt;&lt;BR /&gt;Probably needs a few more:  :-)&lt;BR /&gt;awk -F: '{print $1}' /etc/passwd | xargs  finger</description>
      <pubDate>Mon, 17 Nov 2008 23:30:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307703#M338885</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-11-17T23:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307704#M338886</link>
      <description>The commands give should get you started.  It is not that difficult to write a script to repeat the command for all users.&lt;BR /&gt;&lt;BR /&gt;If you have a trusted system and want to run the getprpw command I mentioned for all users, this would do:&lt;BR /&gt;&lt;BR /&gt;for MYUSER in $(do&lt;BR /&gt;echo "${MYUSER} - \c"&lt;BR /&gt;/usr/lbin/getprpw -m slogint ${MYUSER}&lt;BR /&gt;done</description>
      <pubDate>Tue, 18 Nov 2008 00:14:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307704#M338886</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2008-11-18T00:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: inactive users</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307705#M338887</link>
      <description>I'm a bit off kilter tonight apparently.  What you really need:&lt;BR /&gt;&lt;BR /&gt;for MYUSER in $(awk -F: '{print $1}' /etc/passwd)&lt;BR /&gt;do&lt;BR /&gt;echo "${MYUSER} - \c"&lt;BR /&gt;/usr/lbin/getprpw -m slogint ${MYUSER}&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ignore my script above.</description>
      <pubDate>Tue, 18 Nov 2008 00:16:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/inactive-users/m-p/4307705#M338887</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2008-11-18T00:16:04Z</dc:date>
    </item>
  </channel>
</rss>

