Can someone help and tell me why these 4 users below ( inside the red circle ) showing the GUID not their names under the identity when I look them in group lookup How do I fix it? The 4 users were recently added and they were created in local Active Directory same way with the others.
Sorry for my english but hopefully you guys will understand me. Thank you so much
$DDLName = "Gold Coast"
$DDLProperties = Get-DynamicDistributionGroup -Identity $DDLName
Get-Recipient -RecipientPreviewFilter ($DDLProperties.RecipientFilter)
I tried to reproduce the same in my environment and got the below results:
$DDLName = "DDLNAME"
$DDLProperties = Get-DynamicDistributionGroup -Identity $DDLName
Get-Recipient -RecipientPreviewFilter ($DDLProperties.RecipientFilter)
Note that: Microsoft updated the naming scheme for the user's Name parameter, being displayed as externaldirectoryobjectid. Refer this blog
To resolve the GUID to Name, you can make use of parameters like DisplayName or Name.
(Get-Recipient 860047a6-a9bc-4d63-8d6f-XXXX).DisplayName
If still the issue persists, check whether users are active and have Office 365 license.
Reference:
Changes in Exchange Mailbox Names and Distinguished Names by Tony Redmond
Related
We are using the MS Graph API and would like to check the changes of users in a certain group. Currently we get the users via this query:
https://graph.microsoft.com/v1.0/groups/group-id/members
This is how we retrieved the delta of the group:
https://graph.microsoft.com/v1.0/groups/delta?$filter=id eq 'GroupId'&$select=members
Now my question would be if there is a way to relate this delta only to users in this group.
I can see a result when I add or delete a user from the group, but I need a result, even if the name, street or something else getting changed.
I would be very grateful for any feedback.
Kind regards
There are limited supported-resources to query delta , which includes groups, Users etc but not particularly for member and its properties of one such group.
I tried to query for members this way and got unsupported error
https://graph.microsoft.com/v1.0/groups/xxxxxxxx/members/delta?$select=displayName,jobTitle,mobilePhone
But you may retrieve members of all groups whose membership changes, such as when users are added or removed /( updated ) as you knew .
I’ve tried this way with prefer: return=minimal 'header' to return only the object properties that have changed since the last round. and got removed and updated users but their properties that changed are not listed .We may need to copy the user Id that changed and query for that using user-delta
https://graph.microsoft.com/beta/groups/delta?$filter=id+eq+'xxxx-xxxxa-xxxxx52eb'&$select=members+&$select=displayName
(or)
https://graph.microsoft.com/beta/groups/delta?$filter=id+eq+'xxxx2-xxxxxxxxeb'&$expand=members
To filter separately for other properties like jobTitle ,its not valid .
https://graph.microsoft.com/beta/groups/delta?$filter=id+eq+'xxxxxxxxxxxx2-xxx'&$expand=members+&$select=displayName,jobTitle,mobilePhone
You can raise a Support request for the same.
References :
delta-query-groups | Microsoft Docssupported-resources
microsoft-graph-issues
i'm having trouble being able to change the "licensed to" in visual studio 2012. if i publish an app it's coming out as "HP" and it needs to be from me. I found an article online about this but the steps don't seem to be logical.
can anyone help me with this?
here is the article that i found:
http://blog.brouwer.pro/2012/09/how-to-change-licensed-to-name-for-visual-studio-2012/
the problem is for step 2 in the registry i don't have "username" and also for step 4 i don't know what this is (replace the placeholder with your own username)
any help would be amazing!!!
If the UserName value does not exist in Registration, you'll need to create it yourself.
Just create it as a new string value, and set the value to your name.
The "(replace the placeholder with your own username)" just means to replace {YOUR_USER} in the given path with your user name.
For example if your user name is 'Superior', navigate to C:\Users\Superior\AppData\Roaming\Microsoft\VisualStudio\11.0
A user is not able to edit a form. The user had editor access and i've tried to replicate the issue using a test user and providing the same access as the user, but to no avail. I came across a link which told me that there is something called as additional ACL control in Lotus Administrator. I'm not sure if this actually can influence the editing privileges. I don't think that could be the problem. Anyway, please let me know if you can figure out the problem.
Additional info:
The user is a part of a distribution list(multipurpose group) and the group has editor access.
The default access to the form is Author, with a authors field in the form.
The user has 2 names mentioned in the names.nsf person document. An old name and a new name.
The required user roles are assigned to the group.
Let me know if you need additional info.
With Editor rights she should be able to edit. Please check her rights by placing a Computed Text with #UserAccess on the form.
Or if she is using a Notes client she can simply click the "Security" icon in the bottom toolbar of the Notes, near the right corner. It will open a dialog box telling what is her access level to the database.
A few things to check:
is the user listed explicitly in the ACL? If so, those rights will take precedence over any groups she's in.
check the authors field carefully. Best option is to look at the properties of the doc she's editing via the Notes client and examine the authors field in the dialog. That will let you see if any code altered the list of allowed authors. If she's an editor this shouldn't matter but based on the behavior you are seeing it sounds like she's acting as an author.
Make sure that the names in the authors fields are being stored in the canonical format and are not abbreviated or in common name. EG: using Herny Newberry/MyOrg does not work while using CN=Henry Newberry/O=MyOrg does.
The issue is solved. There was some problem with the user configuration. Thats the reason she was getting author access even though she was an editor. After reconfiguration of her Notes client, she'd able to edit the form now. Thanks to all of you for your help.
Although already answered and a solution found, it should be noted that user-names listed in the 'fullname' field of the NAB person record should list the current or 'newname' first as other names may not be recognized.
I have a custom list in which there is one column as employee which has datatype as 'person or group' in sharepoint 2010. now i want the picture of users in peaplepicker box of employee. How can i do this.
Also i want to know how to add image to a user in active directory.
Thier are two aspects of your problem first to add images to profile for that you would have to update users profile in sharepoint or active directory with his pictures.
second part where you want to show image of a person with people picker. for this you would have to create a custom people picker follow the code provided in article below to create custom people picker field type
1. this post will provide help how to customize people picker
http://panvega.wordpress.com/2008/02/22/custom-sharepoint-people-picker/
2. this post will provide help to create new field type
http://www.alectang.com/blog/archive/2009/11/23/creating-custom-field-type-in-sharepoint-list-50.aspx
Does sharepoint use the thumbnailphoto/jpegPhoto attribute?
If it does you can use powershell to update the image file. (TechNet Forums)
[byte[]]$jpg = Get-Content c:\photo.jpg -encoding byte
$user = [adsi]"LDAP://cn=user1,cn=users,dc=domain,dc=loc"
$user.Properties["jpegPhoto"].Clear()
$null = $user.Properties["jpegPhoto"].Add($jpg)
$user.CommitChanges()
I designed a site in share point. There is a column called "Issue ID (linked to item)" in ALL Issues view. I am using this column to list and identify the items which are created by employees. It increases by 1 as a new issue is created. Unfortunately, I have to reset this ID to 1 because during the test period I created and deleted blank issues. Although they were deleted, the share point increasing Issue ID from the last deleted issue (89).
Is there an easy way to do this? how can I reset this auto number? I need to reset this counter as soon as possible without any risk...
Do you kindly help me? I would be glad if you explain it in detail.
Thank you,
If your Issues list wasn't heavily customized and nor referenced by GUID in any custom code, the simplest and most supported option would be to recreate it with the same name after deletion as a customized template you could have saved without contents from list settings page before deleting or as a standard Issues list.