これは奇妙なものです。System.DirectoryServices
アセンブリを読み込んでから、System.DirectoryServices.DirectoryEntry
クラスのインスタンスを作成しようとしています。
これが私がやろうとしていることです:
PS C:> [System.Reflection.Assembly]::LoadWithPartialName("System.DirectoryServices")
GAC Version Location
--- ------- --------
True v2.0.50727 C:\Windows\assembly\GAC_MSIL\System.DirectoryServices\2.0.0.0__b03f5f7f11d50a3a\System.Directo...
アセンブリを正常にロードしたようですが、新しいオブジェクトをインスタンス化しようとすると失敗します:
PS C:\> $computer = new-object [System.DirectoryServices.DirectoryEntry]("WinNT://localhost,computer")
New-Object : Cannot find type [[System.DirectoryServices.DirectoryEntry]]: make sure the assembly containing this type
is loaded.
At line:1 char:23
+ $computer = new-object <<<< [System.DirectoryServices.DirectoryEntry]("WinNT://localhost,computer")
+ CategoryInfo : InvalidType: (:) [New-Object], PSArgumentException
+ FullyQualifiedErrorId : TypeNotFound,Microsoft.PowerShell.Commands.NewObjectCommand
ただし、もう少し鈍感な方法でやろうとすると、うまくいくようです。
$directoryServices = [System.Reflection.Assembly]::LoadWithPartialName("System.DirectoryServices")
$directoryEntryType = $directoryServices.GetType("System.DirectoryServices.DirectoryEntry")
$machine = New-Object $directoryEntryType("WinNT://localhost,computer")
$machine
オブジェクトが正常に作成されたことを示しています。
distinguishedName :
Path : WinNT://localhost,computer
これを行う適切な方法は何ですか?私は何を間違っていますか?