No announcements
Found 2294868 threads
-
1 Votes
powershell script for finding groups containing only members from specific OU
So you can get-adgroupmember, then use where-object checking each member's .enabled property to get only the ones that are disabled.Answered | 8 Replies | 4634 Views | Created by himanshu.rana - Thursday, April 25, 2013 6:37 AM | Last reply by jrv - Monday, April 29, 2013 5:33 AM -
0 Votes
Export ad user with member of group only
Apparently this happens only when managers.Answered | 6 Replies | 21818 Views | Created by Off2work - Thursday, October 17, 2013 11:29 AM | Last reply by Ronny_G - Wednesday, October 7, 2015 10:45 AM -
0 Votes
Powershell to find AD group Change
Hi, Please refer below link on Monitoring AD Privileged Groups using ...Answered | 7 Replies | 4224 Views | Created by PriyabrataSethi - Wednesday, September 2, 2015 5:36 AM | Last reply by Gopi-JiJiTechnologies - Friday, September 4, 2015 10:58 AM -
3 Votes
ad user only in one ad group
A script to find all users in more than one of the specified groups, using the PowerShell AD Modules, could be similar to below: # ...Answered | 3 Replies | 1173 Views | Created by User159951 - Tuesday, February 3, 2015 2:35 PM | Last reply by User159951 - Thursday, February 5, 2015 10:02 AM -
9 Votes
Adding Members to AD Security Group with Powershell
I executed the script and it wrote many lines of: WARNING: Member already added WARNING: Member already ...Answered | 18 Replies | 30268 Views | Created by the_bollo - Friday, August 3, 2012 3:04 PM | Last reply by Rockey From SL - Friday, February 16, 2018 6:09 AM -
0 Votes
Find, disable and move AD Users
I also have a move script that works great :) But now im only wondering if its possible to remove all the group memberships from the ...Answered | 14 Replies | 789 Views | Created by EvenOps - Friday, March 31, 2017 11:48 AM | Last reply by Richard Mueller - Saturday, April 8, 2017 3:52 PM -
0 Votes
Powershell - Create an AD group and add users to that group
It was fine when I created one group and added 3 users but when I created 2 groups (group 1 had 3 users and group 2 had 4 users) ...Answered | 4 Replies | 8209 Views | Created by macrun95 - Wednesday, November 12, 2014 9:11 PM | Last reply by macrun95 - Thursday, November 13, 2014 9:19 PM -
0 Votes
Adding users in groups with powershell
For Add-ADGroupMember, the members have to be in this format : user1,user2,user3 (Separated by commas) The member name have to be either ...Answered | 3 Replies | 4435 Views | Created by Marcos Santiago - Wednesday, August 3, 2011 6:35 PM | Last reply by Marcos Santiago - Friday, August 5, 2011 12:59 PM -
0 Votes
Find Users Member of groups
Hi, This is what I use: Get-ADGroup -Filter * | ForEach-Object { $props = @{ GroupName = $_.Name Members = ...Answered | 3 Replies | 803 Views | Created by valente888 - Thursday, December 10, 2015 1:34 PM | Last reply by Mike Laughlin - Friday, December 11, 2015 12:57 PM -
1 Votes
List groups having a user as a member
Of course, another way to retrieve all groups that a given user is a direct member of would be to bind to the user ...Answered | 4 Replies | 3088 Views | Created by list groups having a user as a member - Thursday, October 15, 2015 12:49 PM | Last reply by Chris128 - Thursday, October 15, 2015 9:11 PM -
0 Votes
Powershell to find domain disabled users
The running PowerShell version is 5.1.Answered | 1 Replies | 655 Views | Created by Rockford82 - Thursday, December 3, 2020 6:23 AM | Last reply by Leon Laude - Thursday, December 3, 2020 8:06 AM -
0 Votes
Find All the groups a user is member of and replace user from those groups
Thanks jrv I was able to create a list of the groups user is a member of.Answered | 5 Replies | 646 Views | Created by 1979Sam - Thursday, May 5, 2016 5:51 AM | Last reply by Elaine Jing - Friday, May 6, 2016 7:06 AM -
6 Votes
Powershell login script to map a drive if a user is a member of a AD Group
But have you got a same one which manage nested groups ?Answered | 10 Replies | 45313 Views | Created by MarkStonegate - Thursday, August 5, 2010 7:58 PM | Last reply by bin_bin - Friday, April 26, 2019 9:51 AM -
0 Votes
PowerShell Script to Add Users & Groups to AD Groups
Thank You it worked Import-Csv C:\MyInput.csv | ForEach { $users = $_.UserandGroup.Split(',') Add-ADGroupMember -Identity $_.ADGroup -Members ...Answered | 6 Replies | 11330 Views | Created by gNikhil - Friday, December 30, 2016 5:40 PM | Last reply by clayman2 - Tuesday, January 3, 2017 12:52 PM -
5 Votes
Adding AD Group users to SharePoint groups Using PowerShell
The script will get the AD group members and add them to SharePoint Group.Answered | 16 Replies | 10783 Views | Created by Div210 - Tuesday, February 16, 2016 1:27 AM | Last reply by MoreSuperDave - Wednesday, March 14, 2018 7:15 PM -
7 Votes
Powershell script to find if an AD user is it own manager.
I can see around 5227 users which are same as numbers of actual users in AD.Answered | 18 Replies | 1850 Views | Created by M. Jawad Hassan Khan - Wednesday, November 2, 2016 12:25 PM | Last reply by M. Jawad Hassan Khan - Sunday, November 6, 2016 8:49 AM -
0 Votes
AD group Members list
Keep track of the count of Members in the admin group.Answered | 1 Replies | 1566 Views | Created by bubba1984 - Wednesday, March 12, 2014 3:53 PM | Last reply by Maffiow - Tuesday, March 18, 2014 4:20 PM -
0 Votes
Query a only user that members of af specific group
You existing filter retieves all users that are not disabled.Answered | 6 Replies | 1814 Views | Created by LongQuo - Tuesday, June 26, 2012 10:30 AM | Last reply by LongQuo - Wednesday, June 27, 2012 7:11 AM -
0 Votes
Export AD group members
So the member attribute of "Domain Users" could well be empty, since all users probably have this group designated as their ...Answered | 6 Replies | 4340 Views | Created by rbuchanan139 - Friday, September 16, 2016 8:28 PM | Last reply by Richard Mueller - Friday, September 16, 2016 9:41 PM -
1 Votes
Powershell to list all GPOs an AD group is a member of
After that, you could check these group policy, then the group has been filter out, if not then the gpo is applied on the group.Answered | 3 Replies | 1816 Views | Created by ptt2014 - Tuesday, March 1, 2016 3:17 PM | Last reply by Elaine Jing - Wednesday, March 2, 2016 9:23 AM - Items 1 to 20 of 2294868 Next ›
No announcements