Peter Ombwa
Peter Ombwa
Thanks for bringing this to our attention. According to the [service metadata](https://graph.microsoft.com/v1.0/$metadata) (our single source of truth), `grant-mgsitepermission` command is valid as it calls `grant` action that's bound to `permission`:...
As noted in https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/669, we should also document the use `Connect-MgGraph -AccessToken` and `Get-AzAccessToken`.
@JustinGrote ConsistencyLevel is available via `-ConsitencyLevel` parameter to all commands that support it. In this case, you should use it like this: ``` powershell Get-MgServicePrincipal -Search "displayName:teams" -ConsistencyLevel "eventual" ```
I'll discuss this with the service team that owns this API and get back to you on this.
@fume, `-ConsistencyLevel` is missing on `Get-MgServicePrincipalOauth2PermissionGrant` and other related commands due to the header missing in the CSDL metadata. We will address the missing parameter in https://github.com/microsoftgraph/msgraph-metadata/issues/108.
@remygs, sorry about this, and thanks for surfacing the error with us. I can confirm that it is a bug with how our code generator parses the module path when...
Will be fixed by https://github.com/Azure/autorest.powershell/issues/845.
@baywet Thanks for taking time to file this issue. `update-user -userId $Id -MailboxSettings @{"timeZone"="Eastern Standard Time"}` attempts to update a users mailboxSettings property via a patch to https://graph.microsoft.com/beta/users/{id} which results...
Thanks for bringing this to our attention. We will review the module mapping in the next major update to avoid breaking change - https://github.com/microsoftgraph/msgraph-sdk-powershell/issues/838. @maisarissi, we need to settle on...
One approach is to have a list of names to exclude. This should ideally be done via a runtime configuration. e.g., ``` yml exclude-plural: - Windows ``` @maisarissi, the issue...