How to refresh a users permissions?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Question:

How do I refresh on the local computer the users AD( LDAP ) credentials
without having them re-log our re-boot their system?

Scenario:
Users A is denied access to folder Z. Admin on DC grants User A group
membership to a group that has access to folder Z. User A ( without having to
log out or reboot ) access folder Z.

Comments:
This could be done by simply running a small c# program that calls to
refresh the permissions.


Thanks
ISD
 
ISD said:
Question:

How do I refresh on the local computer the users AD( LDAP ) credentials
without having them re-log our re-boot their system?

Scenario:
Users A is denied access to folder Z. Admin on DC grants User A group
membership to a group that has access to folder Z. User A ( without having to
log out or reboot ) access folder Z.

Comments:
This could be done by simply running a small c# program that calls to
refresh the permissions.


Thanks
ISD


You can't without a new logon, access privilege information is part of the access token
obtained during logon, so "refresh" means logoff/logon.

Willy.
 
Thanks Willy. I was afraid of that...

Willy Denoyette said:
You can't without a new logon, access privilege information is part of the access token
obtained during logon, so "refresh" means logoff/logon.

Willy.
 
Back
Top