SeniorConsulting

Results 21 comments of SeniorConsulting

This may or may not be of assistance, but there's a related bug on over here: https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/1439 The recommendation here was to upgrade to PS7.2.5

Hi drdamour, I don't see a -Proxy parameter for this cmdlet: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.identity.signins/get-mgpolicyclaimmappingpolicy?view=graph-powershell-1.0 I don't recall seeing it for any of the Graph SDK cmdlets I've encountered. As for how to...

Right you are. It seems like you've delved far further into this one than I have. I'll leave it to the **_actual_** devs to respond :) Thanks for the detailed...

Gidday, I think I've managed to prepare what you're looking for: ``` #Get all groups. Filter on Id,DisplayName, and onPremisesSyncEnabled to return results faster $AllGroups = Get-MgGroup -All -Property Id,DisplayName,onPremisesSyncEnabled...

@BHoggs has suggested an improvement to reduce the number of lines, and filtering to cloud groups or on-premise groups on the API side by using the not() operator Shorter script...

Hi Adrian, It seems like this is probably a Graph API issue. I can make that assumption by taking the absolute URI from your debug and popping that into Graph...

Just confirming that I've replicated your issue, and tried a few different things as well (null, $null, 'null', "'null'", '$null', `$null) I've been able to successfully set this via Graph...

Also, have you tried interrogating those properties independently? Things like Microsoft.Graph.Beta.PowerShell.Models.MicrosoftGraphTeamworkDeviceActivity don't always mean an empty string but rather the type of object that the property holds, you might just...

I've been looking through some of the API doco, but am still not confident with my answer. The doco (such as this page here: https://learn.microsoft.com/en-us/graph/api/resources/conditionalaccessconditionset?view=graph-rest-1.0), suggests that there are some...

I'm looking back at the original code you wrote and comparing it to what worked using the Invoke-MgGraphRequest ``` $params = @{ Conditions = @{ ClientApplications = @{ IncludeServicePrincipals =...