web-dev-qa-db-ja.com

PowerShellとWMIを介してユーザー名からユーザーのメールアドレスを取得しますか?

ユーザーのネットワークログイン名を持っています。 PowerShellとWMIから、そのユーザーの有効なメールを取得することは可能ですか?ログイン名はメールの名前とは異なるため、ログイン名とメールドメインを組み合わせることはできません。

11
Michael Kelley

最も簡単な方法は、Active-Directoryを使用することです。

PowerShell V2.0ではなくPowerShellタグを使用しているので、ADSIを使用できます。

Clear-Host
$dn = New-Object System.DirectoryServices.DirectoryEntry ("LDAP://WM2008R2ENT:389/dc=dom,dc=fr","[email protected]","Pwd")

# Look for a user
$user2Find = "user1"
$Rech = new-object System.DirectoryServices.DirectorySearcher($dn)
$rc = $Rech.filter = "((sAMAccountName=$user2Find))"
$rc = $Rech.SearchScope = "subtree"
$rc = $Rech.PropertiesToLoad.Add("mail");

$theUser = $Rech.FindOne()
if ($theUser -ne $null)
{
  Write-Host $theUser.Properties["mail"]
}

フィルターでuserPrincipalNameの代わりにsAMAccountNameを使用することもできます。userPrincipalNameの場合はuser @ domain 形。


WMIを使用:絶対にWMIで実行する場合。

$user2Find = "user1"
$query = "SELECT * FROM ds_user where ds_sAMAccountName='$user2find'"
$user = Get-WmiObject -Query $query -Namespace "root\Directory\LDAP"
$user.DS_mail

サーバーまたはドメイン内のコンピューターからローカルに2番目のソリューションを使用できますが、ドメイン外からWMIへの認証を行うのは少し複雑です。


PowerShell 2.0を使用

Import-Module activedirectory
$user2Find = "user1"
$user = Get-ADUser $user2Find -Properties mail
$user.mail
23
JPBlanc

ここに別の可能な方法があります( 元のソース ):

PS> [adsisearcher].FullName
System.DirectoryServices.DirectorySearcher

PS> $searcher = [adsisearcher]"(objectClass=user)"
PS> $searcher

CacheResults             : True
ClientTimeout            : -00:00:01
PropertyNamesOnly        : False
Filter                   : (objectClass=user)
PageSize                 : 0
PropertiesToLoad         : {}
ReferralChasing          : External
SearchScope              : Subtree
ServerPageTimeLimit      : -00:00:01
ServerTimeLimit          : -00:00:01
SizeLimit                : 0
SearchRoot               :
Sort                     : System.DirectoryServices.SortOption
Asynchronous             : False
Tombstone                : False
AttributeScopeQuery      :
DerefAlias               : Never
SecurityMasks            : None
ExtendedDN               : None
DirectorySynchronization :
VirtualListView          :
Site                     :
Container                :

PS> $searcher = [adsisearcher]"(samaccountname=$env:USERNAME)"
PS> $searcher.FindOne().Properties.mail
10
Michael Kelley

WMIではありませんが、これでも同じように機能します。

PS> ([adsi]"WinNT://$env:USERDOMAIN/$env:USERNAME,user").Properties["mail"]
0
user152949