msgraph-sdk-powershell
msgraph-sdk-powershell copied to clipboard
Powershell SDK for Microsoft Graph
The Key predicate used to access a single entity in a collection shouldn't contain the entity type name in the OpenAPI description. This is to help disambiguate the key property...
Graph API documentation and related properties consistently spell "enrollment" with double L in US style but for some reason the module name is in British spelling with only one L.
Currently, customers have to explicitly set SwitchParameters to false to deserialize boolean properties to false. e.g., `-SecurityEnabled:$false`. This is because switch parameters are false by default, and we don't deserialize...
I noticed that many cmdlets for Directory Role Management and Entitlement Management are mistakenly included in the Microsoft.Graph.DeviceManagement.Enrolment module. [Microsoft.Graph.DeviceManagement.Enrolment](https://github.com/microsoftgraph/msgraph-sdk-powershell/blob/dev/src/DeviceManagement.Enrolment/DeviceManagement.Enrolment/Microsoft.Graph.DeviceManagement.Enrolment.psd1) *-MgRoleManagementDirectory* *-MgRoleManagementEntitlementManagement* *-MgFilterRoleManagementDirectory* *-MgFilterRoleManagementEntitlementManagement* These should likely be in the...
In Graph beta, [create group](https://docs.microsoft.com/en-us/graph/api/group-post-groups?view=graph-rest-beta&tabs=http) specifies that the request payload should have | Property | Type | Description| |:---------------|:--------|:----------| | mailEnabled | boolean | Set to **true** for mail-enabled groups....
Related to issues: #125 , #123, #102, #46, #52, #113 [AB#7439](https://microsoftgraph.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_workitems/edit/7439)
I'm trying to create groups using `New-MgGroup`. I have signed in using certificate-based authentication, so there is no concept of "me". I want the groups I create to have one...
Personally, I like how the ActiveDirectory cmdlets operate when it comes to returning certain attributes. By default there is a minimal set of attributes returned and when a property is...
Since as stated the audience expected for the module is primarily Az users, now that Az allows exporting the access tokens, it is recommended to add a `-AzContext` (or `-CurrentAzContext`)...
I can see there are two ways to use Connect-Graph. One creates an authentication prompt for an interactive user. The other takes a client ID and a certificate for a...