作成 2010.03.24
更新 2011.11.27
PowerShell で Active Directory のオブジェクト SID を取得する
事前準備は PowerShell で Active Directory の操作 を参照してください。
Import-Module ActiveDirectory
$u = Get-ADUser "cn=Administrator,cn=Users,dc=example,dc=lan"
$u.SID.ToString()
$g = Get-ADGroup "cn=Domain Users,cn=Users,dc=example,dc=lan"
$g.SID.ToString()
$c = Get-ADComputer "cn=DC1,ou=Domain Controllers,dc=example,dc=lan"
$c.SID.ToString()

©2004-2017 UPKEN IPv4