product: getKnownIssuesByTimeRange

名前空間: microsoft.graph.windowsUpdates

重要

Microsoft Graph の /beta バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。

過去に指定した期間に基づいて、特定の製品に関連する既知の問題を取得します。

アクセス許可

この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「 アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、 アクセス許可のリファレンスを参照してください

アクセス許可の種類 最小特権アクセス許可 特権の高いアクセス許可
委任 (職場または学校のアカウント) WindowsUpdates.ReadWrite.All 使用できません。
委任 (個人用 Microsoft アカウント) サポートされていません。 サポートされていません。
アプリケーション WindowsUpdates.ReadWrite.All 使用できません。

アプリが委任されたアクセス許可を持つすべての Windows 更新プログラムの展開設定を読み取りまたは書き込むには、サインインしているユーザーにグローバル管理者Intune管理者、または展開管理者ロールMicrosoft Entra Windows Update割り当てる必要があります。

HTTP 要求

GET /admin/windows/updates/products/{id}/GetKnownIssuesByTimeRange(daysInPast={daysInPast},includeAllActive={includeAllActive})

クエリ パラメーター

次の表に、この関数で使用する必要があるパラメーターを示します。

パラメーター 説明
daysInPast Int32 過去に検索する日数。 このフィルターは、最終的な状態にあり、解決された日付時刻を持つ既知のすべての問題に適用されます。
includeAllActive ブール型 に設定されている true場合、応答にはアクティブなすべての既知の問題が含まれます。 に設定されている false場合、応答にはアクティブな既知の問題は含まれません。

要求ヘッダー

名前 説明
Authorization ベアラー {token}。 必須です。 認証と承認の詳細については、こちらをご覧ください。

要求本文

このメソッドには、要求本文を指定しません。

応答

成功した場合、このメソッドは応答コードと、応答本文の指定された時間範囲の microsoft.graph.windowsUpdates.knownIssue オブジェクトのコレクションを返200 OKします。

要求

次の例は要求を示しています。

GET https://graph.microsoft.com/beta/admin/windows/updates/products/1/GetKnownIssuesByTimeRange(daysInPast=70,includeAllActive=false)

応答

次の例は応答を示しています。

注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。

HTTP/1.1 200 OK
Content-Type: application/json

{
  "@odata.context": "https://graph.microsoft.com/beta/$metadata#Collection(microsoft.graph.windowsUpdates.knownIssue)",
  "value": [
    {
      "id": "WI670072",
      "status": "mitigatedExternal",
      "webViewUrl": "https://admin.microsoft.com/Adminportal/Home#/windowsreleasehealth/knownissues/:/issue/WI670072",
      "description": "Investigation concluded that the error reported by users was not caused by the August 2023 preview updates.",
      "startDateTime": "2023-08-22T10:00:00-07:00",
      "title": "Microsoft received reports about an “UNSUPPORTED_PROCESSOR” error",
      "resolvedDateTime": "2023-09-07T16:14:07.1881817-07:00",
      "lastUpdatedDateTime": "2023-09-07T16:41:58.577-07:00",
      "originatingKnowledgeBaseArticle": {
        "Url": "https://support.microsoft.com/help/5029351",
        "Id": "KB5029351"
      },
      "resolvingKnowledgeBaseArticle": null,
      "safeguardHoldIds": [],
      "knownIssueHistories": [
        {
          "createdDateTime": "2023-08-24T02:51:27.29Z",
          "body": {
            "content": "Microsoft has received reports of an issue in which users are receiving an “UNSUPPORTED_PROCESSOR” error message on a blue screen after installing updates released on August 22, 2023 (KB5029351 (https://support.microsoft.com/help/5029351)) and then restarting their device. KB5029351 (https://support.microsoft.com/help/5029351) might automatically uninstall to allow Windows to start up as expected. KB5029351 (https://support.microsoft.com/help/5029351) might not offer to some Windows devices which might be affected by this issue.\n\nIf you are experiencing issues, please use Feedback Hub to file a report following the below steps:\n    1. Launch Feedback Hub by opening the Start menu and typing \"Feedback hub\", or pressing the Windows key + F\n    2. Fill in the \"Summarize your feedback\" and \"Explain in more detail\" boxes, then click Next.\n    3. Under the \"Choose a category\" section, click the \"Problem\" button, and select \"Install and Update\" category. Then select \"Downloading, installing, and configuring Windows Update” subcategory. Click Next.\n    4. Under the \"Find similar feedback\" section, select the \"Make new bug\" radio button and click Next.\n    5. Under the \"Add more details\" section, supply any relevant detail (Note this is not critical to addressing your issue).\n    6. Expand the \"Recreate my problem\" box and press \"Start recording\". Reproduce the issue on your device.\n    7. Press \"Stop recording\" once finished. Click the \"Submit\" button.\nFor additional information, see Send feedback to Microsoft with the Feedback Hub app (https://support.microsoft.com/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f66612949332).\n\nNext steps: We are presently investigating to determine if this is an issue caused by Microsoft. We will provide an update when more information is available.\n\nAffected platforms:\n    -  Client: Windows 11, version 22H2; Windows 10, version 22H2; Windows 11, version 21H2\n    -  Server: None\n",
            "contentType": "html"
          }
        }
      ]
    }
  ]
}