Re: Force Password Changes in mixed mode A/D
From: Robert Cohen (rcohen@bbhtx.org)
Date: 04/16/03
- Next message: Robert Cohen: "Re: Force Password Changes in mixed mode A/D"
- Previous message: Danny Sanders: "Re: Add workstation to the domain"
- In reply to: DJM: "Re: Force Password Changes in mixed mode A/D"
- Next in thread: Jonathan: "Re: Force Password Changes in mixed mode A/D"
- Reply: Jonathan: "Re: Force Password Changes in mixed mode A/D"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
From: "Robert Cohen" <rcohen@bbhtx.org> Date: Wed, 16 Apr 2003 15:15:47 -0400
I just read that. However, I know in my organization, everyone's password
expires after 30 days but I was able to make my password never expire in
active directory.
now I do know if a VB script you can change everyone's password properties
in an OU. For example, below would change everyone's homedrive in the OU of
Staff to H:
Set ObjOU= GetObject ("LDAP://ou=staff,DC=baltimorebehavioralhealth,DC=org")
For Each ObjUser In ObjOU
objUser.homeDrive, "H:"
ObjUser.SetInfo
next
I don't know however if you could do (but I do know for that to work, the
value of MaxPasswordAge needs to be converted- I am not sure what the value
represents):
Set ObjOU= GetObject ("LDAP://ou=staff,DC=baltimorebehavioralhealth,DC=org")
For Each ObjUser In ObjOU
objUser.MaxPasswordAge = 30
ObjUser.SetInfo
next
"DJM" <djmiller@mm2k.net> wrote in message
news:018b01c30445$3dea36c0$a301280a@phx.gbl...
> In article 255550, it states that it can be done at the
> Domain level, but then anything beneath it will be
> considered a local policy and be for the local accounts.
> How can I implement a password change by Unit without
> enforcing for all of the Domain Users at once? Will the
> Global Policy at the Unit level be for the Domain account
> or the Local account which isn't used?
>
> >-----Original Message-----
> >you set it in Group Policy
> >
> >"Dan" <djmiller@mm2k.net> wrote in message
> >news:00c201c30440$149939b0$a401280a@phx.gbl...
> >> Is is possible to force domain users to change their
> >> passwords every x days? If so, how? I've searched
> >> within the A/D Users and Computers and find no
> reference
> >> to this.
> >
> >
> >.
> >
- Next message: Robert Cohen: "Re: Force Password Changes in mixed mode A/D"
- Previous message: Danny Sanders: "Re: Add workstation to the domain"
- In reply to: DJM: "Re: Force Password Changes in mixed mode A/D"
- Next in thread: Jonathan: "Re: Force Password Changes in mixed mode A/D"
- Reply: Jonathan: "Re: Force Password Changes in mixed mode A/D"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|