Please excuse my beginner level powershell. I want to be able to combine the results of different results of Get-ACL into one object that'll later be exported
At the very basic level all I want is to combine different results of different folders for code below:
$test = (get-acl $path).Access | select -ExpandProperty IdentityReference
This gives me a result of:
Value
-----
NT AUTHORITY\SYSTEM
BUILTIN\Administrators
Etc
Etc
I want an object that will be like some thing like this (plus more columns, about 4-5 total):
Folder1 Folder2
----- -------
NT AUTHORITY\SYSTEM NT AUTHORITY\SYSTEM
BUILTIN\Administrators BUILTIN\Administrators
Etc Etc
Etc Etc
I tried exploring building a custom object, but I couldn't find a way to list the objects values properly like my first results
$Custom = New-Object PSObject
$Custom | Add-Member -type NoteProperty -name Folder1 -value $test.value
Gives me:
Folder1
-------
{NT AUTHORITY\SYSTEM, BUILTIN\Administrators, etc, etc ...}
How can I handle this to give me a result like the first object and then in turn add more to the custom object?
Thanks in advance, Lou
Based on your description, I think what you need is simply a collection of objects, i.e.,
$aclObjectList
This script captures a collection where each object is the type of object returned by
get-acl
. I do this just so I can show you the path property of each object to demonstrate that each object is for one of the three folders involvedThen, the script loops through the array of
get-acl
objects and outputs thepath
andIdentityReference
of eachIf you want to export a single object, then export
$aclObjectList
Output is:
By the way, the datatype of the object returned by get-acl is a System.Security.AccessControl.DirectorySecurity. You can see this by, e.g., piping one of the $aclObject variables to Get-Member: