Skip to main content

[Exam 000-120: Academic Associate: IBM i 7 Administration]: Question 1 - System value - Password Expire Interval

Exam 000-120: Academic Associate: IBM i 7 Administration
http://www.aiotestking.com/ibm/2013/11/27/what-system-value-is-associated-with-that-field/

An administrator uses the value *SYSVAL in a user profile for the password expiration interval
field. What system value is associated with that field?
A. QPWDCHGITV
B. QPWDCHGDTE
C. QPWDEXPDTE
D. QPWDEXPITV
[Hint]
Display system value: PassWordDEXPire InTerVal
Selection or command
===> DSPSYSVAL SYSVAL(QPWDEXPITV)






Result of command DSPSYSVAL SYSVAL(QPWDEXPITV)
[Answer]
D






#WIIFA stands for What's In It For All
#Practice until you cannot get it wrong

Popular posts from this blog

Powershell: Enable Firewall Log

We sometimes need to enable Windows firewall's log to troubleshoot. Here is how.

Linux command: swapon

Two ways to check if swap partition exists.

[PowerShell]: Powershell script uploading backup databases to ftp server

Author:  Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c Nhu cầu - Học sử dụng Powershell và áp dụng vào thực tế - Server chạy MS SQL được backup mỗi ngày và lưu các file backup ở folder mặc định "C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup" - Upload các file database backup về một ftp server khác để lưu "offsite" # Begin script # Thanks to: Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c # Khai báo folder chứa các file backup database, dưới đây là folder backup mặc định của MS SQL 2012 $Dir="C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup"   # ftp server $ftp = "ftp://IPAddres/subfolder/subsubfolder" $user = "usernamehere" $pass = "passwordhere" # DO NOT use $(Get-Date), use $d variable instead, otherwise SQL Agent gets error "The...