Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
ms:win:getaccountcreater [2023/05/10 09:51] – created jsms:win:getaccountcreater [2023/05/10 10:03] (current) js
Line 1: Line 1:
-====== Get Account Creater ======+====== Get Account Creator ======
  
 +AD Computer Object Property **ntsecuritydescriptor** includes Owner
 +
 +<code bash>get-adcomputer -id <computerobject> -property ntsecuritydescriptor | select-object -expand ntsecuritydescriptor</code>
 +
 +Example:
 +
 +<code bash>PS C:\>get-adcomputer -id v2xen-15 -property ntsecuritydescriptor | select-object -expand ntsecuritydescriptor
 +
 +Path Owner            Access
 +---- -----            ------
 +     DOMAIN\join_user NT AUTHORITY\SELF Allow  ...
 +
 +</code>