Account Expiration!

G

Guest

Guest
Archived from groups: microsoft.public.win2000.active_directory (More info?)

Hello......

how can I set the account expiration date to the date on which the
account created or changed or even the date on which the password last
set plus number of days?.

And how can I display the account expiration date and be readeable as
a good format.

Thanks in advance...
 
G

Guest

Guest
Archived from groups: microsoft.public.win2000.active_directory (More info?)

On 6 Jun 2005 01:58:45 -0700, eng_shaima1183@yahoo.com (c-mos) wrote:

>Hello......
>
>how can I set the account expiration date to the date on which the
>account created or changed or even the date on which the password last
>set plus number of days?.
>
>And how can I display the account expiration date and be readeable as
>a good format.
>
>Thanks in advance...


See tip 8079 » How can I convert a long integer FILETIME, like Active Directory attributes lastLogon and pwdLastSet, to a date and time?
in the 'Tips & Tricks' at http://www.jsifaq.com

See tip 77147714 » What attribute names can I use with the user filtered dsquery command?

See:

@echo off
setlocal ENABLEDELAYEDEXPANSION
set q1=dsquery * domainroot -filter "(&(objectCategory=Person)(objectClass=User))"
set q2= -attr sAMAccountName distinguishedName accountExpires lastLogon lastLogonTimestamp whenChanged whenCreated
set q3= -L -limit 0
set qry=%q1%%q2%%q3%
for /f "Tokens=1*" %%a in ('%qry%') do (
if /i "%%a" EQU "sAMAccountName:" set dtX=Never&set dtL=Never&set dtLLTS=Never
if /i "%%a" EQU "sAMAccountName:" set user=%%b
if /i "%%a" EQU "distinguishedName:" set dn="%%b"
if /i "%%a" EQU "accountExpires:" if "%%b" NEQ "" call cvtfiletime %%b dtX
if /i "%%a" EQU "lastLogon:" if "%%b" NEQ "" call cvtfiletime %%b dtL
if /i "%%a" EQU "lastLogonTimestamp:" if "%%b" NEQ "" call cvtfiletime %%b dtLLTS
if /i "%%a" EQU "whenChanged:" set wChg=%%b
if /i "%%a" EQU "whenCreated:" set wCrt=%%b&@echo !user! !dn! !dtX! !dtL! !dtLLTS! !wChg! !wCrt!
)
endlocal
 
G

Guest

Guest
Archived from groups: microsoft.public.win2000.active_directory (More info?)

Hi C-mos

Use addition tab function in AD users and computers called "additional info"
you have to register the acctinfo.dll which can be found on the following
website,

http://www.microsoft.com/downloads/details.aspx?FamilyID=7af2e69c-91f3-4e63-8629-b999adde0b9e&displaylang=en


"c-mos" wrote:

> Hello......
>
> how can I set the account expiration date to the date on which the
> account created or changed or even the date on which the password last
> set plus number of days?.
>
> And how can I display the account expiration date and be readeable as
> a good format.
>
> Thanks in advance...
>