No New-MgInvitation errors but guest user not created
まだ誰も着手していません。
評価
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 初心者へのやさしさ
- 35/100
- issue の種類
- バグ
- 明瞭さ
- おおむね明確
- 活発さ
- 停滞
- 技術スタック
- powershell
- 領域
- api
調査の方向性
New-MgInvitation エントリ ポイントと /v1.0/invitations への POST 要求から始め、返された invitedUser id を Get-MgUser および Entra ID ポータルと比較します。不一致が PowerShell SDK の応答にあるのか、Microsoft Graph サービスにあるのかを特定し、再現可能な結果と次のアクションを記録します。
索引モデルが issue の本文から書いたものです。
説明
Describe the bug
I'm using Microsoft.Graph v2.30.0 module on PowerShell 7.5.3.
Following issue started to appear recently with New-MgInvitation cmdlet while inviting new Guest users.
I launch this cmdlet::
New-MgInvitation -InvitedUserEmailAddress <EmailAddress> -InviteRedirectUrl <MyCustoUrl> -InvitedUserType 'Guest'
All is working fine: the cmdlet returns Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitation object containing:
Id : <Guid>
InviteRedeemUrl : https://login.microsoftonline.com/redeem?...
InviteRedirectUrl : <MyCustomUrl>
InvitedUser : Microsoft.Graph.PowerShell.Models.MicrosoftGraphUser
InvitedUserDisplayName :
InvitedUserEmailAddress : <EmailAddress>
InvitedUserMessageInfo : Microsoft.Graph.PowerShell.Models.MicrosoftGraphInvitedUserMessageInfo
InvitedUserSponsors :
InvitedUserType : Guest
ResetRedemption : False
SendInvitationMessage : False
Status : PendingAcceptance
AdditionalProperties : {[@odata.context, https://graph.microsoft.com/v1.0/$metadata#invitations/$entity]}
However, the user has not been created in Entra ID: it does not appear either when running Get-MgUser -Filter "UserType eq 'Guest' and Mail eq '<EmailAddress>' or in Entra ID Portal.
These are the scopes enabled in the Microsoft Graph connection (Get-MgContext).Scopes:
- Directory.Read.All
- Directory.ReadWrite.All
- User.ReadWrite.All
...
Expected behavior
I would expect that, since the cmdlet does not return any errors but instead an object indicating it completed successfully, the user should be created in Entra ID.
How to reproduce
- Open PowerShell 7.5.3
Import-Module Microsoft.GraphConnect-MgGraphNew-MgInvitation -InvitedUserEmailAddress <EmailAddress> -InviteRedirectUrl <MyCustoUrl> -InvitedUserType 'Guest'
SDK Version
2.30.0
Latest version known to work for scenario above?
2.30.0
Known Workarounds
The creation of a new guest user from the Entra ID portal works correctly.
Debug output
Click to expand log
DEBUG: ============================ HTTP REQUEST ============================HTTP Method:
POST
Absolute Uri:
https://graph.microsoft.com/v1.0/invitations
Headers:
FeatureFlag : 00000003
Cache-Control : no-store, no-cache
User-Agent : Mozilla/5.0,(Windows NT 10.0; Microsoft Windows 10.0.26100; en-US),PowerShell/7.5.3
SdkVersion : graph-powershell/2.30.0
client-request-id : eb4fc89e-6494-4106-8f0b-9ee5133c7c4c
Accept-Encoding : gzip,deflate,br
Body:
{
"invitedUserEmailAddress": "EmailAddress",
"invitedUserType": "Guest",
"inviteRedirectUrl": "MyCustomUrl"
}
DEBUG: ============================ HTTP RESPONSE ============================
Status Code:
Created
Headers:
Cache-Control : no-store, must-revalidate, no-cache
Location : https://graph.microsoft.com/
Vary : Accept-Encoding
Strict-Transport-Security : max-age=31536000
request-id : f34f78b8-7942-4018-89c6-9cce5dcd8173
client-request-id : eb4fc89e-6494-4106-8f0b-9ee5133c7c4c
x-ms-ags-diagnostic : {"ServerInfo":{"DataCenter":"Italy North","Slice":"E","Ring":"3","ScaleUnit":"002","RoleInstance":"MI3PEPF00004A49"}}
odata-version : 4.0
Date : Fri, 19 Sep 2025 11:48:56 GMT
Body:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#invitations/$entity",
"id": "249c3056-3bbe-45e6-819f-b73fbed317c0",
"inviteRedeemUrl": "https://login.microsoftonline.com/redeem?...",
"invitedUserDisplayName": null,
"invitedUserType": "Guest",
"invitedUserEmailAddress": "EmailAddress",
"sendInvitationMessage": false,
"resetRedemption": false,
"inviteRedirectUrl": "MyCustomUrl",
"status": "PendingAcceptance",
"invitedUserMessageInfo": {
"messageLanguage": null,
"customizedMessageBody": null,
"ccRecipients": [
{
"emailAddress": {
"name": null,
"address": null
}
}
]
},
"invitedUser": {
"id": "a8255d08-0507-412c-a67b-19e0adcf74f6",
"userPrincipalName": "EmailPrefix_EmailSuffix#EXT#@MyTenant.onmicrosoft.com"
}
}
DEBUG: [CmdletEndProcessing]: - New-MgInvitation end processing.
Id InviteRedeemUrl
249c3056-3bbe-45e6-819f-b73fbed317c0 https://login.microsoftonline.com/redeem?...
Configuration
- OS: Windows 11 24H2
- Architecture: x64
$PSVersionTable
Name Value
---- -----
PSVersion 7.5.3
PSEdition Core
GitCommitId 7.5.3
OS Microsoft Windows 10.0.26100
Platform Win32NT
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
Other information
No response
- 主要言語
- C#
- スター
- 898
- フォーク
- 230
- 平均マージ
- 2日 5時間
- マージ済み PR(30日)
- 31
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
microsoftgraph/msgraph-sdk-powershell のほかの issue
-
難易度 2/5 1〜3時間 初心者へのやさしさ 84/100
-
status:waiting-for-triage type:bug
難易度 2/5 1〜3時間 初心者へのやさしさ 78/100
-
status:waiting-for-triage type:bug
難易度 3/5 1〜2日 初心者へのやさしさ 72/100
-
難易度 4/5 3〜5日 初心者へのやさしさ 48/100
-
status:waiting-for-triage type:bug
難易度 4/5 3〜5日 初心者へのやさしさ 45/100
microsoftgraph/msgraph-sdk-powershell の issue をすべて見る
似ている issue
-
untriaged
難易度 1/5 1時間未満 初心者へのやさしさ 88/100
dotnet/dotnet-api-docs#13095 ·
-
area-deployment area-integrations triage:bot-seen
難易度 2/5 半日 初心者へのやさしさ 86/100
-
type/automation type/tech-debt
難易度 2/5 1〜3時間 初心者へのやさしさ 84/100
-
bug
難易度 1/5 1時間未満 初心者へのやさしさ 90/100
newrelic/newrelic-dotnet-agent#3850 · コメント 1 件 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 88/100
LuckyPennySoftware/AutoMapper#4660 ·