-
Hi, I'm trying to make a PowerShell script that counts the number of users in a specific OU in our Domain. This OU has 104 child OU's and 1.600 users. The script is supposed to count the users and then export the results to an excel file. My problem is the number of users I think. Because when...
-
Hi I need to obtain the size of a group of users home directories. So far I've got the path to each user but now I need some kind of loop for each of the homefolders. Script so far: Get-QADGroupMember 'domain\OU' | select Homedirectory, Name That gives me a list with path to homedirectory...