powershell 从活动目录中获取Windows用户所属的广告组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 从活动目录中获取Windows用户所属的广告组相关的知识,希望对你有一定的参考价值。
import-module activedirectory
$Resultsfilename = "c:\hp\results.txt"
Get-ADPrincipalGroupMembership "SteveKovatch" | select name | Format-List | Out-File -append $Resultsfilename
import-module activedirectory
$Resultsfilename = "c:\hp\results.txt"
Get-ADPrincipalGroupMembership "SteveKovatch" | select name, GroupCategory,distinguishedName | Format-List | Out-File -append $Resultsfilename
Get-ADPrincipalGroupMembership "SteveKovatch" | Format-List | Out-File -append $Resultsfilename
以上是关于powershell 从活动目录中获取Windows用户所属的广告组的主要内容,如果未能解决你的问题,请参考以下文章
powershell 这将获取活动目录中OU的组列表,然后输出到foreach块中附加的文件
活动目录 powershell 从组中 添加删除 用户
powershell 从Wallcat获取最新的Gradient Wallpaper并将其设置为活动状态 - 作为计划任务运行
powershell 使用PowerShell检查活动目录中组用户的帐户
powershell 获取gists的链接,Powershell版本。获取活动github用户的主题链接
powershell 这个powershell脚本从顶级目录获取ACl,然后将其与所有子目录和输出的ACL进行比较。