msgraph-sdk-powershell
msgraph-sdk-powershell copied to clipboard
Powershell SDK for Microsoft Graph
Can't get `New-MgEntitlementManagementAccessPackageAssignmentPolicy` to populate the localizedTexts within Choices. Successfully working with JSON via Invoke-MgGraphRequest. Looks like the command does not include the localizedTexts within the body of the request....
We have a usecase in our powershell script to add multiple certificates on behalf of the application at different points of time. We were using `New-AzureADApplicationKeyCredential `and are planning to...
Currently ELM does not support patch of this API and seem like the auto generator of this cmdlets generated using PATCH ,c an you please help to suppress this cmdlet....
While trying to work with the Ms Graph powershell SDK, i get errors importing modules : PS U:\> Import-Module -Name Microsoft.Graph $ParseException/ à System.Management.Automation.ScriptBlock.Create(Parser parser, String fileName, String fileContents) à...
When executing Get-MgSecurityAlerts with a -Filter, it returns all values, even though it should filter. Command executed: **Get-MgSecurityAlert -Filter "Title eq 'Activity from infrequent country'"** As requested, here is the...
The teamsAsyncOperation returned by POST /beta/teams is not handled within the PowerShell SDK. The [documentation](https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.teams/new-mgteam?view=graph-powershell-beta#outputs) however mentions the return of an object typed as `Microsoft.Graph.PowerShell.Models.IMicrosoftGraphTeam`
If I attempt to retrieve a resource that does not exist, I get an exception. That exception currently shows the category for the error as `InvalidOperation`, which is incorrect. The...
I want to be able to easily retrieve bulk data sets from commands that normally return single data records by using batching. For example, consider the `Get-MgUserManager` cmdlet. This cmdlet...
Cmdlets should support both nested and flattened parameters. e.g., #### Flattened parameters (not supported) ``` powershell New-MgApplication -WebRedirectUris = "MY_URI" ``` #### Nested parameters (currently supported) ``` powershell New-MgApplication -Web...
### Synopsis Some cmdlets like `get-mggroupmember` support an additional REST path to specify the type of object to return instead of just DirectoryObject https://docs.microsoft.com/en-us/graph/api/group-list-members?view=graph-rest-1.0&tabs=http#example-4-use-searchand-odata-cast-to-get-user-membership-in-groups-with-display-names-that-contain-the-letters-pr-including-a-count-of-returned-objects (Example #4) ### Recommended Implementation Support...