Questions tagged [adgroup]

A set of keywords, ads, and bids that is a key part of how your account is organized. Each ad campaign is made up of one or more ad groups.

  • An ad group consists of one or more ads, keywords, placements, or other targeting methods. You also set a default bid for each ad group.
  • We recommend that you create a separate ad group for each theme such as for each product you offer (like wedding catering and party catering), selling points (like free consultation and gourmet menus), or ways to describe your business (like caterer and on-site food service).
  • The ads and keywords in each ad group should directly relate to that group's theme.
62 questions
0
votes
1 answer

Powershell - Remove-ADGroupMember

I'm trying to remove the groups from users in other domain. Example: Me as admin wants to disable an user and remove his groups in other domain. The problem is I don't know how to use Remove-ADGroupMember -Server in Foreach loop, if I don't use…
jjquintero245
  • 49
  • 1
  • 8
0
votes
0 answers

UserPrincipal.GetAuthorizationGroups() throwing exception when Distinguished Name in UserPrincipal contains special characters (a comma in my case)

I have a situation where I need to find AD Group of a user recursively. e.g. UserA is part of Group3, Group3 is part of Group2, Group2 is part of Group1 So, UserA is part of Group3, Group2, Group1. Now, to find all the groups for a user I have used…
raunakchoraria
  • 358
  • 2
  • 15
0
votes
1 answer

Replace a SharePoint group with another

I have a SharePoint sites with a numbers of subsite's. On some of the sites and subsites are there an AD group on called "a-team". The group "a-team" must no longer have access. A new group called "c-team" has been created. My problem is to replace…
Skak2000
  • 86
  • 1
  • 4
0
votes
1 answer

pywintypes.com error when running pyad.adgroup on flask

I am creating a simple app in Python 3.5.2 that authenticates users via Active Directory and applies additional rules based on a user's group membership. The app can successfully authenticate users using the win32security package, and tries to…
Andy Y
  • 21
  • 4
0
votes
2 answers

How to get all groups of members who distinguishedName begins with something

My requirement is to get all the groups of users whose distinguishedName begins with say Auser*. So, I created a filter in Apache Directory Studio (& (objectClass=group) (member=CN=Auser*) ) However, to my surprise, this does not return any…
SimpleGuy
  • 2,764
  • 5
  • 28
  • 45
0
votes
0 answers

Permission set for AD Groups Added does not work - SQL Server

I am having a very tough time figuring out the permissions in my database. My users gain access to the database through reports on SharePoint (via Impersonated authentication configured through Kerberos). Users, who are impersonated, are all added…
LearnByReading
  • 1,813
  • 4
  • 21
  • 43
0
votes
1 answer

powershell delete aduser groupmemberchip of other childdomain

script should delete a ADUser of all of his Groupmemberchips (including memberships in forestdomain and other childdomains), deactivate it and move it into another OU. environment: forest-domain: forest.com child-domains: child1.forest.com …
0
votes
1 answer

PowerShell Function to check group member not working

I found this function I'd like to use in a script I'm writing, but it keeps coming back $false when I can see an account is in a group and I can't figure out why? function Check-IsGroupMember{ Param($user,$grp) $strFilter =…
MarcGel
  • 299
  • 6
  • 20
0
votes
1 answer

PowerShell AD Group Creation from full DN

I'm working on a PS-Script to automatically create AD-Groups from our Corporate Directory. The group-parameter is looking like this: “CN=TEST_FOLDER_RW,OU=Groups,OU=Managed,OU=europe,DC=company,DC=com” But the required syntax for New-ADGroup would…
Michael
  • 289
  • 2
  • 5
  • 14
0
votes
1 answer

Update ad creatives without loosing likes and shares

Using Facebook Ads API, we can create new creative set, and replace it in the ad group, but this result in loosing the performance records (and engagement). Is there anyway to update the picture/text without loosing the performance records ?
lcl
  • 13
  • 3
0
votes
1 answer

Check if AD group exists or not

Trying to check if AD group exists or not using below script : $Path = "LDAP://dc=cmc,dc=com" $object = "CMC\QTKS-DEP-Admin-Temp" $type = "Group" $search = [System.DirectoryServices.DirectorySearcher]$Path $search.Filter =…
user3180704
  • 119
  • 3
  • 8
0
votes
1 answer

Out-File ADGroups and ADGroupMember

I'm trying to get an CSV Output from ADGroupMembers in ADGroups like this: groupname,member1,member2,member3... I use the following script: Get-ADGroup -Filter * -SearchBase "OU=myou,OU=myou,DC=domain,DC=local" | group {$_.name} | % { $group =…
0
votes
2 answers

Ad Group October 2nd 2013 changes: bid_info is returning still numeric indexes instead of strings

we have enabled the October 2nd 2013 breaking changes for our application yesterday, the change to the application settings is already confirmed. If I submit bid_info in the new format (with strings instead of numeric indexes) it works: "bid_info":…
0
votes
1 answer

facebook ad_status and adgroup_status

In facebook adgroup API only adgroup_status is introduced as a filed. however, when you issue a query to fetch an adgroup fields, ad_status is also retrieved. what is the difference between these two? Thanks,
0
votes
1 answer

Facebook Ads Api: Create paused adgroup/ad

I'm trying to make the call to FB API to create a new adgroup and ad, with adgroup status set to 9 (adgroup paused). However, my new adgroup goes through following phases: - adgroup_status: 4 (pending review) and then - adgroup_status: 1…
hummingBird
  • 2,495
  • 3
  • 23
  • 43