Dossiers partages : Comment savoir qui a acces a quoi ?

Bonjour,

Je suis admin reseau sur un domaine 2003, je voudrais savoir s’il existe un outil permettant de rechercher les utilisateurs et groupes qui ont acces a tel ou tel dossiers partages du reseau ou ceux du DFS.

exemple :

//server1/share1 =
MYDOMAIN1/Accounting Group (read, write, see content, delete,…)
MYDOMAIN1/Marketing Group (read,see content)
MYDOMAIN2/Martin (read,see content)
MYDOMAIN2/Jack (read,see content)

//server1/share2
MYDOMAIN1/Paul (read, see content)
MYDOMAIN2/John (read, see content)

//server2/share1

merci

ok… bon apparament ca existe pas… :stuck_out_tongue:

Pas à ma connaissance. :neutre:

Ok merci quand meme de ta reponse :slight_smile:

Pour ceux que ca interesse jai trouve une facon de faire ca avec HYENA

Detail en anglais :

Here you go:

In Hyena select the server or servers that you want to search, then go to Tools->Exporter Pro->Export Selected Objects.
Click the Settings button, then double-click on Security Access.
Check the box to Export Security Information and enter an Output File Name.

For share permissions, check the box for shares and choose the type of shares you want reported on. For NTFS file and directory permissions check the box for Files and Directories.

Check the box to only export information for users/groups listed in this file. Enter a filename that will contain the users/groups you want to search for. The file doesn’t have to exist yet because when you click the Edit button Notepad will open and ask you if you want to create it. In the file you will list, one per line, the users and/or groups you want to search for. Then click OK to close that dialog.

You’ll also need a File/Directory template, so double-click on File/Directory. Click the New button at the bottom, give it a Template Name and an Output File Name. If you only want to search directories, check the box for that, then click the Add button beside Shared Directory Paths. Choose the shares you want, how far down you want it to scan, then click OK.

Security Access and File/Directory should be the only options enabled on this screen, if there is anything else enabled, double-click on them and disable them. When done, click Close and click Start Export.

When finished you can open the output file specified on the Security Access tab with Excel and see if that is what you are looking for.

sources : 72.32.210.42…

www.systemtools.com…

tu cliques droit sur le poste de travail puis sur gérer et ensuite tu vas dans dossier partagés puis fichier ouverts et là tu vas qui est connecter et quel sont ses droits

Bonjour,

Pour savoir quel sont les dossiers auquels un user a droit je ne connais pas, par contre tu peux savoir quels sont les droits sur un dossier avec la commande “cacls”.

\Serveur1\Dossier1
Domaine1\Group1:(OI)(CI)F
Domaine1\user1:(OI)(CI)C
Domaine1\user2:(OI)(CI)C

Le plus simple est de créer un .bat :

“d:” -> Pour aller sur le lecteur où les dossiers sont partagé

“cd d:\Dossier1\Partage1” -> pour ouvrir le dossier partagé
“cacls . /t > d:\Resultats\partage1.txt” -> pour calculer les droits et inscrire le résultat dans un fichier texte dans le dossier crée à cet effet.

“cd d:\Dossier1\Partage2”
“cacls . /t > d:\Resultats\partage2.txt”

En espérant t’avoir aidé un peut…