Return a User Profile Listing to a .NET Client
October 19, 2011 Hey, Mike
I am a VB.NET programmer and am looking to retrieve a list of all users and their expiration dates on our AS/400 system. I stumbled across the cwbx library and have been able to connect to our system, but not much else from there. Can you suggest how this info can be retrieved from VB.NET? Thanks. –Elliot Hi, Elliot: The easiest way to retrieve this user info is to use the i/OS Display User Profile (DSPUSRPRF) command and dump the results to a table (also known as an outfile): DSPUSRPRF USRPRF(*ALL) OUTPUT(*OUTFILE) OUTFILE(QTEMP/LSTUSRPRFP) The above command (assuming you have the |