Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Beta.Applications-Help.xml
HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.beta.applications/add-mgbetaapplicationkey
Locale: en-US
Module Name: Microsoft.Graph.Beta.Applications
ms.date: 02/20/2026
ms.date: 07/10/2026
PlatyPS schema version: 2024-05-01
title: Add-MgBetaApplicationKey
---
Expand Down Expand Up @@ -32,7 +32,7 @@ Add-MgBetaApplicationKey -ApplicationId <string> [-ResponseHeadersVariable <stri
[-PasswordCredential <IMicrosoftGraphPasswordCredential>] [-Proof <string>] [-Break]
[-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### Add
Expand All @@ -43,7 +43,6 @@ Add-MgBetaApplicationKey -ApplicationId <string>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### AddViaIdentityExpanded
Expand All @@ -54,7 +53,7 @@ Add-MgBetaApplicationKey -InputObject <IApplicationsIdentity> [-ResponseHeadersV
[-PasswordCredential <IMicrosoftGraphPasswordCredential>] [-Proof <string>] [-Break]
[-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### AddViaIdentity
Expand All @@ -65,7 +64,6 @@ Add-MgBetaApplicationKey -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## ALIASES
Expand All @@ -87,7 +85,7 @@ You can use the Update application operation to perform an update instead.
| --------------- | ------------------------------------------ |
| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, |
| Delegated (personal Microsoft account) | Not supported |
| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, |
| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, |

## EXAMPLES
### Example 1: Add a new key credential to an application
Expand Down Expand Up @@ -124,7 +122,7 @@ $params = @{
key = [System.Text.Encoding]::ASCII.GetBytes("MIIDYDCCAki...")
}
passwordCredential = @{
secretText = "MKTr0w1..."
secretText = "<secret here>"
}
proof = "eyJ0eXAiOiJ..."
}
Expand Down Expand Up @@ -592,7 +590,7 @@ The DateTimeOffset type represents date and time information using ISO 8601 form
For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
[Key <Byte[]>]: Value for the key credential.
Should be a Base64 encoded value.
Returned only on $select for a single object, that is, GET applications/{applicationId}?$select=keyCredentials or GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it's always null.
Requires $select to retrieve; only available for single object requests (GET /applications/{applicationId}?$select=keyCredentials or GET /servicePrincipals/{servicePrincipalId}?$select=keyCredentials); otherwise, it's always null.
From a .cer certificate, you can read the key using the Convert.ToBase64String() method.
For more information, see Get the certificate key.
[KeyId <String>]: The unique identifier for the key.
Expand Down Expand Up @@ -672,7 +670,7 @@ The DateTimeOffset type represents date and time information using ISO 8601 form
For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
[Key <Byte[]>]: Value for the key credential.
Should be a Base64 encoded value.
Returned only on $select for a single object, that is, GET applications/{applicationId}?$select=keyCredentials or GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it's always null.
Requires $select to retrieve; only available for single object requests (GET /applications/{applicationId}?$select=keyCredentials or GET /servicePrincipals/{servicePrincipalId}?$select=keyCredentials); otherwise, it's always null.
From a .cer certificate, you can read the key using the Convert.ToBase64String() method.
For more information, see Get the certificate key.
[KeyId <String>]: The unique identifier for the key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Beta.Applications-Help.xml
HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.beta.applications/add-mgbetaapplicationpassword
Locale: en-US
Module Name: Microsoft.Graph.Beta.Applications
ms.date: 02/20/2026
ms.date: 07/10/2026
PlatyPS schema version: 2024-05-01
title: Add-MgBetaApplicationPassword
---
Expand All @@ -28,7 +28,7 @@ Add-MgBetaApplicationPassword -ApplicationId <string> [-ResponseHeadersVariable
[-AdditionalProperties <hashtable>] [-PasswordCredential <IMicrosoftGraphPasswordCredential>]
[-Break] [-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### Add
Expand All @@ -39,7 +39,6 @@ Add-MgBetaApplicationPassword -ApplicationId <string>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### AddViaIdentityExpanded
Expand All @@ -50,7 +49,6 @@ Add-MgBetaApplicationPassword -InputObject <IApplicationsIdentity>
[-PasswordCredential <IMicrosoftGraphPasswordCredential>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### AddViaIdentity
Expand All @@ -61,7 +59,6 @@ Add-MgBetaApplicationPassword -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## ALIASES
Expand All @@ -80,7 +77,7 @@ You can also add passwords while creating the application.
| --------------- | ------------------------------------------ |
| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, |
| Delegated (personal Microsoft account) | Application.ReadWrite.All, |
| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, |
| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, |

## EXAMPLES
### Example 1: Add a password credential to an application with a six month expiry
Expand All @@ -104,7 +101,7 @@ DisplayName : Created in PowerShell
EndDateTime : 26/11/2022 12:03:31 pm
Hint : Q_e
KeyId : c82bb763-741b-4575-9d9d-df7e766f6999
SecretText : Q_e8Q~ZDWJD.bkgajbREp-VFFUayCuEk8b1hDcr9
SecretText : <secret here>
StartDateTime : 26/5/2022 1:03:31 pm
AdditionalProperties : {[@odata.context,
https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.passwordCredential]}
Expand Down Expand Up @@ -137,7 +134,7 @@ DisplayName : Created in PowerShell
EndDateTime : 26/11/2022 1:00:00 pm
Hint : TiA
KeyId : 082bf20f-63d6-4970-bb4e-55e504f50d8b
SecretText : TiA8Q~Zs7ej1cGtlW0qnmuFi~JlxXTZew_tU1bGA
SecretText : <secret here>
StartDateTime : 26/5/2022 2:00:00 pm
AdditionalProperties : {[@odata.context,
https://graph.microsoft.com/v1.0/$metadata#microsoft.graph.passwordCredential]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Beta.Applications-Help.xml
HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.beta.applications/add-mgbetaserviceprincipaltokensigningcertificate
Locale: en-US
Module Name: Microsoft.Graph.Beta.Applications
ms.date: 02/20/2026
ms.date: 07/10/2026
PlatyPS schema version: 2024-05-01
title: Add-MgBetaServicePrincipalTokenSigningCertificate
---
Expand Down Expand Up @@ -34,7 +34,7 @@ Add-MgBetaServicePrincipalTokenSigningCertificate -ServicePrincipalId <string>
[-ResponseHeadersVariable <string>] [-AdditionalProperties <hashtable>] [-DisplayName <string>]
[-EndDateTime <datetime>] [-Break] [-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### Add
Expand All @@ -45,7 +45,6 @@ Add-MgBetaServicePrincipalTokenSigningCertificate -ServicePrincipalId <string>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### AddViaIdentityExpanded
Expand All @@ -55,7 +54,7 @@ Add-MgBetaServicePrincipalTokenSigningCertificate -InputObject <IApplicationsIde
[-ResponseHeadersVariable <string>] [-AdditionalProperties <hashtable>] [-DisplayName <string>]
[-EndDateTime <datetime>] [-Break] [-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### AddViaIdentity
Expand All @@ -66,7 +65,6 @@ Add-MgBetaServicePrincipalTokenSigningCertificate -InputObject <IApplicationsIde
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## ALIASES
Expand All @@ -91,7 +89,7 @@ The endDateTime can be up to three years after the certificate is created.
| --------------- | ------------------------------------------ |
| Delegated (work or school account) | Application.ReadWrite.All, Directory.ReadWrite.All, |
| Delegated (personal Microsoft account) | Not supported |
| Application | Application.ReadWrite.OwnedBy, Directory.ReadWrite.All, Application.ReadWrite.All, |
| Application | Application.ReadWrite.OwnedBy, Application.ReadWrite.All, Directory.ReadWrite.All, |

## EXAMPLES
### Example 1: Code snippet
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Beta.Applications-Help.xml
HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.beta.applications/clear-mgbetaapplicationverifiedpublisher
Locale: en-US
Module Name: Microsoft.Graph.Beta.Applications
ms.date: 02/20/2026
ms.date: 07/10/2026
PlatyPS schema version: 2024-05-01
title: Clear-MgBetaApplicationVerifiedPublisher
---
Expand All @@ -28,7 +28,6 @@ Clear-MgBetaApplicationVerifiedPublisher -ApplicationId <string> [-ResponseHeade
[-Break] [-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-PassThru] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### UnsetViaIdentity
Expand All @@ -38,7 +37,6 @@ Clear-MgBetaApplicationVerifiedPublisher -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-PassThru]
[-Proxy <uri>] [-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## ALIASES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Beta.Applications-Help.xml
HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.beta.applications/confirm-mgbetaapplicationmembergroup
Locale: en-US
Module Name: Microsoft.Graph.Beta.Applications
ms.date: 02/20/2026
ms.date: 07/10/2026
PlatyPS schema version: 2024-05-01
title: Confirm-MgBetaApplicationMemberGroup
---
Expand All @@ -31,7 +31,6 @@ Confirm-MgBetaApplicationMemberGroup -ApplicationId <string> [-ResponseHeadersVa
[-AdditionalProperties <hashtable>] [-GroupIds <string[]>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### Check
Expand All @@ -42,7 +41,6 @@ Confirm-MgBetaApplicationMemberGroup -ApplicationId <string>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### CheckViaIdentityExpanded
Expand All @@ -52,7 +50,7 @@ Confirm-MgBetaApplicationMemberGroup -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-AdditionalProperties <hashtable>] [-GroupIds <string[]>]
[-Break] [-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### CheckViaIdentity
Expand All @@ -63,7 +61,6 @@ Confirm-MgBetaApplicationMemberGroup -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## ALIASES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Beta.Applications-Help.xml
HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.beta.applications/confirm-mgbetaapplicationmemberobject
Locale: en-US
Module Name: Microsoft.Graph.Beta.Applications
ms.date: 02/20/2026
ms.date: 07/10/2026
PlatyPS schema version: 2024-05-01
title: Confirm-MgBetaApplicationMemberObject
---
Expand All @@ -27,7 +27,6 @@ Confirm-MgBetaApplicationMemberObject -ApplicationId <string> [-ResponseHeadersV
[-AdditionalProperties <hashtable>] [-Ids <string[]>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### Check
Expand All @@ -38,7 +37,6 @@ Confirm-MgBetaApplicationMemberObject -ApplicationId <string>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### CheckViaIdentityExpanded
Expand All @@ -48,7 +46,7 @@ Confirm-MgBetaApplicationMemberObject -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-AdditionalProperties <hashtable>] [-Ids <string[]>] [-Break]
[-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### CheckViaIdentity
Expand All @@ -59,7 +57,6 @@ Confirm-MgBetaApplicationMemberObject -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## ALIASES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.Beta.Applications-Help.xml
HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.beta.applications/confirm-mgbetaserviceprincipalmembergroup
Locale: en-US
Module Name: Microsoft.Graph.Beta.Applications
ms.date: 02/20/2026
ms.date: 07/10/2026
PlatyPS schema version: 2024-05-01
title: Confirm-MgBetaServicePrincipalMemberGroup
---
Expand All @@ -31,7 +31,7 @@ Confirm-MgBetaServicePrincipalMemberGroup -ServicePrincipalId <string>
[-ResponseHeadersVariable <string>] [-AdditionalProperties <hashtable>] [-GroupIds <string[]>]
[-Break] [-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### Check
Expand All @@ -42,7 +42,6 @@ Confirm-MgBetaServicePrincipalMemberGroup -ServicePrincipalId <string>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### CheckViaIdentityExpanded
Expand All @@ -52,7 +51,7 @@ Confirm-MgBetaServicePrincipalMemberGroup -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-AdditionalProperties <hashtable>] [-GroupIds <string[]>]
[-Break] [-Headers <IDictionary>] [-HttpPipelineAppend <SendAsyncStep[]>]
[-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>] [-ProxyCredential <pscredential>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
[-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
```

### CheckViaIdentity
Expand All @@ -63,7 +62,6 @@ Confirm-MgBetaServicePrincipalMemberGroup -InputObject <IApplicationsIdentity>
[-ResponseHeadersVariable <string>] [-Break] [-Headers <IDictionary>]
[-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <uri>]
[-ProxyCredential <pscredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## ALIASES
Expand All @@ -83,9 +81,9 @@ Because Microsoft 365 groups cannot contain other groups, membership in a Micros

| Permission type | Permissions (from least to most privileged) |
| --------------- | ------------------------------------------ |
| Delegated (work or school account) | Application.Read.All, User.ReadWrite.All, GroupMember.Read.All, User.Read.All, Application.ReadWrite.All, Device.Read.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, |
| Delegated (work or school account) | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, User.ReadWrite.All, |
| Delegated (personal Microsoft account) | Not supported |
| Application | Application.Read.All, Application.ReadWrite.All, User.Read.All, GroupMember.Read.All, Group.ReadWrite.All, Group.Read.All, User.ReadWrite.All, Directory.Read.All, Device.ReadWrite.All, Device.Read.All, Directory.ReadWrite.All, |
| Application | Application.Read.All, AgentIdUser.ReadWrite.All, AgentIdUser.ReadWrite.IdentityParentedBy, Application.ReadWrite.All, Device.Read.All, Device.ReadWrite.All, Directory.Read.All, Directory.ReadWrite.All, Group.Read.All, Group.ReadWrite.All, GroupMember.Read.All, User.Read.All, User.ReadWrite.All, |

## PARAMETERS

Expand Down
Loading