PowerShell 技能连载 - 获取 Active Directory 用户名
以下是一个在 Active Directory 中快速当前用户并且获取账户信息,例如显示名称的方法:
([adsisearcher]"(samaccountname=$env:USERNAME)").FindOne().Properties['displayname']
PowerShell 技能连载 - 获取 Active Directory 用户名
http://blog.vichamp.com/2015/06/26/getting-active-directory-user-name/