User Profile
romanmensch
Copper Contributor
Joined 6 years ago
User Widgets
Recent Discussions
Re: Azure Powershell Script for Group Based Roles PIM ?
Yes i had something like this but it doesn't work: $groupId = "" $upn="" Connect-AzureAD $resource = Get-AzureADMSPrivilegedResource -ProviderId aadGroups $subject = Get-AzureADUser -Filter "userPrincipalName eq '$upn'" # here you will require some additionnal filtering depending on your environment $roleDefinitionCollection = Get-AzureADMSPrivilegedRoleDefinition -ProviderId "aadGroups" -ResourceId $groupId #this works only when pimed in my case: $roleDefinitionCollection = Get-AzureADMSPrivilegedRoleAssignment -ProviderId "aadGroups" -ResourceId $resource.id -Filter "ResourceId eq '$groupId' and AssignmentState eq 'Eligible'" $reason = "test" foreach ($roleDefinition in $roleDefinitionCollection) { $schedule = New-Object Microsoft.Open.MSGraph.Model.AzureADMSPrivilegedSchedule $schedule.Type = "Once" $schedule.Duration="PT1H" $schedule.StartDateTime = (Get-Date).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ss.fffZ") Open-AzureADMSPrivilegedRoleAssignmentRequest -ProviderId "aadGroups" -Schedule $schedule -ResourceId $groupId -RoleDefinitionId $roleDefinition.id -SubjectId $subject.ObjectId -AssignmentState "Active" -Type "UserAdd" -Reason $reason }2.8KViews0likes0CommentsWrong Profile Photo in Excel Word PowerPoint - MS Office 365
Hello everyone, I have the following problem in my organization. We have a user who has changed the profile photo in M365, but it does not change in the rich office client M365 with Excel Word and PowerPoint, it was already 6 days ago. Do you have any idea what I can do. The Win10 client is a hybrid join Device and in MS Outlook it has changed the new Photo but in the other office Applications not? Ideas are very welcome and appreciated. Many Thanks4.7KViews1like5CommentsRe: Wrong Profile Photo in Excel Word PowerPoint - MS Office 365
Surya_Pammi Thank you very much for the quick reply. We are currently checking which photo is stored in the on prem AD. The device is stored as a hybrid join device under the user name in Azure AD. In Azure under the username is the correct photo but in onprem AD... we will check that..4.6KViews0likes0CommentsRe: Wrong Profile Photo in Excel Word PowerPoint - MS Office 365
Hello Surya_Pammi The profile photo has been changed on the web. A link leads there e.g. from Excel. Change Picture -> to Delve https://delve.office.com/. Do you think it would make a difference in the OWA? In the Outlook 365 local client there he would have changed it automaticaly. But if you connect e.g. without VPN, only the initials come in Excel and with VPN company network the old picture appears in the Excel. However, this only applies locally to Office in the products PowerPoint, Excel and Word. We even provided the user with a new computer and unfortunately the same problem. Thanks & Regards Roman4.7KViews0likes3CommentsRe: Random MFA prompts from Universal Store Native Client
Is there already a solution or an update here? Nothing has been written for a long time. We have the same problem with business devices Win10 that are hybrid join Azure AD and users get an error. We have a test group that has Windows Hello and it doesn't appear there. Can it be beaten with stronger authentication? For example with setting a pin?We are very grateful for any suggestions.18KViews0likes1Comment