Does someone have an elegant way to provide to users a bunch of network drives in an Active Directory?

I want to create some network drives in this AD domain:

test.local
├── Classes
│   ├── 3A [students...]
│   ├── 3B [students...]
│   ├── ... 
│   └── 6D [students...]
└── Teachers
    └── [Teachers...]

student1, in class 3A for example should have access to the currents smb-shares :

  • 3A_data : (RO for the student, RW for teachers)
  • 3A_work : (RW for everyone)

Moreover some students are parts of some groups. For example it might exist a 3CHINESE group, containing all the student learning Chinese. Theses users must have access to 3CHINESE_data, and 3CHINESE_work too.

Every user also have a personal share for his own files.

I use a quite large PowerShell script to create all this structure, creating accounts, populate every OU, creating shares and rights using AGLP, but I haven’t found an elegant solution to create all theses drives.

I tried gpo but there’s a bunch of drives to create inside the gpo and it seems only possible to create them by hand.

I’m currently trying with DFS and name based enumeration but I’m not sure it’s the right way to do this, and I’m quite new to active directory.

Is my DFS solution seems the right way to do ? how can I use it to setup all my network drive ? Is there a better solution than network drives ?

1

You may use Group Policy Management and add the required drives to User Configuration – Preferences – Windows Settings – Drive Maps.

You could either

  • Set different settings as mapped drives to different GPOs and apply them to the related OU (Organizational Unit) This method requires the necessary placements were done before such as Country1OU contains students from Country1 and you apply Country1GPO to this OU which maps drives for directories under Country1Shares folder

OR

  • Again create different GPOs for each country but instead of moving students to OUs, apply the policies on the very top of OU structure or even as a domain policy. But for this case you should use security filtering such as Country2GPO permissions give read and apply access to only Country2Group which contains the students from Country2. As implied above this method requires creating AD groups for each country. Only Country2Group members can apply Country2GPO and map drives for Country2Shares.

On the file shares; to apply quotas groups, file screening policies (example an audio file can not be put onto the share even it has been renamed as .pptx), reporting, etc you can use File Server Resource Manager (FSRM)

For file / folder NTFS permission stability on the file shares, you can use GPO Settings under Computer Configuration – Policies – Security Settings – Filesystem to preserve the permissions.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Does someone have an elegant way to provide to users a bunch of network drives in an Active Directory?

I want to create some network drives in this AD domain:

test.local
├── Classes
│   ├── 3A [students...]
│   ├── 3B [students...]
│   ├── ... 
│   └── 6D [students...]
└── Teachers
    └── [Teachers...]

student1, in class 3A for example should have access to the currents smb-shares :

  • 3A_data : (RO for the student, RW for teachers)
  • 3A_work : (RW for everyone)

Moreover some students are parts of some groups. For example it might exist a 3CHINESE group, containing all the student learning Chinese. Theses users must have access to 3CHINESE_data, and 3CHINESE_work too.

Every user also have a personal share for his own files.

I use a quite large PowerShell script to create all this structure, creating accounts, populate every OU, creating shares and rights using AGLP, but I haven’t found an elegant solution to create all theses drives.

I tried gpo but there’s a bunch of drives to create inside the gpo and it seems only possible to create them by hand.

I’m currently trying with DFS and name based enumeration but I’m not sure it’s the right way to do this, and I’m quite new to active directory.

Is my DFS solution seems the right way to do ? how can I use it to setup all my network drive ? Is there a better solution than network drives ?

1

You may use Group Policy Management and add the required drives to User Configuration – Preferences – Windows Settings – Drive Maps.

You could either

  • Set different settings as mapped drives to different GPOs and apply them to the related OU (Organizational Unit) This method requires the necessary placements were done before such as Country1OU contains students from Country1 and you apply Country1GPO to this OU which maps drives for directories under Country1Shares folder

OR

  • Again create different GPOs for each country but instead of moving students to OUs, apply the policies on the very top of OU structure or even as a domain policy. But for this case you should use security filtering such as Country2GPO permissions give read and apply access to only Country2Group which contains the students from Country2. As implied above this method requires creating AD groups for each country. Only Country2Group members can apply Country2GPO and map drives for Country2Shares.

On the file shares; to apply quotas groups, file screening policies (example an audio file can not be put onto the share even it has been renamed as .pptx), reporting, etc you can use File Server Resource Manager (FSRM)

For file / folder NTFS permission stability on the file shares, you can use GPO Settings under Computer Configuration – Policies – Security Settings – Filesystem to preserve the permissions.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Does someone have an elegant way to provide to users a bunch of network drives in an Active Directory?

I want to create some network drives in this AD domain:

test.local
├── Classes
│   ├── 3A [students...]
│   ├── 3B [students...]
│   ├── ... 
│   └── 6D [students...]
└── Teachers
    └── [Teachers...]

student1, in class 3A for example should have access to the currents smb-shares :

  • 3A_data : (RO for the student, RW for teachers)
  • 3A_work : (RW for everyone)

Moreover some students are parts of some groups. For example it might exist a 3CHINESE group, containing all the student learning Chinese. Theses users must have access to 3CHINESE_data, and 3CHINESE_work too.

Every user also have a personal share for his own files.

I use a quite large PowerShell script to create all this structure, creating accounts, populate every OU, creating shares and rights using AGLP, but I haven’t found an elegant solution to create all theses drives.

I tried gpo but there’s a bunch of drives to create inside the gpo and it seems only possible to create them by hand.

I’m currently trying with DFS and name based enumeration but I’m not sure it’s the right way to do this, and I’m quite new to active directory.

Is my DFS solution seems the right way to do ? how can I use it to setup all my network drive ? Is there a better solution than network drives ?

1

You may use Group Policy Management and add the required drives to User Configuration – Preferences – Windows Settings – Drive Maps.

You could either

  • Set different settings as mapped drives to different GPOs and apply them to the related OU (Organizational Unit) This method requires the necessary placements were done before such as Country1OU contains students from Country1 and you apply Country1GPO to this OU which maps drives for directories under Country1Shares folder

OR

  • Again create different GPOs for each country but instead of moving students to OUs, apply the policies on the very top of OU structure or even as a domain policy. But for this case you should use security filtering such as Country2GPO permissions give read and apply access to only Country2Group which contains the students from Country2. As implied above this method requires creating AD groups for each country. Only Country2Group members can apply Country2GPO and map drives for Country2Shares.

On the file shares; to apply quotas groups, file screening policies (example an audio file can not be put onto the share even it has been renamed as .pptx), reporting, etc you can use File Server Resource Manager (FSRM)

For file / folder NTFS permission stability on the file shares, you can use GPO Settings under Computer Configuration – Policies – Security Settings – Filesystem to preserve the permissions.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Does someone have an elegant way to provide to users a bunch of network drives in an Active Directory?

I want to create some network drives in this AD domain:

test.local
├── Classes
│   ├── 3A [students...]
│   ├── 3B [students...]
│   ├── ... 
│   └── 6D [students...]
└── Teachers
    └── [Teachers...]

student1, in class 3A for example should have access to the currents smb-shares :

  • 3A_data : (RO for the student, RW for teachers)
  • 3A_work : (RW for everyone)

Moreover some students are parts of some groups. For example it might exist a 3CHINESE group, containing all the student learning Chinese. Theses users must have access to 3CHINESE_data, and 3CHINESE_work too.

Every user also have a personal share for his own files.

I use a quite large PowerShell script to create all this structure, creating accounts, populate every OU, creating shares and rights using AGLP, but I haven’t found an elegant solution to create all theses drives.

I tried gpo but there’s a bunch of drives to create inside the gpo and it seems only possible to create them by hand.

I’m currently trying with DFS and name based enumeration but I’m not sure it’s the right way to do this, and I’m quite new to active directory.

Is my DFS solution seems the right way to do ? how can I use it to setup all my network drive ? Is there a better solution than network drives ?

1

You may use Group Policy Management and add the required drives to User Configuration – Preferences – Windows Settings – Drive Maps.

You could either

  • Set different settings as mapped drives to different GPOs and apply them to the related OU (Organizational Unit) This method requires the necessary placements were done before such as Country1OU contains students from Country1 and you apply Country1GPO to this OU which maps drives for directories under Country1Shares folder

OR

  • Again create different GPOs for each country but instead of moving students to OUs, apply the policies on the very top of OU structure or even as a domain policy. But for this case you should use security filtering such as Country2GPO permissions give read and apply access to only Country2Group which contains the students from Country2. As implied above this method requires creating AD groups for each country. Only Country2Group members can apply Country2GPO and map drives for Country2Shares.

On the file shares; to apply quotas groups, file screening policies (example an audio file can not be put onto the share even it has been renamed as .pptx), reporting, etc you can use File Server Resource Manager (FSRM)

For file / folder NTFS permission stability on the file shares, you can use GPO Settings under Computer Configuration – Policies – Security Settings – Filesystem to preserve the permissions.

2

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật