From 6fc2dc42aab4d8fae7a7cea47b2cb12dfe450656 Mon Sep 17 00:00:00 2001 From: Bailey Taylor Date: Mon, 25 May 2026 10:39:32 +0800 Subject: [PATCH] Initial Commit3 --- PatchProbe.Server | 1 - PatchProbe.Server/.gitignore | 7 + PatchProbe.Server/README.md | 108 + PatchProbe.Server/config.example.env | 32 + PatchProbe.Server/config.json.example | 6 + PatchProbe.Server/package-lock.json | 1660 +++++ PatchProbe.Server/package.json | 23 + .../2026-05-13T00-14-14-616Z_SSIWKSBT04.json | 6027 +++++++++++++++++ .../2026-05-22T12-00-00-000Z_TEST-HOST.json | 17 + ...patchprobe_20260513_010721_SSIWKSBT03.json | 3949 +++++++++++ ...patchprobe_20260513_012830_SSIWKSZO02.json | 3365 +++++++++ ...patchprobe_20260513_014129_SSIWKSAP01.json | 5236 ++++++++++++++ PatchProbe.Server/server.js | 176 + PatchProbe.Server/src/config.js | 20 + PatchProbe.Server/src/db.js | 126 + PatchProbe.Server/src/logger.js | 18 + PatchProbe.Server/src/middleware/adminAuth.js | 70 + PatchProbe.Server/src/middleware/auth.js | 74 + PatchProbe.Server/src/routes/admin.js | 155 + PatchProbe.Server/src/routes/auth.js | 350 + PatchProbe.Server/src/routes/enrollments.js | 158 + PatchProbe.Server/src/routes/scans.js | 102 + 22 files changed, 21679 insertions(+), 1 deletion(-) delete mode 160000 PatchProbe.Server create mode 100644 PatchProbe.Server/.gitignore create mode 100644 PatchProbe.Server/README.md create mode 100644 PatchProbe.Server/config.example.env create mode 100644 PatchProbe.Server/config.json.example create mode 100644 PatchProbe.Server/package-lock.json create mode 100644 PatchProbe.Server/package.json create mode 100644 PatchProbe.Server/scans/2026-05-13T00-14-14-616Z_SSIWKSBT04.json create mode 100644 PatchProbe.Server/scans/2026-05-22T12-00-00-000Z_TEST-HOST.json create mode 100644 PatchProbe.Server/scans/patchprobe_20260513_010721_SSIWKSBT03.json create mode 100644 PatchProbe.Server/scans/patchprobe_20260513_012830_SSIWKSZO02.json create mode 100644 PatchProbe.Server/scans/patchprobe_20260513_014129_SSIWKSAP01.json create mode 100644 PatchProbe.Server/server.js create mode 100644 PatchProbe.Server/src/config.js create mode 100644 PatchProbe.Server/src/db.js create mode 100644 PatchProbe.Server/src/logger.js create mode 100644 PatchProbe.Server/src/middleware/adminAuth.js create mode 100644 PatchProbe.Server/src/middleware/auth.js create mode 100644 PatchProbe.Server/src/routes/admin.js create mode 100644 PatchProbe.Server/src/routes/auth.js create mode 100644 PatchProbe.Server/src/routes/enrollments.js create mode 100644 PatchProbe.Server/src/routes/scans.js diff --git a/PatchProbe.Server b/PatchProbe.Server deleted file mode 160000 index 08eab2f..0000000 --- a/PatchProbe.Server +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 08eab2f7a298356d6dc5bacc26f3416abba9e865 diff --git a/PatchProbe.Server/.gitignore b/PatchProbe.Server/.gitignore new file mode 100644 index 0000000..b2af924 --- /dev/null +++ b/PatchProbe.Server/.gitignore @@ -0,0 +1,7 @@ +node_modules/ +patchprobe.db +patchprobe.db-shm +patchprobe.db-wal +.env +public/ +logs/ \ No newline at end of file diff --git a/PatchProbe.Server/README.md b/PatchProbe.Server/README.md new file mode 100644 index 0000000..2af079d --- /dev/null +++ b/PatchProbe.Server/README.md @@ -0,0 +1,108 @@ +# PatchProbe Server + +Node.js / Express server that receives scan payloads from enrolled PatchProbe devices and exposes a management API. + +--- + +## First-run setup + +### 1. Configure environment + +```bash +cp config.example.env .env +# Edit .env — at minimum set PATCHPROBE_ADMIN_KEY_HASH (see below) +``` + +### 2. Generate an admin key + +```bash +node server.js --gen-admin-key +# Prints a random key and its bcrypt hash. +# Paste the hash into PATCHPROBE_ADMIN_KEY_HASH in .env +# Store the key itself securely — it is only shown once. +``` + +### 3. Start the server + +```bash +npm start # production +npm run dev # development (auto-reload, pretty logs) +``` + +On first start the SQLite database is created automatically at `DB_PATH` (default `./patchprobe.db`). + +--- + +## Enrolling a device end-to-end + +### Step 1 — Create an enrollment token (admin) + +```bash +curl -X POST http://localhost:3000/api/admin/tokens \ + -H "Authorization: Bearer " \ + -H "Content-Type: application/json" \ + -d '{"label": "lab-devices", "expiresInDays": 7, "maxUses": 10}' +# Response: { "token": "<64-char hex>", ... } +# The token value is only returned here — copy it now. +``` + +### Step 2 — Enroll the device (on the endpoint) + +```bash +PatchProbe.exe enroll --server-url http://your-server:3000 --enrollment-key +``` + +The client POSTs to `POST /api/enrollments`, receives a `deviceId`, and stores credentials encrypted on disk. + +### Step 3 — Run a scan + +```bash +PatchProbe.exe scan +# Collects evidence and POSTs signed payload to POST /api/scans +``` + +--- + +## Admin API reference + +All `/api/admin/*` routes require `Authorization: Bearer `. + +| Method | Path | Description | +|--------|------|-------------| +| `POST` | `/api/admin/tokens` | Create enrollment token (`label`, `expiresInDays?`, `maxUses?`) | +| `GET` | `/api/admin/tokens` | List tokens (value masked as `ab12****`) | +| `DELETE` | `/api/admin/tokens/:token` | Revoke a token | +| `GET` | `/api/admin/devices` | List all enrolled devices | +| `DELETE` | `/api/admin/devices/:id` | Revoke a device (blocks future scan uploads) | +| `GET` | `/api/admin/devices/:id/scans` | Scan summaries for a device | + +--- + +## Device API (used by PatchProbe.exe — do not change) + +| Method | Path | Auth | +|--------|------|------| +| `POST` | `/api/enrollments` | Enrollment token in body | +| `POST` | `/api/scans` | ECDSA device signature headers | +| `GET` | `/api/scans` | None | +| `GET` | `/api/scans/:id` | None | +| `DELETE` | `/api/scans/:id` | None | + +--- + +## Smoke test + +```bash +# Start server first (auth must be enabled, admin key configured) +node test-auth.js +``` + +--- + +## Architecture notes + +- **Persistence**: SQLite via Node.js built-in `node:sqlite` (no native compilation). WAL mode, foreign keys enforced. +- **Device auth**: ECDSA-P256-SHA256 over `deviceId\ntimestamp\nbase64(sha256(rawBody))`. Raw body bytes are captured before JSON parsing so re-serialization cannot alter the signed content. +- **Admin auth**: bcrypt-hashed bearer key. bcrypt comparison is async (non-blocking). +- **Enrollment tokens**: constant-time comparison iterates all active tokens without early exit to prevent timing oracles. +- **Rate limiting**: 10 req/min on `/api/enrollments`, 60 req/min on `/api/scans`. diff --git a/PatchProbe.Server/config.example.env b/PatchProbe.Server/config.example.env new file mode 100644 index 0000000..298599d --- /dev/null +++ b/PatchProbe.Server/config.example.env @@ -0,0 +1,32 @@ +# PatchProbe Server — environment configuration +# Copy to .env and fill in values before starting the server. + +# ── HTTP ───────────────────────────────────────────────────────────────────── +PORT=3000 + +# ── Runtime ────────────────────────────────────────────────────────────────── +NODE_ENV=development + +# ── Database ───────────────────────────────────────────────────────────────── +DB_PATH=./patchprobe.db + +# ── Device authentication ───────────────────────────────────────────────────── +PATCHPROBE_AUTH_ENABLED=true + +# ── Admin API key (bearer token for curl/API access) ───────────────────────── +# Generate with: node server.js --gen-admin-key +PATCHPROBE_ADMIN_KEY_HASH= + +# ── Dashboard session ───────────────────────────────────────────────────────── +# Random 64-char hex string. Generate with: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))" +# Must be set in production or sessions will not survive server restarts. +PATCHPROBE_JWT_SECRET= + +# ── WebAuthn passkeys ───────────────────────────────────────────────────────── +# rpId: hostname only (no port, no protocol) — must match the domain serving the dashboard. +# Use 'localhost' in development. +PATCHPROBE_RP_ID=localhost + +# origin: full origin the browser uses to reach this server (protocol + host + port). +# Must match exactly what appears in the browser URL bar. +PATCHPROBE_ORIGIN=http://localhost:3000 diff --git a/PatchProbe.Server/config.json.example b/PatchProbe.Server/config.json.example new file mode 100644 index 0000000..86b2428 --- /dev/null +++ b/PatchProbe.Server/config.json.example @@ -0,0 +1,6 @@ +{ + "authEnabled": true, + "enrollmentKeys": [ + "change-this-to-a-strong-random-key" + ] +} diff --git a/PatchProbe.Server/package-lock.json b/PatchProbe.Server/package-lock.json new file mode 100644 index 0000000..5d5b933 --- /dev/null +++ b/PatchProbe.Server/package-lock.json @@ -0,0 +1,1660 @@ +{ + "name": "patchprobe-server", + "version": "2.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "patchprobe-server", + "version": "2.0.0", + "dependencies": { + "@simplewebauthn/server": "^13.0.0", + "bcryptjs": "^2.4.3", + "cookie-parser": "^1.4.7", + "dotenv": "^16.4.5", + "express": "^4.19.2", + "express-rate-limit": "^7.3.1", + "helmet": "^7.1.0", + "jsonwebtoken": "^9.0.2", + "pino": "^9.3.2", + "pino-pretty": "^11.2.2" + } + }, + "node_modules/@hexagon/base64": { + "version": "1.1.28", + "resolved": "https://registry.npmjs.org/@hexagon/base64/-/base64-1.1.28.tgz", + "integrity": "sha512-lhqDEAvWixy3bZ+UOYbPwUbBkwBq5C1LAJ/xPC8Oi+lL54oyakv/npbA0aU2hgCsx/1NUd4IBvV03+aUBWxerw==", + "license": "MIT" + }, + "node_modules/@levischuck/tiny-cbor": { + "version": "0.2.11", + "resolved": "https://registry.npmjs.org/@levischuck/tiny-cbor/-/tiny-cbor-0.2.11.tgz", + "integrity": "sha512-llBRm4dT4Z89aRsm6u2oEZ8tfwL/2l6BwpZ7JcyieouniDECM5AqNgr/y08zalEIvW3RSK4upYyybDcmjXqAow==", + "license": "MIT" + }, + "node_modules/@peculiar/asn1-android": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-android/-/asn1-android-2.7.0.tgz", + "integrity": "sha512-iD3VskhVQnM4nE3PN9cBdPTR7JrqZy3FYk+uD2CeG6DUqKoANqaEfx0f7izPmW+Qm5JBM35ek+viLCmjy18ByQ==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-cms": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.7.0.tgz", + "integrity": "sha512-hew63shtzzvBcSHbhm+cyAmKe6AIfinT9hzEqSPjDC6opTTMKmTkQ0gHuN2KsWlvqiKw1S/fS94fhag/FJkioQ==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "@peculiar/asn1-x509-attr": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-csr": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.7.0.tgz", + "integrity": "sha512-VVsAyGqErT9D1SY4aEqozThXMVI+ssVRiv2DDeYuvpBKLIgZ3hYs3Ay3u/VSoKq6ESFi9cf6rf3IOOzfwh7oMA==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-ecc": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.7.0.tgz", + "integrity": "sha512-n7KEs/Q/wrB415cxy4fHOBhegp4NdJ15fkJPwcB/3/8iNBQC2L/N7SChJPKDJPZGYH0jD4Tg4/0vnHmwghnbKw==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pfx": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.7.0.tgz", + "integrity": "sha512-V/nrlQVmhg7lYAsM7E13UDL5erAwFv6kCIVFqNaMIHSVi7dngcT839JkRTkQBqznMG98l2XjxYk74ZztAohZzA==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.7.0", + "@peculiar/asn1-pkcs8": "^2.7.0", + "@peculiar/asn1-rsa": "^2.7.0", + "@peculiar/asn1-schema": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pkcs8": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.7.0.tgz", + "integrity": "sha512-9GTl1nE8Mx1kTZ+7QyYatDyKsm34QcWRBFkY1iPvWC3X4Dona5s/tlLiQsx5WzVdZqiMBZNYT0buyw4/vbhnjw==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pkcs9": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.7.0.tgz", + "integrity": "sha512-Bh7m+OuIaSEllPQcSd9OSp93F4ROWH7sbITWV8MI+8dwsjE5111/87VxiWVvYFKyww3vp39geLv9ENqhwWHcew==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.7.0", + "@peculiar/asn1-pfx": "^2.7.0", + "@peculiar/asn1-pkcs8": "^2.7.0", + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "@peculiar/asn1-x509-attr": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-rsa": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.7.0.tgz", + "integrity": "sha512-/qvENQrXyTZURjMqSeofHul0JJt2sNSzSwk36pl2olkHbaioMQgrASDZAlHXl0xUlnVbHj0uGgOrBMTb5x2aJQ==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-schema": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.7.0.tgz", + "integrity": "sha512-W8ZfWzLmQnrcky+eh3tni4IozMdqBDiHWU0N+vve/UGjMaUs8c0L7A2oEdkBXS8rTpWDpK/aoI3DG/L/hxmxPg==", + "license": "MIT", + "dependencies": { + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-x509": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.7.0.tgz", + "integrity": "sha512-mUn9RRrkGDnG4ALfunDmzyRW5dg+sWCj/pfnCCqEHYbkGxEpvUt6iVJv8Yw1cyp6SWZ26ZE5oSmI5SqEaen15g==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-x509-attr": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.7.0.tgz", + "integrity": "sha512-NS8e7SOgXipkzUPLF/sce7ukpMpWjhxYsH0n6Y+bHYo4TTxOb95Zv7hqwSuL212mj5YxovjdOKQOgH1As3E94w==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.7.0", + "@peculiar/asn1-x509": "^2.7.0", + "asn1js": "^3.0.6", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@peculiar/utils/-/utils-2.0.3.tgz", + "integrity": "sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==", + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/x509": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/@peculiar/x509/-/x509-1.14.3.tgz", + "integrity": "sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==", + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.6.0", + "@peculiar/asn1-csr": "^2.6.0", + "@peculiar/asn1-ecc": "^2.6.0", + "@peculiar/asn1-pkcs9": "^2.6.0", + "@peculiar/asn1-rsa": "^2.6.0", + "@peculiar/asn1-schema": "^2.6.0", + "@peculiar/asn1-x509": "^2.6.0", + "pvtsutils": "^1.3.6", + "reflect-metadata": "^0.2.2", + "tslib": "^2.8.1", + "tsyringe": "^4.10.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@pinojs/redact": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz", + "integrity": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==", + "license": "MIT" + }, + "node_modules/@simplewebauthn/server": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/@simplewebauthn/server/-/server-13.3.0.tgz", + "integrity": "sha512-MLHYFrYG8/wK2i+86XMhiecK72nMaHKKt4bo+7Q1TbuG9iGjlSdfkPWKO5ZFE/BX+ygCJ7pr8H/AJeyAj1EaTQ==", + "license": "MIT", + "dependencies": { + "@hexagon/base64": "^1.1.27", + "@levischuck/tiny-cbor": "^0.2.2", + "@peculiar/asn1-android": "^2.6.0", + "@peculiar/asn1-ecc": "^2.6.1", + "@peculiar/asn1-rsa": "^2.6.1", + "@peculiar/asn1-schema": "^2.6.0", + "@peculiar/asn1-x509": "^2.6.1", + "@peculiar/x509": "^1.14.3" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/asn1js": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz", + "integrity": "sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==", + "license": "BSD-3-Clause", + "dependencies": { + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.5", + "tslib": "^2.8.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/atomic-sleep": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", + "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/bcryptjs": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", + "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.5", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.5.tgz", + "integrity": "sha512-3grm+/2tUOvu2cjJkvsIxrv/wVpfXQW4PsQHYm7yk4vfpu7Ekl6nEsYBoJUL6qDwZUx8wUhQ8tR2qz+ad9c9OA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.15.1", + "raw-body": "~2.5.3", + "type-is": "~1.6.18", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "license": "BSD-3-Clause" + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "license": "MIT" + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-parser": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.7.tgz", + "integrity": "sha512-nGUvgXnotP3BsjiLX2ypbQnWoGUPIIfHQNZkkC668ntrzGWEZVW70HDEB1qnNGMicPje6EttlIgzo51YSwNQGw==", + "license": "MIT", + "dependencies": { + "cookie": "0.7.2", + "cookie-signature": "1.0.6" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/cookie-parser/node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/cookie-signature": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==", + "license": "MIT" + }, + "node_modules/dateformat": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz", + "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/express": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.22.2.tgz", + "integrity": "sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "~1.20.5", + "content-disposition": "~0.5.4", + "content-type": "~1.0.4", + "cookie": "~0.7.1", + "cookie-signature": "~1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.3.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "~0.1.12", + "proxy-addr": "~2.0.7", + "qs": "~6.15.1", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "~0.19.0", + "serve-static": "~1.16.2", + "setprototypeof": "1.2.0", + "statuses": "~2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express-rate-limit": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-7.5.1.tgz", + "integrity": "sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==", + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/express-rate-limit" + }, + "peerDependencies": { + "express": ">= 4.11" + } + }, + "node_modules/fast-copy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-3.0.2.tgz", + "integrity": "sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==", + "license": "MIT" + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "license": "MIT" + }, + "node_modules/finalhandler": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz", + "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "statuses": "~2.0.2", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz", + "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/helmet": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/helmet/-/helmet-7.2.0.tgz", + "integrity": "sha512-ZRiwvN089JfMXokizgqEPXsl2Guk094yExfoDXR0cBYWxtBbaSww/w+vT4WEJsBW2iTUi1GgZ6swmoug3Oy4Xw==", + "license": "MIT", + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/help-me": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/help-me/-/help-me-5.0.0.tgz", + "integrity": "sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==", + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/joycon": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/jsonwebtoken": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz", + "integrity": "sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==", + "license": "MIT", + "dependencies": { + "jws": "^4.0.1", + "lodash.includes": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isinteger": "^4.0.4", + "lodash.isnumber": "^3.0.3", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.once": "^4.0.0", + "ms": "^2.1.1", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=12", + "npm": ">=6" + } + }, + "node_modules/jsonwebtoken/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/jwa": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz", + "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==", + "license": "MIT", + "dependencies": { + "buffer-equal-constant-time": "^1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz", + "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==", + "license": "MIT", + "dependencies": { + "jwa": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/lodash.includes": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==", + "license": "MIT" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isinteger": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, + "node_modules/lodash.once": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "license": "MIT" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-exit-leak-free": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz", + "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz", + "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==", + "license": "MIT" + }, + "node_modules/pino": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/pino/-/pino-9.14.0.tgz", + "integrity": "sha512-8OEwKp5juEvb/MjpIc4hjqfgCNysrS94RIOMXYvpYCdm/jglrKEiAYmiumbmGhCvs+IcInsphYDFwqrjr7398w==", + "license": "MIT", + "dependencies": { + "@pinojs/redact": "^0.4.0", + "atomic-sleep": "^1.0.0", + "on-exit-leak-free": "^2.1.0", + "pino-abstract-transport": "^2.0.0", + "pino-std-serializers": "^7.0.0", + "process-warning": "^5.0.0", + "quick-format-unescaped": "^4.0.3", + "real-require": "^0.2.0", + "safe-stable-stringify": "^2.3.1", + "sonic-boom": "^4.0.1", + "thread-stream": "^3.0.0" + }, + "bin": { + "pino": "bin.js" + } + }, + "node_modules/pino-abstract-transport": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz", + "integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==", + "license": "MIT", + "dependencies": { + "split2": "^4.0.0" + } + }, + "node_modules/pino-pretty": { + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-11.3.0.tgz", + "integrity": "sha512-oXwn7ICywaZPHmu3epHGU2oJX4nPmKvHvB/bwrJHlGcbEWaVcotkpyVHMKLKmiVryWYByNp0jpgAcXpFJDXJzA==", + "license": "MIT", + "dependencies": { + "colorette": "^2.0.7", + "dateformat": "^4.6.3", + "fast-copy": "^3.0.2", + "fast-safe-stringify": "^2.1.1", + "help-me": "^5.0.0", + "joycon": "^3.1.1", + "minimist": "^1.2.6", + "on-exit-leak-free": "^2.1.0", + "pino-abstract-transport": "^2.0.0", + "pump": "^3.0.0", + "readable-stream": "^4.0.0", + "secure-json-parse": "^2.4.0", + "sonic-boom": "^4.0.1", + "strip-json-comments": "^3.1.1" + }, + "bin": { + "pino-pretty": "bin.js" + } + }, + "node_modules/pino-std-serializers": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.1.0.tgz", + "integrity": "sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==", + "license": "MIT" + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-warning": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-5.0.0.tgz", + "integrity": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pump": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.4.tgz", + "integrity": "sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pvtsutils": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz", + "integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "node_modules/pvutils": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz", + "integrity": "sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==", + "license": "MIT", + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/qs": { + "version": "6.15.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz", + "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/quick-format-unescaped": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", + "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", + "license": "MIT" + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/readable-stream": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz", + "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/real-require": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz", + "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/reflect-metadata": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", + "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", + "license": "Apache-2.0" + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-stable-stringify": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz", + "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/secure-json-parse": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", + "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==", + "license": "BSD-3-Clause" + }, + "node_modules/semver": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.1.tgz", + "integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/send": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.4.1", + "range-parser": "~1.2.1", + "statuses": "~2.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/serve-static": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "~0.19.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sonic-boom": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.2.1.tgz", + "integrity": "sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==", + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "license": "ISC", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/thread-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz", + "integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==", + "license": "MIT", + "dependencies": { + "real-require": "^0.2.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/tsyringe": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz", + "integrity": "sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==", + "license": "MIT", + "dependencies": { + "tslib": "^1.9.3" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/tsyringe/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + } + } +} diff --git a/PatchProbe.Server/package.json b/PatchProbe.Server/package.json new file mode 100644 index 0000000..9fa6222 --- /dev/null +++ b/PatchProbe.Server/package.json @@ -0,0 +1,23 @@ +{ + "name": "patchprobe-server", + "version": "2.0.0", + "description": "PatchProbe scan ingestion and management server", + "main": "server.js", + "scripts": { + "start": "node server.js", + "dev": "node --watch server.js", + "gen-admin-key": "node server.js --gen-admin-key" + }, + "dependencies": { + "@simplewebauthn/server": "^13.0.0", + "bcryptjs": "^2.4.3", + "cookie-parser": "^1.4.7", + "dotenv": "^16.4.5", + "express": "^4.19.2", + "express-rate-limit": "^7.3.1", + "helmet": "^7.1.0", + "jsonwebtoken": "^9.0.2", + "pino": "^9.3.2", + "pino-pretty": "^11.2.2" + } +} diff --git a/PatchProbe.Server/scans/2026-05-13T00-14-14-616Z_SSIWKSBT04.json b/PatchProbe.Server/scans/2026-05-13T00-14-14-616Z_SSIWKSBT04.json new file mode 100644 index 0000000..b0e10a9 --- /dev/null +++ b/PatchProbe.Server/scans/2026-05-13T00-14-14-616Z_SSIWKSBT04.json @@ -0,0 +1,6027 @@ +{ + "collector": { + "schemaVersion": "0.1", + "collectorVersion": "1.0.0", + "collectedAt": "2026-05-13T00:14:14.6162074+00:00", + "machineName": "SSIWKSBT04", + "ranAsAdministrator": true + }, + "device": { + "hostname": "SSIWKSBT04", + "manufacturer": "Micro-Star International Co., Ltd.", + "model": "MS-7E09", + "serialNumber": "To be filled by O.E.M.", + "biosVersion": "1.B0", + "biosDate": "20240729000000.000000+000", + "tpmPresent": true, + "tpmVersion": "2.0, 0, 1.59", + "ramBytes": 33326551040, + "domain": "WORKGROUP", + "workgroup": "WORKGROUP", + "systemType": "x64-based PC" + }, + "os": { + "productName": "Windows 10 Enterprise", + "editionId": "Enterprise", + "displayVersion": "25H2", + "releaseId": "2009", + "buildNumber": "26200", + "ubr": 8246, + "architecture": "x64", + "installDate": "2026-01-26T06:26:40+00:00", + "lastBoot": "2026-05-11T22:23:14.4911725+00:00" + }, + "pendingReboot": { + "cbsRebootPending": false, + "windowsUpdateRebootRequired": false, + "sessionManagerRebootRequired": true, + "computerRenameRequired": false, + "anyPending": true + }, + "windowsUpdate": { + "applicableUpdates": [ + { + "updateId": "65cee9cb-c7a3-4cb6-8fe3-25977d986511", + "title": "2026-05 .NET 9.0.16 Security Update for x64 Client (KB5093448)", + "kbArticleId": "KB5093448", + "category": ".NET 9.0", + "severity": "Important", + "rebootRequired": false, + "isDownloaded": false, + "description": "2026-05 .NET 9.0.16 Security Update for x64 Client (KB5093448)", + "supportUrl": "https://go.microsoft.com/fwlink/?linkid=2181179&clcid=0x409" + }, + { + "updateId": "db5bac0b-a277-4d18-9bfd-6c9b08e3251c", + "title": "Windows Malicious Software Removal Tool x64 - v5.141 (KB890830)", + "kbArticleId": "KB890830", + "category": "EU Browser Choice Update-For Europe Only", + "rebootRequired": false, + "isDownloaded": false, + "description": "After the download, this tool runs one time to check your computer for infection by specific, prevalent malicious software (including Blaster, Sasser, and Mydoom) and helps remove any infection that is found. If an infection is found, the tool will display a status report the next time that you start your computer. A new version of the tool will be offered every month. If you want to manually run the tool on your computer, you can download a copy from the Microsoft Download Center, or you can run an online version from microsoft.com. This tool is not a replacement for an antivirus product. To help protect your computer, you should use an antivirus product.", + "supportUrl": "http://support.microsoft.com" + }, + { + "updateId": "e216d3e4-2ab6-43c7-8078-c047b2c62fb7", + "title": "LeMobile - Other hardware - Android Composite ADB Interface", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "LeMobile Other hardware software update released in August, 2016", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "0cd78fc6-35a0-497c-bd50-d41fc4cf0cc5", + "title": "Realtek - Net - 7/5/2017 12:00:00 AM - 10.19.705.2017", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Realtek Net driver update released in July 2017", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "116eb13d-d1fb-4a26-aa47-9f4fdc73122e", + "title": "LeMobile - Other hardware - Android Bootloader Interface", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "LeMobile Other hardware software update released in August, 2016", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "d02af671-88bb-4f36-9922-12890a5f4464", + "title": "LeMobile - Other hardware - Android ADB Recovery Interface", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "LeMobile Other hardware software update released in August, 2016", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "2fba6339-e495-4335-8575-5e211ed4522b", + "title": "Garmin - Bus Controllers and Ports, Other hardware - Garmin USB GPS", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Garmin Bus Controllers and Ports, Other hardware software update released in April, 2012", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "281f5757-4ee5-4a68-85e4-6add8c92ff71", + "title": "Realtek - Net - 11.19.602.2025", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Realtek Net driver update released in March 2016", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "8795c5d7-5920-42a1-8985-2b9e7d179a0d", + "title": "NVIDIA Display Driver Update (32.0.15.9186)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "NVIDIA Display driver update released in January 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "aa6de4c9-624d-44c8-8685-edfb93b43eba", + "title": "Microsoft Corporation AudioProcessingObject Driver Update (10.0.26100.6710)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Microsoft Corporation AudioProcessingObject driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "5460a0d4-95d9-41af-970d-8d4fadad782c", + "title": "2026-05 .NET Framework Security Update (KB5087051)", + "kbArticleId": "KB5087051", + "category": "Security Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "A security issue has been identified in a Microsoft software product that could affect your system. You can help protect your system by installing this update from Microsoft. For a complete listing of the issues that are included in this update, see the associated Microsoft Knowledge Base article. After you install this update, you may have to restart your system.", + "supportUrl": "https://support.microsoft.com/help/5087051" + }, + { + "updateId": "aefa394f-dfdc-4a02-aaeb-53b082db55b1", + "title": "2026-05 Security Update (Hotpatch capable) (KB5089466) (26200.8390)", + "kbArticleId": "KB5089466", + "category": "Security Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "Install this update to resolve issues in Windows. For a complete listing of the issues that are included in this update, see the associated Microsoft Knowledge Base article for more information. After you install this item, you may have to restart your computer.", + "supportUrl": "https://support.microsoft.com/help/5089466" + } + ], + "history": [ + { + "updateId": "4cc3ba87-7f87-4353-9370-62f6296b2e54", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.585.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-13T00:11:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "74a9f237-51d4-481e-8687-667a69050ec9", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T22:21:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "36a13d04-9b3f-498e-b582-66fdd6b27347", + "title": "9NKRJ3SJ9SDG-Microsoft.WindowsAppRuntime.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T22:21:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "407779bd-1e9f-4f8b-96c2-c45be78bab84", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.568.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-11T22:34:20+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b27dbccd-8d10-4d9d-b079-cb797ffe78d4", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.559.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-11T10:45:04+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e30eb948-3a92-4757-8b9f-c920b5e3b429", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.542.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-10T10:45:02+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "bf9c35c9-a32b-42b6-9c03-8190e06d4fac", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.525.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-09T10:44:55+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-09T10:10:50+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c2c38069-3f9c-42b9-890d-7b386fc9a103", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.510.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-08T10:44:55+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "d48a9d6a-0afd-47b7-ae24-36949f00fcf5", + "title": "Canon - Printer - 4/22/2009 12:00:00 AM - 10.0.17119.1", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-08T01:12:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "325dd184-d751-4f86-b3e8-c206887c59e1", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.494.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-07T10:45:06+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-07T06:08:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "1b6497dd-318f-423e-a791-2cb62b31e872", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.490.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-07T06:07:52+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b44bc3e1-0737-4d08-ae38-f3287b8c4dbc", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.476.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-06T10:44:41+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b3fd4e24-0e5c-48a1-bc33-f6d0b00a1017", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.470.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-06T06:01:10+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "eb215e22-b8be-4de1-b112-ddfcb84b63a3", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.457.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-05T10:44:38+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0f14a86d-aa25-4717-baec-23a4106cbc58", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.441.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-04T10:44:50+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e6cbf4c6-a07c-4c3f-937b-c786b389d8cc", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.424.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-03T10:44:42+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-02T17:09:13+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9fb049d9-8ee3-4913-937f-196648006ca5", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.398.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-02T10:45:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-01T21:09:25+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b9e32355-5da0-4b56-9d35-c7c59060e13b", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.383.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-01T10:45:17+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "08b8c4d9-4550-4fad-8a16-130da15658ef", + "title": "Prolific - Ports - 3.9.6.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-01T01:53:13+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b9aae9d6-17c5-4151-8315-348cbe03df48", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.367.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-30T10:45:55+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "2a2434f2-0c10-4228-ab64-5cc381245df9", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.366.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-30T06:06:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-30T06:05:57+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "7297ffb2-0e2c-42d0-b6cf-17f2d7e0c1e1", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.357.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-29T10:44:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "af666ebd-e96f-44e2-8b0c-acc1d54c27a5", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.353.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-29T06:05:56+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "bc3b2ee8-dc74-43a9-a1fe-1cf67e9aaf5b", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.340.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-28T10:44:50+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "4b663cc1-9764-4a7e-a83b-35dc2c8d71c6", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.320.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-27T10:44:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "93d4aff7-3027-41d4-a123-fd354d5fc20d", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.305.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-26T10:44:55+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "35b0524e-5064-476e-9257-a2ac7bf04ada", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.289.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-25T10:44:56+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0c563eed-0843-4996-ab4b-2759aa1596ee", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.272.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-24T10:45:09+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b1ffbe0e-017f-4068-85ce-ca5df6eae33c", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.259.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-23T10:45:16+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "729fa321-ac17-4c24-84b2-0ea277891751", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.252.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-23T06:05:36+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "6af6ecb3-77f9-4160-8ed9-00c2600b41e3", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.240.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-22T10:45:01+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e104d8f9-2ac2-436b-96f6-c81ce97edb53", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.237.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-22T06:06:04+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "7dd35c90-3fc7-4b3a-b19d-79b7965a5f96", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.225.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-21T10:45:09+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "442982fc-9d04-4e33-87d6-eafabf09d360", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.202.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-20T10:45:05+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "6107d7db-56fb-4d1e-8bf0-765c018900e5", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.184.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-19T10:45:06+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "aefd5146-1347-4250-9058-a3971d4fa053", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.168.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-18T10:45:09+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "89780727-6347-4280-bb73-74baa423e8a5", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.150.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-17T10:45:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "1be1ea52-be2d-4cb7-8d68-e2eb20834bd3", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.132.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-16T10:57:42+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "bde779d5-d4f7-476d-9d26-8fae3995595d", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.128.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-16T06:09:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "5d2eb874-80e3-4af0-9f62-4f6e5b9ba618", + "title": "2026-04 Security Update (KB5083769) (26200.8246)", + "kbArticleId": "KB5083769", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-16T06:09:09+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "163f088f-4e6b-4453-9d0a-9f46a882b324", + "title": "2026-04 .NET Framework Security Update (KB5082417)", + "kbArticleId": "KB5082417", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-16T06:09:09+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "d377037a-2bbc-4991-a556-99690cfe2bf6", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.115.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T10:57:46+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0466db87-2068-4bbc-be1a-d05e89b15939", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.113.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:26:47+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "5d2eb874-80e3-4af0-9f62-4f6e5b9ba618", + "title": "2026-04 Security Update (KB5083769) (26200.8246)", + "kbArticleId": "KB5083769", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:26:15+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "163f088f-4e6b-4453-9d0a-9f46a882b324", + "title": "2026-04 .NET Framework Security Update (KB5082417)", + "kbArticleId": "KB5082417", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:26:15+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e20ecd7e-9517-4f2d-9530-5cd83d0c1e9f", + "title": "Windows Malicious Software Removal Tool x64 - v5.140 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:17:14+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "571fa12d-94bb-4083-b482-3914cc7df4ff", + "title": "2026-04 .NET 9.0.15 Security Update for x64 Client (KB5086097)", + "kbArticleId": "KB5086097", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:14:42+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "62dd37fa-320f-461a-9d56-34eb3ec09533", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.96.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-14T10:57:44+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "3929eae1-c66b-4fae-ac30-e6add683fee2", + "title": "Update for Microsoft Defender Antivirus antimalware platform - KB4052623 (Version 4.18.26030.3011) - Current Channel (Broad)", + "kbArticleId": "KB4052623", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-14T10:47:34+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-14T09:05:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a506c38f-5282-41bb-8ef4-6b246f0da665", + "title": "9NKRJ3SJ9SDG-Microsoft.WindowsAppRuntime.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-14T09:05:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "8da3c07a-e102-4c4d-8c51-11f2423ec386", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.79.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-13T10:47:29+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "adbaefa7-b506-466e-8422-1f6890e368ce", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.60.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-12T10:47:15+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "df2fa045-17de-4eed-86bd-4f1f2a38719f", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.44.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-11T10:47:17+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c2993049-7d74-4212-a050-0a6933b716fa", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.23.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-10T10:49:41+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "96e3c999-1183-4263-a0c7-c19c8b9fafff", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.236.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-09T06:09:17+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a32ca1d0-ddd4-486b-b708-d941db4f1101", + "title": "Update for Windows Security platform - KB5007651 (Version 10.0.29554.1001)", + "kbArticleId": "KB5007651", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-09T06:08:37+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "78447770-a39a-4975-a968-cec6b14cedb8", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.230.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-08T10:47:30+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "684bc0da-a735-4529-9aa3-ce28863dac9f", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.226.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-08T06:09:23+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "fb16766e-9588-496a-9ded-14073b8a25cf", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.213.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-07T10:47:24+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e117a002-e684-4900-84e9-dfd759e29f43", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.194.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-06T10:47:26+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c538632b-a5f9-4a4b-88fa-b88f928052f8", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.177.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-05T10:47:34+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "50cb72d3-2e12-4562-aea4-de6abb78240e", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.159.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-04T10:47:30+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b5955859-bd77-415c-bc77-b11dd7c3616c", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.142.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-03T06:01:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "ff9bac25-d5c1-4d2e-8de3-6415ec4f2699", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.129.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-02T06:22:03+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "bc303390-8978-45a7-b0cd-774a47afa793", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.128.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-02T06:01:26+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "82aad3a8-274a-4a75-a7e1-512783b8fd00", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.114.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-01T06:01:26+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "3576ac16-c6bb-48c4-95cb-aab36ca9b7a6", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.97.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-31T06:01:23+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b850bac0-85ba-4a43-903e-8bfd53f233f3", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.81.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-30T06:01:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "3df975db-c4ce-4b04-83ba-611f2a09699f", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.63.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-29T06:01:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "12a4093c-011f-4f5c-8bfb-eebf4cda7c6f", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.45.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-28T06:01:31+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0711455e-d7a6-4523-b55d-2e79c6c9f00c", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.28.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-27T06:01:37+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c46ee844-3d05-4489-ba8a-8096fc1baa6e", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.11.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-26T06:01:19+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "4bcd7f44-6dc3-450b-ab93-5144f16efa06", + "title": "Update for Microsoft Defender Antivirus antimalware platform - KB4052623 (Version 4.18.26020.6) - Current Channel (Broad)", + "kbArticleId": "KB4052623", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-26T05:51:11+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "22d80d2b-bdee-45ea-9ece-12d4b6f71203", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.447.6.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-25T22:24:23+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e2916ca9-44b5-42c7-ac11-d990fc068241", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.745.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-25T06:15:36+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "f854b2fe-d976-4fe8-8d7f-764b850ead8d", + "title": "PowerShell v7.5.5 (x64)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-25T06:15:25+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "38c247f5-99e5-4751-a29f-ea4d5d9dcdde", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.744.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-24T22:23:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "8ca3de35-6ae2-4a56-bdae-f3b10d97d01a", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.724.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-23T22:23:53+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "d2e59864-6db2-4302-9760-839f16983f70", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.706.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-22T22:24:08+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "2875b201-8637-4c94-8f23-c0898908aab0", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.697.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-22T10:45:33+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "fb684378-a324-4745-8a03-47851e79400b", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.681.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-21T10:45:36+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "eb96b66a-a0f5-45a9-a9bf-52944a5e74ec", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.663.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-20T10:45:38+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "8491c0be-e804-44c8-b98d-17fd3acf6138", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.621.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-19T10:46:05+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0bbcd0d5-18c8-4fb4-a2ec-23d84ec7c66c", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.617.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-19T06:06:59+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "43b881d3-b899-437f-8c67-5dd28c2872cc", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.601.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-18T10:45:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "57754af8-fda8-4da0-b582-c9d42e375f4d", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.599.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-18T06:07:56+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "00368292-4f80-4454-a90b-3f8543132f14", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.583.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-17T10:45:46+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "888ca852-187d-4a2a-aaa6-36b466fb7723", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.565.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-16T10:46:03+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b49efe02-e9f4-4ace-9f6f-31d54085b847", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.546.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-15T10:46:10+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "d52b3b05-55c1-4191-ac01-63562540dadf", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.529.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-14T10:45:48+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "2237268c-6646-438c-afa0-9a5e4e898c73", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.511.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T10:45:54+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "ca7b159e-2191-4fa7-b3b9-c51ab1c0dd95", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.496.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-12T23:36:32+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "62119394-0a9b-4716-b618-c685fe66a5dd", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.445.489.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-12T06:07:55+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a26d2c8a-940f-4b35-9f04-bb1bdbf2726c", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-12T06:07:37+00:00", + "operation": "Installation", + "serverSelection": "Others" + } + ], + "policy": { + "wsusConfigured": false, + "wufbConfigured": false, + "deferFeatureUpdatesDays": 0, + "autoUpdateEnabled": false, + "auOptions": 1, + "targetGroupEnabled": false + } + }, + "installedHotfixes": [ + { + "hotFixId": "KB5082417", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5054156", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5071430", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5083769", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5088467", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + } + ], + "cbsPackages": [ + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-Graphics-Tools-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-OneCore-Graphics-Tools-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-Graphics-Tools-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-Graphics-Tools-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8039", + "state": "| Superseded | Language Pack", + "releaseType": "| 26/03/2026 5:40 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Superseded | Language Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8039", + "state": "| Superseded | Language Pack", + "releaseType": "| 26/03/2026 5:40 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Superseded | Language Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | OnDemand Pack", + "state": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | OnDemand Pack", + "state": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 26/01/2026 9:21 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-CompDB-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 26/01/2026 9:21 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| Feature Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7623 | Superseded | Feature Pack", + "state": "| 26/01/2026 9:21 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7627 | Superseded | Feature Pack", + "state": "| 30/01/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Superseded | Feature Pack", + "state": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | Feature Pack", + "state": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | Feature Pack", + "state": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| Feature Pack", + "releaseType": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Foundation", + "installTime": "| 26/01/2026 9:20 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-GB~11.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8037", + "state": "| Superseded | Language Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8037", + "state": "| Superseded | Language Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Feature Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.8037", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7623", + "state": "| Superseded | Language Pack", + "releaseType": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7623", + "state": "| Superseded | Language Pack", + "releaseType": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7920", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 10:31 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | OnDemand Pack", + "state": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | OnDemand Pack", + "state": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | OnDemand Pack", + "state": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | OnDemand Pack", + "state": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8187se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8187se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8187se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8187se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl819xp-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl819xp-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl819xp-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl819xp-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl85n64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl85n64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl85n64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl85n64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 10:34 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9321.3", + "state": "| Superseded | Update", + "releaseType": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9333.2", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Package_for_KB5054156~31bf3856ad364e35~amd64~~26100.6717.1.4", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 26/01/2026 10:25 PM" + }, + { + "packageIdentity": "Package_for_KB5071430~31bf3856ad364e35~amd64~~26100.7298.1.3", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 26/01/2026 6:27 AM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10", + "state": "| Staged", + "releaseType": "| Security Update |" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8039.1.0", + "state": "| Superseded | Update", + "releaseType": "| 26/03/2026 5:40 AM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8117.1.4", + "state": "| Superseded | Update", + "releaseType": "| 3/04/2026 10:33 AM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8246.1.23", + "state": "| Installed", + "releaseType": "| Security Update | 17/04/2026 10:33 AM" + }, + { + "packageIdentity": "Package_for_ServicingStack_8247~31bf3856ad364e35~amd64~~26100.8247.1.5", + "state": "| Installed", + "releaseType": "| Security Update | 15/04/2026 6:21 AM" + } + ], + "drivers": [ + { + "deviceName": "WAN Miniport (Network Monitor)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanbh", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IPv6)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanipv6", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanip", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (PPPOE)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_pppoeminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (PPTP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_pptpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (L2TP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_l2tpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IKEv2)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netavpna.inf", + "hardwareId": "ms_agilevpnminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (SSTP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netsstpa.inf", + "hardwareId": "ms_sstpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{3ee39114-30b4-45a4-a109-19d4a40fcc22}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{c1f56d94-a46f-492e-a129-7f54d1ee2356}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\microsoftmicrosoft_s7d14", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{084f01fa-e634-4d77-83ee-074817c03581}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Canon", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\canonir-adv_c3520_ufb1c3", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\LocalPrintQueue", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Tailscale Tunnel", + "driverVersion": "0.14.0.0", + "manufacturer": "WireGuard LLC", + "infName": "oem68.inf", + "hardwareId": "Wintun", + "deviceClass": "NET", + "driverDate": "2021-10-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Canon", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\LocalPrintQueue", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Canon Office XPS Class Driver", + "driverVersion": "10.0.17119.1", + "manufacturer": "Canon", + "infName": "oem28.inf", + "hardwareId": "WSDPRINT\\CanoniR-ADV_C3520_IICF1D", + "deviceClass": "PRINTER", + "driverDate": "2009-04-22T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WSD Print Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Canon", + "infName": "wsdprint.inf", + "hardwareId": "UMB\\VEN_BF&DEV_2812&SUBSYS_01", + "deviceClass": "WSDPRINTDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Canon", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "NgcDeviceEnum\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "ScDeviceInformationNode\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "ScDeviceInformationNode\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Voice Clarity", + "driverVersion": "10.0.26100.6700", + "manufacturer": "Microsoft Corporation", + "infName": "oem72.inf", + "hardwareId": "SWC\\VEN_MSFT&AUDIO_EFFECTPACK_VOICECLARITY", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-12-11T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Computer Device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "compdev.inf", + "hardwareId": "COMPUTER\\{592EE815-0675-5332-AE65-68291684B77D}", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Remote Desktop Device Redirector Bus", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "rdpbus.inf", + "hardwareId": "ROOT\\RDPBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Streaming Service Proxy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ksfilter.inf", + "hardwareId": "SW\\{96E080C7-143C-11D1-B40F-00A0C9223196}", + "deviceClass": "MEDIA", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Plug and Play Software Device Enumerator", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard system devices)", + "infName": "swenum.inf", + "hardwareId": "ROOT\\SWENUM", + "deviceClass": "SYSTEM", + "driverDate": "2025-05-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft System Management BIOS Driver", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard system devices)", + "infName": "mssmbios.inf", + "hardwareId": "ROOT\\mssmbios", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "NDIS Virtual Network Adapter Enumerator", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ndisvirtualbus.inf", + "hardwareId": "ROOT\\NdisVirtualBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Parsec Virtual USB Adapter", + "driverVersion": "0.3.10.0", + "manufacturer": "Parsec Cloud, Inc.", + "infName": "oem85.inf", + "hardwareId": "Root\\Parsec\\VUSBA", + "deviceClass": "USB", + "driverDate": "2024-08-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Crash Defender", + "driverVersion": "24.30.0.1", + "manufacturer": "Advanced Micro Devices, Inc.", + "infName": "oem70.inf", + "hardwareId": "ROOT\\AMDLOG", + "deviceClass": "SYSTEM", + "driverDate": "2024-09-17T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtual Disk Server", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "wstorvsp.inf", + "hardwareId": "root\\storvsp", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Steam Streaming Speakers", + "driverVersion": "17.56.13.764", + "manufacturer": "Valve Corporation Audio DDK", + "infName": "oem62.inf", + "hardwareId": "ROOT\\SteamStreamingSpeakers", + "deviceClass": "MEDIA", + "driverDate": "2017-07-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Steam Streaming Microphone", + "driverVersion": "8.33.15.17", + "manufacturer": "Valve Corporation Audio DDK", + "infName": "oem4.inf", + "hardwareId": "ROOT\\SteamStreamingMicrophone", + "deviceClass": "MEDIA", + "driverDate": "2017-07-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Render Driver", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "basicrender.inf", + "hardwareId": "ROOT\\BasicRender", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V PCI Server", + "driverVersion": "10.0.26100.3037", + "manufacturer": "Microsoft", + "infName": "wvpcivsp.inf", + "hardwareId": "root\\Vpcivsp", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{6a36ab4a-d43d-4747-8c25-a5194448c8de}&REV_1", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft UEFI-Compliant System", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "uefi.inf", + "hardwareId": "ACPI_HAL\\UEFI", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Fixed Feature Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\FixedButton", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD GPIO Controller", + "driverVersion": "3.0.0.0", + "manufacturer": "Advanced Micro Devices, Inc.", + "infName": "oem61.inf", + "hardwareId": "ACPI\\VEN_AMDI&DEV_F031", + "deviceClass": "SYSTEM", + "driverDate": "2022-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Advanced Micro Devices", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Processor Container Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_ACPI&DEV_0010", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD PPM Provisioning File", + "driverVersion": "8.0.0.28", + "manufacturer": "Advanced Micro Devices, Inc.", + "infName": "oem24.inf", + "hardwareId": "ACPI\\VEN_AMDI&DEV_0052", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD GPIO Controller", + "driverVersion": "2.2.0.133", + "manufacturer": "Advanced Micro Devices, Inc", + "infName": "oem58.inf", + "hardwareId": "ACPI\\VEN_AMDI&DEV_0030", + "deviceClass": "SYSTEM", + "driverDate": "2024-05-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Trusted Platform Module 2.0", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard)", + "infName": "tpm.inf", + "hardwareId": "ACPI\\VEN_MSFT&DEV_0101", + "deviceClass": "SECURITYDEVICES", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High precision event timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0103", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Power Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C0C", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "MSI Software Component Interface", + "driverVersion": "1.0.0.15", + "manufacturer": "Micro-Star INT'L CO., LTD.", + "infName": "oem30.inf", + "hardwareId": "ACPI\\VEN_MBAD&DEV_0002", + "deviceClass": "SYSTEM", + "driverDate": "2026-07-01T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System board", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E7&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E6&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E5&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E4&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E3&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E2&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E1&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14E0&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System speaker", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0800", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System CMOS/real time clock", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0B00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0100", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Direct memory access controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0200", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Programmable interrupt controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0000", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard ISA bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_790E&SUBSYS_7E091462&REV_51", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD SMBus", + "driverVersion": "5.12.0.38", + "manufacturer": "Advanced Micro Devices, Inc", + "infName": "oem9.inf", + "hardwareId": "PCI\\VEN_1022&DEV_790B&SUBSYS_7E091462&REV_71", + "deviceClass": "SYSTEM", + "driverDate": "2022-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30&VID1022&PID15B8&REV0000", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_15B8&SUBSYS_7E091462&REV_00", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DD&SUBSYS_14627E09&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High Definition Audio Device", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "hdaudio.inf", + "hardwareId": "HDAUDIO\\FUNC_01&VEN_10EC&DEV_0897&SUBSYS_1462EE09&REV_1004", + "deviceClass": "MEDIA", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High Definition Audio Controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hdaudbus.inf", + "hardwareId": "PCI\\VEN_1022&DEV_15E3&SUBSYS_EE091462&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2026-03-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\HID_DEVICE_SYSTEM_VHF", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Virtual HID Framework (VHF) HID device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hidvhf.inf", + "hardwareId": "HID_DEVICE_SYSTEM_VHF", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "G815", + "hardwareId": "", + "isSigned": false + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D&PID_C33F&REV_3102&MI_01&Col05", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D&PID_C33F&REV_3102&MI_01&Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_046D&PID_C33F&REV_3102&MI_01&Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant mouse", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "msmouse.inf", + "hardwareId": "HID\\VID_046D&PID_C33F&REV_3102&MI_01&Col02", + "deviceClass": "MOUSE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_046D&PID_C33F&REV_3102&MI_01&Col01", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D&PID_C33F&REV_3102&MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_046D&PID_C33F&REV_3102&MI_00", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D&PID_C33F&REV_3102&MI_00", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "G815", + "driverVersion": "1.1.77.5292", + "manufacturer": "Logitech", + "infName": "oem49.inf", + "hardwareId": "USB\\VID_046D&PID_C33F&REV_3102", + "deviceClass": "USB", + "driverDate": "2025-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30&VID1022&PID15B7&REV0000", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_15B7&SUBSYS_7E091462&REV_00", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_0B0E&PID_245D&REV_0187&MI_03&Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_0B0E&PID_245D&REV_0187&MI_03&Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant headset", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hidtelephonydriver.inf", + "hardwareId": "HID\\VID_0B0E&PID_245D&REV_0187&MI_03&Col01", + "deviceClass": "HIDCLASS", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_0B0E&PID_245D&REV_0187&MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Audio Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Generic USB Audio)", + "infName": "wdma_usb.inf", + "hardwareId": "USB\\VID_0B0E&PID_245D&REV_0187&MI_00", + "deviceClass": "MEDIA", + "driverDate": "2026-03-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_0B0E&PID_245D&REV_0187", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30&VID1022&PID15B6&REV0000", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_15B6&SUBSYS_7E091462&REV_00", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD PSP 11.0 Device", + "driverVersion": "5.27.0.0", + "manufacturer": "Advanced Micro Devices Inc.", + "infName": "oem23.inf", + "hardwareId": "PCI\\VEN_1022&DEV_1649&SUBSYS_7E091462&REV_00", + "deviceClass": "SECURITYDEVICES", + "driverDate": "2024-03-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD High Definition Audio Device", + "driverVersion": "10.0.1.21", + "manufacturer": "Advanced Micro Devices", + "infName": "oem16.inf", + "hardwareId": "HDAUDIO\\FUNC_01&VEN_1002&DEV_AA01&SUBSYS_00AA0100&REV_1008", + "deviceClass": "MEDIA", + "driverDate": "2021-07-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High Definition Audio Bus", + "driverVersion": "22.20.0.0", + "manufacturer": "AMD", + "infName": "oem7.inf", + "hardwareId": "PCI\\VEN_1002&DEV_1640&SUBSYS_7E091462&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2022-04-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD-Windows Support Components", + "driverVersion": "32.0.21030.2001", + "manufacturer": "Advanced Micro Devices, Inc.", + "infName": "oem5.inf", + "hardwareId": "SWC\\AMDWIN-25.10", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-09-25T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software component", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swcomponent.inf", + "hardwareId": "SWC\\VID1002&PID0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD-OpenCL User Mode Driver", + "driverVersion": "32.0.21030.2001", + "manufacturer": "Advanced Micro Devices, Inc.", + "infName": "oem69.inf", + "hardwareId": "SWC\\AMDOCL-25.10", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-09-25T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "AMD Radeon(TM) Graphics", + "driverVersion": "32.0.21030.2001", + "manufacturer": "Advanced Micro Devices, Inc.", + "infName": "oem20.inf", + "hardwareId": "PCI\\VEN_1002&DEV_164E&SUBSYS_7E091462&REV_C1", + "deviceClass": "DISPLAY", + "driverDate": "2025-09-25T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DD&SUBSYS_14627E09&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard SATA AHCI Controller", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Standard SATA AHCI Controller", + "infName": "mshdc.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F6&SUBSYS_10621B21&REV_01", + "deviceClass": "HDC", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_05E3&PID_0608&REV_6070", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_1462&PID_7E09&REV_0001", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_1462&PID_7E09&REV_0001", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant touch pad", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D&PID_C548&REV_0503&MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_02&Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_02&Col01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D&PID_C548&REV_0503&MI_02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_01&Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_01&Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_01&Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant mouse", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "msmouse.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_01&Col01", + "deviceClass": "MOUSE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D&PID_C548&REV_0503&MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_046D&PID_C548&REV_0503&MI_00", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Logitech USB Input Device", + "driverVersion": "1.10.80.0", + "manufacturer": "Logitech (x64)", + "infName": "oem6.inf", + "hardwareId": "USB\\VID_046D&PID_C548&REV_0503&MI_00", + "deviceClass": "HIDCLASS", + "driverDate": "2021-08-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_046D&PID_C548&REV_0503", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Audio Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Generic USB Audio)", + "infName": "wdma_usb.inf", + "hardwareId": "USB\\VID_03F0&PID_664A&REV_1201&MI_02", + "deviceClass": "MEDIA", + "driverDate": "2026-03-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Video Device", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "usbvideo.inf", + "hardwareId": "USB\\VID_03F0&PID_664A&REV_1201&MI_00", + "deviceClass": "CAMERA", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_03F0&PID_664A&REV_1201", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth LE Enumerator", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTH\\MS_BTHLE", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (Personal Area Network)", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "bthpan.inf", + "hardwareId": "BTH\\MS_BTHPAN", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTHENUM\\Dev_ACBF7161713E", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTHENUM\\Dev_8099E76A6377", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "GSOUND_BT_CONTROL", + "hardwareId": "BTHENUM\\{f8d1fbe4-7966-4334-8024-ff96c9330e15}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "Bluetooth Peripheral Device", + "hardwareId": "BTHENUM\\{f7a96061-a1b3-40de-aff0-e78ec45a151e}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "BT_SAR_AP", + "hardwareId": "BTHENUM\\{f76acb00-7cab-495f-bb1a-e664598fd77f}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "BTFASTPAIR", + "hardwareId": "BTHENUM\\{df21fe2c-2515-4fdb-8886-f12c4d67927c}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "SRfcomm", + "hardwareId": "BTHENUM\\{9b26d8c0-a8ed-440b-95b0-c4714a518bcc}_VID&0001009e_PID&4039", + "isSigned": false + }, + { + "deviceName": "BTSPOTIFY", + "hardwareId": "BTHENUM\\{9b26d8c0-a8ed-440b-95b0-c4714a518bcc}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "Serial HPC", + "hardwareId": "BTHENUM\\{956c7b26-d49a-4ba8-b03f-b17d393cb6e2}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "Bluetooth Peripheral Device", + "hardwareId": "BTHENUM\\{931c7e8a-540f-4686-b798-e8df0a2ad9f7}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "Airoha_APP", + "hardwareId": "BTHENUM\\{8901dfa8-5c7e-4d8f-9f0c-c2b70683f5f0}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "GSOUND_BT_AUDIO", + "hardwareId": "BTHENUM\\{81c2e72a-0591-443e-a1ff-05f988593351}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "Serial MC", + "hardwareId": "BTHENUM\\{764cbf0d-bbcb-438f-a8bb-6b92759d6053}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "BT_SAR_SE", + "hardwareId": "BTHENUM\\{45c93e07-d90d-4b93-a9db-91e5dd734e35}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "LE Serial HPC", + "hardwareId": "BTHENUM\\{443cce33-e85d-4b85-8d53-6e319ede53ae}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "Bluetooth HID Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "hidbth.inf", + "hardwareId": "BTHENUM\\{00001124-0000-1000-8000-00805f9b34fb}_VID&0002054c_PID&0df4", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Hands-Free Audio device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_hfp.inf", + "hardwareId": "BTHHFENUM\\BthHFPAudio", + "deviceClass": "MEDIA", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Hands-Free Profile AudioGateway role", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_hfp_ag.inf", + "hardwareId": "BTHENUM\\{0000111e-0000-1000-8000-00805f9b34fb}_VID&0001009e_PID&4039", + "deviceClass": "SYSTEM", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Hands-Free Audio device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_hfp.inf", + "hardwareId": "BTHHFENUM\\BthHFPAudio", + "deviceClass": "MEDIA", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Hands-Free Profile AudioGateway role", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_hfp_ag.inf", + "hardwareId": "BTHENUM\\{0000111e-0000-1000-8000-00805f9b34fb}_VID&0002054c_PID&0df4", + "deviceClass": "SYSTEM", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110e-0000-1000-8000-00805f9b34fb}_VID&0001009e_PID&4039", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110e-0000-1000-8000-00805f9b34fb}_VID&0002054c_PID&0df4", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110c-0000-1000-8000-00805f9b34fb}_VID&0001009e_PID&4039", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110c-0000-1000-8000-00805f9b34fb}_VID&0002054c_PID&0df4", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth A2dp Source", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_a2dp_src.inf", + "hardwareId": "BTHENUM\\{0000110b-0000-1000-8000-00805f9b34fb}_VID&0001009e_PID&4039", + "deviceClass": "MEDIA", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth A2dp Source", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_a2dp_src.inf", + "hardwareId": "BTHENUM\\{0000110b-0000-1000-8000-00805f9b34fb}_VID&0002054c_PID&0df4", + "deviceClass": "MEDIA", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Peripheral Device", + "hardwareId": "BTHENUM\\{00000000-deca-fade-deca-deafdecacaff}_VID&0001009e_PID&4039", + "isSigned": false + }, + { + "deviceName": "Airoha_IAP2", + "hardwareId": "BTHENUM\\{00000000-deca-fade-deca-deafdecacaff}_VID&0002054c_PID&0df4", + "isSigned": false + }, + { + "deviceName": "Microsoft Bluetooth Enumerator", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTH\\MS_BTHBRB", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (RFCOMM Protocol TDI)", + "driverVersion": "10.0.26100.8036", + "manufacturer": "Microsoft", + "infName": "tdibth.inf", + "hardwareId": "BTH\\MS_RFCOMM", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "RZ608 Bluetooth(R) Adapter", + "driverVersion": "1.1037.0.395", + "manufacturer": "Mediatek Inc.", + "infName": "oem65.inf", + "hardwareId": "USB\\VID_0E8D&PID_0608&REV_0100&MI_00", + "deviceClass": "BLUETOOTH", + "driverDate": "2023-11-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_0E8D&PID_0608&REV_0100", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_174C&PID_2074&REV_0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_174C&PID_2074&REV_0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_03F0&PID_484A&REV_0000&MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_03F0&PID_484A&REV_0000&MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Billboard Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "WinUsb Device", + "infName": "winusb.inf", + "hardwareId": "USB\\VID_03F0&PID_484A&REV_0000&MI_00", + "deviceClass": "USBDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_03F0&PID_484A&REV_0000", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Prolific USB-to-Serial Comm Port", + "driverVersion": "3.9.6.0", + "manufacturer": "Prolific", + "infName": "oem27.inf", + "hardwareId": "USB\\VID_067B&PID_2303&REV_0400", + "deviceClass": "PORTS", + "driverDate": "2024-06-17T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Identity Device (NIST SP 800-73 [PIV])", + "driverVersion": "10.0.26100.2894", + "manufacturer": "Microsoft", + "infName": "msclmd.inf", + "hardwareId": "SCFILTER\\CID_8073c021c057597562694b6579", + "deviceClass": "SMARTCARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Smart card filter driver", + "driverVersion": "10.0.26100.3323", + "manufacturer": "Microsoft", + "infName": "scrawpdo.inf", + "hardwareId": "{892EDE5E-BE49-443c-A0B3-005D74F2D69C}\\ScFilter", + "deviceClass": "SMARTCARDFILTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Usbccid Smartcard Reader (WUDF)", + "driverVersion": "10.0.26100.3323", + "manufacturer": "Microsoft", + "infName": "wudfusbcciddriver.inf", + "hardwareId": "USB\\VID_1050&PID_0407&REV_0574&MI_02", + "deviceClass": "SMARTCARDREADER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant fido", + "driverVersion": "10.0.26100.1", + "manufacturer": "FIDO", + "infName": "fidohid.inf", + "hardwareId": "HID\\VID_1050&PID_0407&REV_0574&MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_1050&PID_0407&REV_0574&MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_1050&PID_0407&REV_0574&MI_00", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_1050&PID_0407&REV_0574&MI_00", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_1050&PID_0407&REV_0574", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant phone", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_0BDA&PID_482A&REV_0002&MI_03&Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_0BDA&PID_482A&REV_0002&MI_03&Col01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_0BDA&PID_482A&REV_0002&MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek USB Audio", + "driverVersion": "6.3.9600.83", + "manufacturer": "Realtek", + "infName": "oem40.inf", + "hardwareId": "USB\\VID_0BDA&PID_482A&REV_0002&MI_00", + "deviceClass": "MEDIA", + "driverDate": "2017-02-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_0BDA&PID_482A&REV_0002", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_04B4&PID_6572&REV_3299", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_04B4&PID_6506&REV_5000", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_04B4&PID_6506&REV_5000", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_174C&PID_3074&REV_0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_174C&PID_3074&REV_0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek USB GbE Family Controller", + "driverVersion": "11.4.211.2022", + "manufacturer": "Realtek", + "infName": "rtucx21x64.inf", + "hardwareId": "USB\\VID_0BDA&PID_8153&REV_3001", + "deviceClass": "NET", + "driverDate": "2015-09-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_04B4&PID_6504&REV_5000", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_04B4&PID_6504&REV_5000", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30&VID1022&PID43F7&REV0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F7&SUBSYS_11421B21&REV_01", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "RZ608 Wi-Fi 6E 80MHz", + "driverVersion": "3.3.0.908", + "manufacturer": "MediaTek, Inc.", + "infName": "oem11.inf", + "hardwareId": "PCI\\VEN_14C3&DEV_0608&SUBSYS_060814C3&REV_00", + "deviceClass": "NET", + "driverDate": "2023-11-27T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Gaming 2.5GbE Family Controller", + "driverVersion": "10.71.312.2024", + "manufacturer": "Realtek", + "infName": "oem63.inf", + "hardwareId": "PCI\\VEN_10EC&DEV_8125&SUBSYS_7E091462&REV_05", + "deviceClass": "NET", + "driverDate": "2024-12-03T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F5&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Upstream Switch Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_43F4&SUBSYS_33281B21&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DB&SUBSYS_7E091462&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Disk drive", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard disk drives)", + "infName": "disk.inf", + "hardwareId": "SCSI\\DiskNVMe_________________________KINGSTON_SNV2S1000GSBM02103", + "deviceClass": "DISKDRIVE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard NVM Express Controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Standard NVM Express Controller", + "infName": "stornvme.inf", + "hardwareId": "PCI\\VEN_2646&DEV_5017&SUBSYS_50172646&REV_03", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DB&SUBSYS_7E091462&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HD Audio Driver for Display Audio", + "driverVersion": "32.0.101.6790", + "manufacturer": "Intel Corporation", + "infName": "oem78.inf", + "hardwareId": "HDAUDIO\\SUBFUNC_01&VEN_8086&DEV_281E&NID_0001&SUBSYS_00000000&REV_1000", + "deviceClass": "MEDIA", + "driverDate": "2025-04-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HD Audio Driver for Display Audio", + "driverVersion": "32.0.101.6790", + "manufacturer": "Intel Corporation", + "infName": "oem78.inf", + "hardwareId": "HDAUDIO\\FUNC_01&VEN_8086&DEV_281E&SUBSYS_80860101&REV_1000", + "deviceClass": "MEDIA", + "driverDate": "2025-04-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High Definition Audio Controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hdaudbus.inf", + "hardwareId": "PCI\\VEN_8086&DEV_E2F7&SUBSYS_11008086&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2026-03-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "1.1.1.1", + "manufacturer": "Intel", + "infName": "oem87.inf", + "hardwareId": "PCI\\VEN_8086&DEV_E2F1&SUBSYS_00008086&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic PnP Monitor", + "driverVersion": "10.0.26100.7309", + "manufacturer": "(Standard monitor types)", + "infName": "monitor.inf", + "hardwareId": "MONITOR\\HPN3468", + "deviceClass": "MONITOR", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic PnP Monitor", + "driverVersion": "10.0.26100.7309", + "manufacturer": "(Standard monitor types)", + "infName": "monitor.inf", + "hardwareId": "MONITOR\\HPN3469", + "deviceClass": "MONITOR", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic PnP Monitor", + "driverVersion": "10.0.26100.7309", + "manufacturer": "(Standard monitor types)", + "infName": "monitor.inf", + "hardwareId": "MONITOR\\LEN61B8", + "deviceClass": "MONITOR", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) PMT Child driver node", + "driverVersion": "1.0.0.15", + "manufacturer": "Intel Corporation", + "infName": "oem84.inf", + "hardwareId": "VIDEO\\VEN_8086&DEV_E20B&SUBSYS_11008086&REV_00&INTC_PMT", + "deviceClass": "SYSTEM", + "driverDate": "2023-12-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Graphics System Controller Auxiliary Firmware Interface", + "driverVersion": "2405.6.0.0", + "manufacturer": "Intel", + "infName": "oem77.inf", + "hardwareId": "{55BC022C-955B-4D87-A88D-D3E68CBEB2F4}\\CT_28bb0e51-b4b0-4509-9e51-78d48daae82b", + "deviceClass": "SYSTEM", + "driverDate": "2024-01-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Graphics System Controller Firmware Interface", + "driverVersion": "32.0.101.6790", + "manufacturer": "Intel", + "infName": "oem75.inf", + "hardwareId": "VIDEO\\VEN_8086&DEV_E20B&SUBSYS_11008086&REV_00&INTC_HECI_2", + "deviceClass": "SYSTEM", + "driverDate": "2025-04-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Arc(TM) B580 Graphics", + "driverVersion": "32.0.101.6790", + "manufacturer": "Intel Corporation", + "infName": "oem74.inf", + "hardwareId": "PCI\\VEN_8086&DEV_E20B&SUBSYS_11008086&REV_00", + "deviceClass": "DISPLAY", + "driverDate": "2025-04-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Downstream Switch Port", + "driverVersion": "1.1.1.1", + "manufacturer": "Intel", + "infName": "oem87.inf", + "hardwareId": "PCI\\VEN_8086&DEV_E2F0&SUBSYS_00008086&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Upstream Switch Port", + "driverVersion": "1.1.1.1", + "manufacturer": "Intel", + "infName": "oem87.inf", + "hardwareId": "PCI\\VEN_8086&DEV_E2FF&SUBSYS_00000000&REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DB&SUBSYS_7E091462&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14DA&SUBSYS_00000000&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_1022&DEV_14D8&SUBSYS_7E091462&REV_00", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Pci Bus", + "driverVersion": "22.20.0.1", + "manufacturer": "AMD", + "infName": "oem44.inf", + "hardwareId": "ACPI\\VEN_PNP&DEV_0A08", + "deviceClass": "SYSTEM", + "driverDate": "2022-04-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant System", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "acpi.inf", + "hardwareId": "ACPI_HAL\\PNP0C08", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI x64-based PC", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard computers)", + "infName": "hal.inf", + "hardwareId": "acpiapic", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "UMB\\UMBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Remote Desktop USB Hub", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "tsusbhub.inf", + "hardwareId": "UMB\\TS_URB_HUB", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "UMB\\UMBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "UMB\\UMBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "UMB\\UMBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Root Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "root\\umbus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Kernel Debug Network Adapter", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "kdnic.inf", + "hardwareId": "root\\kdnic", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Storage Spaces Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "spaceport.inf", + "hardwareId": "Root\\Spaceport", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Virtual Drive Enumerator", + "driverVersion": "10.0.26100.1591", + "manufacturer": "Microsoft", + "infName": "vdrvroot.inf", + "hardwareId": "ROOT\\vdrvroot", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Composite Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "compositebus.inf", + "hardwareId": "ROOT\\CompositeBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtualization Infrastructure Driver", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "wvid.inf", + "hardwareId": "ROOT\\VID", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hypervisor Service", + "driverVersion": "10.0.26100.7309", + "manufacturer": "Microsoft", + "infName": "hvservice.inf", + "hardwareId": "ROOT\\hvservice", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Display Driver", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard display types)", + "infName": "basicdisplay.inf", + "hardwareId": "ROOT\\BasicDisplay", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtual Machine Bus Provider", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "wvmbusr.inf", + "hardwareId": "root\\VMBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic volume shadow copy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "volsnap.inf", + "hardwareId": "STORAGE\\VolumeSnapshot", + "deviceClass": "VOLUMESNAPSHOT", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic volume shadow copy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "volsnap.inf", + "hardwareId": "STORAGE\\VolumeSnapshot", + "deviceClass": "VOLUMESNAPSHOT", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic volume shadow copy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "volsnap.inf", + "hardwareId": "STORAGE\\VolumeSnapshot", + "deviceClass": "VOLUMESNAPSHOT", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume Manager", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "volmgr.inf", + "hardwareId": "ROOT\\VOLMGR", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Parsec Virtual Display Adapter", + "driverVersion": "0.45.0.0", + "manufacturer": "Parsec Cloud, Inc.", + "infName": "oem18.inf", + "hardwareId": "Root\\Parsec\\VDA", + "deviceClass": "DISPLAY", + "driverDate": "2024-01-25T00:00:00+00:00", + "isSigned": true + } + ], + "recentUpdateEvents": [] +} \ No newline at end of file diff --git a/PatchProbe.Server/scans/2026-05-22T12-00-00-000Z_TEST-HOST.json b/PatchProbe.Server/scans/2026-05-22T12-00-00-000Z_TEST-HOST.json new file mode 100644 index 0000000..1aa3971 --- /dev/null +++ b/PatchProbe.Server/scans/2026-05-22T12-00-00-000Z_TEST-HOST.json @@ -0,0 +1,17 @@ +{ + "collector": { + "machineName": "TEST-HOST", + "collectedAt": "2026-05-22T12:00:00Z", + "ranAsAdministrator": true + }, + "windowsUpdate": { + "applicableUpdates": [ + { + "title": "KB12345" + } + ] + }, + "pendingReboot": { + "anyPending": false + } +} \ No newline at end of file diff --git a/PatchProbe.Server/scans/patchprobe_20260513_010721_SSIWKSBT03.json b/PatchProbe.Server/scans/patchprobe_20260513_010721_SSIWKSBT03.json new file mode 100644 index 0000000..dfc7a47 --- /dev/null +++ b/PatchProbe.Server/scans/patchprobe_20260513_010721_SSIWKSBT03.json @@ -0,0 +1,3949 @@ +{ + "collector": { + "schemaVersion": "0.1", + "collectorVersion": "1.0.0", + "collectedAt": "2026-05-13T01:07:21.174013+00:00", + "machineName": "SSIWKSBT03", + "ranAsAdministrator": true + }, + "device": { + "hostname": "SSIWKSBT03", + "manufacturer": "HP", + "model": "HP ProBook 440 14 inch G11 Notebook PC", + "serialNumber": "5CD419BDY6", + "biosVersion": "W72 Ver. 01.07.04", + "biosDate": "20251029000000.000000\u002B000", + "tpmPresent": true, + "tpmVersion": "2.0, 0, 1.59", + "ramBytes": 16605552640, + "domain": "WORKGROUP", + "workgroup": "WORKGROUP", + "systemType": "x64-based PC" + }, + "os": { + "productName": "Windows 10 Pro", + "editionId": "Professional", + "displayVersion": "24H2", + "releaseId": "2009", + "buildNumber": "26100", + "ubr": 7840, + "architecture": "x64", + "installDate": "2026-02-17T23:58:27+00:00", + "lastBoot": "2026-05-08T16:01:20.0352606+00:00" + }, + "pendingReboot": { + "cbsRebootPending": false, + "windowsUpdateRebootRequired": false, + "sessionManagerRebootRequired": true, + "computerRenameRequired": false, + "anyPending": true + }, + "windowsUpdate": { + "applicableUpdates": [ + { + "updateId": "4a54d8ea-71b4-4a30-b0a3-c704bcfcd1e6", + "title": "2026-05 .NET 8.0.27 Security Update for x64 Client (KB5093447)", + "kbArticleId": "KB5093447", + "category": ".NET 8.0", + "severity": "Important", + "rebootRequired": false, + "isDownloaded": false, + "description": "2026-05 .NET 8.0.27 Security Update for x64 Client (KB5093447)", + "supportUrl": "https://go.microsoft.com/fwlink/?linkid=2181179\u0026amp;clcid=0x409" + }, + { + "updateId": "db5bac0b-a277-4d18-9bfd-6c9b08e3251c", + "title": "Windows Malicious Software Removal Tool x64 - v5.141 (KB890830)", + "kbArticleId": "KB890830", + "category": "EU Browser Choice Update-For Europe Only", + "rebootRequired": false, + "isDownloaded": false, + "description": "After the download, this tool runs one time to check your computer for infection by specific, prevalent malicious software (including Blaster, Sasser, and Mydoom) and helps remove any infection that is found. If an infection is found, the tool will display a status report the next time that you start your computer. A new version of the tool will be offered every month. If you want to manually run the tool on your computer, you can download a copy from the Microsoft Download Center, or you can run an online version from microsoft.com. This tool is not a replacement for an antivirus product. To help protect your computer, you should use an antivirus product.", + "supportUrl": "http://support.microsoft.com" + }, + { + "updateId": "214aa3b4-531e-470f-a5ae-a3b0cd71b29a", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.587.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "category": "Definition Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "Install this update to revise the files that are used to detect viruses, spyware, and other potentially unwanted software. Once you have installed this item, it cannot be removed.", + "supportUrl": "https://go.microsoft.com/fwlink/?LinkId=52661" + }, + { + "updateId": "e1ec8f35-395e-4902-8921-1c8324a88ac8", + "title": "Intel Driver Update (24.10.0.4)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel Extension driver update released in November 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "905d030d-423b-4027-8522-15bb16bd8f2d", + "title": "HP Inc. SoftwareDevice Driver Update (1.1.9.3)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Inc. SoftwareDevice driver update released in February 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "96d8cf92-be33-4f27-be13-4665da9749a0", + "title": "Intel Corporation Extension Driver Update (32.0.101.8331)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel Corporation Extension driver update released in November 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "02a0475e-4750-47a4-93c3-5482395bcab4", + "title": "HP Inc. SoftwareComponent Driver Update (4.8.130.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Inc. SoftwareComponent driver update released in February 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "56069c93-26a4-4633-967e-dcb38599130e", + "title": "HP Inc. Extension Driver Update (4.8.130.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Inc. Extension driver update released in February 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "eddb5efd-9a1c-4cd1-8098-06150e30556f", + "title": "Intel Corporation Extension Driver Update (32.0.101.8508)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel Corporation Extension driver update released in January 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "507735cb-e69d-492b-bab2-892ee80d0171", + "title": "Intel Corporation Display Driver Update (32.0.101.8508)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel Corporation Display driver update released in January 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "d5f8f113-2904-4559-8b84-4d8d8e762b9f", + "title": "HP Development Company, L.P. SoftwareComponent Driver Update (8.10.52.464)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Development Company, L.P. SoftwareComponent driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "45a47ba8-4149-4f70-917d-f950b120baf2", + "title": "HP Development Company, L.P. Extension Driver Update (8.10.52.464)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Development Company, L.P. Extension driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "260afb82-5c51-4288-ade6-b0638fe6beb4", + "title": "HP Development Company, L.P. Keyboard Driver Update (8.10.52.464)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Development Company, L.P. Keyboard driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "aa6de4c9-624d-44c8-8685-edfb93b43eba", + "title": "Microsoft Corporation AudioProcessingObject Driver Update (10.0.26100.6710)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Microsoft Corporation AudioProcessingObject driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "a02f8aca-f115-4bd0-9acd-c965a3bc45c0", + "title": "2026-05 .NET Framework Security Update (KB5087054)", + "kbArticleId": "KB5087054", + "category": "Security Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "A security issue has been identified in a Microsoft software product that could affect your system. You can help protect your system by installing this update from Microsoft. For a complete listing of the issues that are included in this update, see the associated Microsoft Knowledge Base article. After you install this update, you may have to restart your system.", + "supportUrl": "https://support.microsoft.com/help/5087054" + }, + { + "updateId": "a90228a3-2053-4f31-b869-beee46792f50", + "title": "Windows 11, version 25H2", + "kbArticleId": "KB5089549", + "category": "Upgrades", + "rebootRequired": false, + "isDownloaded": false, + "description": "Install the latest version of Windows: Windows 11, version 25H2.", + "supportUrl": "https://go.microsoft.com/fwlink/?linkid=2132062#windowsupdate=26100" + } + ], + "history": [ + { + "updateId": "c6f8674d-c23d-4966-8500-ad465a45c321", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.523.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-09T05:58:59+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "ebab12bc-e509-4364-8a4c-2e0b7dd57069", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.477.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-06T22:19:53+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b3fd4e24-0e5c-48a1-bc33-f6d0b00a1017", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.470.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-06T06:57:07+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "298a5813-4338-4cd2-aaca-91a7deeee296", + "title": "2026-04 .NET Framework Security Update (KB5082420)", + "kbArticleId": "KB5082420", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-06T06:01:58+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "8c207e8a-b55b-499e-adfe-f7303c20b038", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.432.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-03T22:08:16+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "79e98c25-3580-4615-b77a-1a690ce24282", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.377.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-01T00:17:05+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "298a5813-4338-4cd2-aaca-91a7deeee296", + "title": "2026-04 .NET Framework Security Update (KB5082420)", + "kbArticleId": "KB5082420", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-30T06:07:36+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "298a5813-4338-4cd2-aaca-91a7deeee296", + "title": "2026-04 .NET Framework Security Update (KB5082420)", + "kbArticleId": "KB5082420", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-29T09:33:07+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e34f3f0b-6f8d-4ce7-adb6-5f80e40e85f6", + "title": "2026-04 .NET 8.0.26 Security Update for x64 Client (KB5086096)", + "kbArticleId": "KB5086096", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-29T09:13:32+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e20ecd7e-9517-4f2d-9530-5cd83d0c1e9f", + "title": "Windows Malicious Software Removal Tool x64 - v5.140 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-29T09:12:41+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a32ca1d0-ddd4-486b-b708-d941db4f1101", + "title": "Update for Windows Security platform - KB5007651 (Version 10.0.29554.1001)", + "kbArticleId": "KB5007651", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-29T09:03:57+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "79bceded-780d-49d9-bf85-e87bab7d739d", + "title": "9WZDNCRFJBMP-MICROSOFT.WINDOWSSTORE", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145124300, + "date": "2026-04-28T22:38:50+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9718a783-be95-400a-95e0-8243f5a20a54", + "title": "9N1F85V9T8BN-MicrosoftCorporationII.Windows365", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145124300, + "date": "2026-04-28T22:37:44+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a84a428c-a170-4f62-b17c-decd1d62975a", + "title": "Update for Microsoft Defender Antivirus antimalware platform - KB4052623 (Version 4.18.26030.3011) - Current Channel (Staged)", + "kbArticleId": "KB4052623", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-27T22:08:43+00:00", + "operation": "Installation", + "serverSelection": "Others" + } + ], + "policy": { + "wsusConfigured": false, + "wufbConfigured": false, + "autoUpdateEnabled": false, + "auOptions": 1, + "targetGroupEnabled": false + } + }, + "installedHotfixes": [ + { + "hotFixId": "KB5082420", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM", + "installedOn": "2026-08-05T00:00:00+00:00" + }, + { + "hotFixId": "KB5077181", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5077869", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + } + ], + "cbsPackages": [ + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7840", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7840", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 1/04/2024 8:01 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-CompDB-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 1/04/2024 8:01 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| Feature Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Installed", + "state": "| Feature Pack", + "releaseType": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Foundation", + "installTime": "| 1/04/2024 7:29 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-GB~11.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:40 PM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-gb-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-au-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7840", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7840", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Feature Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.7840", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:39 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:39 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:04 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:39 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:04 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:04 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-GB~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~en-GB~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:39 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8187se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8187se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl819xp-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl819xp-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl85n64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl85n64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-WMIC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-WMIC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-WMIC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-WMIC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Microsoft-Windows-WMIC-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-WMIC-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-WMIC-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9320.2", + "state": "| Superseded | Update", + "releaseType": "| 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9332.4", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 8/05/2026 4:02 PM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10", + "state": "| Staged", + "releaseType": "| Security Update |" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.7840.1.19", + "state": "| Installed", + "releaseType": "| Security Update | 18/02/2026 3:45 PM" + }, + { + "packageIdentity": "Package_for_ServicingStack_7839~31bf3856ad364e35~amd64~~26100.7839.1.4", + "state": "| Installed", + "releaseType": "| Security Update | 18/02/2026 3:35 PM" + } + ], + "drivers": [ + { + "deviceName": "Tailscale Tunnel", + "driverVersion": "0.14.0.0", + "manufacturer": "WireGuard LLC", + "infName": "oem30.inf", + "hardwareId": "Wintun", + "deviceClass": "NET", + "driverDate": "2021-10-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{3ee39114-30b4-45a4-a109-19d4a40fcc22}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Canon", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\canonir-adv_c3520_iied2f", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{084f01fa-e634-4d77-83ee-074817c03581}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\LocalPrintQueue", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "NgcDeviceEnum\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "ScDeviceInformationNode\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Voice Clarity", + "driverVersion": "10.0.26100.6700", + "manufacturer": "Microsoft Corporation", + "infName": "oem358.inf", + "hardwareId": "SWC\\VEN_MSFT\u0026AUDIO_EFFECTPACK_VOICECLARITY", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-11-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Computer Device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "compdev.inf", + "hardwareId": "COMPUTER\\{76F4DCE9-3A22-5E0A-A16A-02FA2DB45FD1}", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Remote Desktop Device Redirector Bus", + "driverVersion": "10.0.26100.7840", + "manufacturer": "Microsoft", + "infName": "rdpbus.inf", + "hardwareId": "ROOT\\RDPBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C232", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Logitech G HUB Virtual Keyboard", + "driverVersion": "2022.3.0.2", + "manufacturer": "(Standard system devices)", + "infName": "oem99.inf", + "hardwareId": "LGHUBDevice\\VID_046D\u0026PID_C232", + "deviceClass": "HIDCLASS", + "driverDate": "2022-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Logitech G HUB Virtual Bus Enumerator", + "driverVersion": "2022.3.0.2", + "manufacturer": "(Standard system devices)", + "infName": "oem133.inf", + "hardwareId": "root\\LGHUBVirtualBus", + "deviceClass": "SYSTEM", + "driverDate": "2022-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Streaming Service Proxy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ksfilter.inf", + "hardwareId": "SW\\{96E080C7-143C-11D1-B40F-00A0C9223196}", + "deviceClass": "MEDIA", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Plug and Play Software Device Enumerator", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard system devices)", + "infName": "swenum.inf", + "hardwareId": "ROOT\\SWENUM", + "deviceClass": "SYSTEM", + "driverDate": "2025-05-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft System Management BIOS Driver", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard system devices)", + "infName": "mssmbios.inf", + "hardwareId": "ROOT\\mssmbios", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "NDIS Virtual Network Adapter Enumerator", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ndisvirtualbus.inf", + "hardwareId": "ROOT\\NdisVirtualBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Parsec Virtual USB Adapter", + "driverVersion": "0.3.10.0", + "manufacturer": "Parsec Cloud, Inc.", + "infName": "oem26.inf", + "hardwareId": "Root\\Parsec\\VUSBA", + "deviceClass": "USB", + "driverDate": "2024-08-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtual Disk Server", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "wstorvsp.inf", + "hardwareId": "root\\storvsp", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Render Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "basicrender.inf", + "hardwareId": "ROOT\\BasicRender", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V PCI Server", + "driverVersion": "10.0.26100.3037", + "manufacturer": "Microsoft", + "infName": "wvpcivsp.inf", + "hardwareId": "root\\Vpcivsp", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP W72 System Firmware", + "driverVersion": "1.7.4.0", + "manufacturer": "HP", + "infName": "oem66.inf", + "hardwareId": "UEFI\\RES_{df664199-f389-4f32-93fb-11f0e17e0189}\u0026REV_1070400", + "deviceClass": "FIRMWARE", + "driverDate": "2025-10-29T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{bae9716c-e96d-6083-96e2-a86da2ac80f6}\u0026REV_18250000", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{aaa08f4f-bc42-40c2-adf8-aa5a3e62e8e5}\u0026REV_182F0000", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{a0c65e09-4170-48e6-a0e5-b4900666d4b8}\u0026REV_17340000", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft UEFI-Compliant System", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "uefi.inf", + "hardwareId": "ACPI_HAL\\UEFI", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Fixed Feature Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\FixedButton", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP SFU Device", + "driverVersion": "1.1.8.64", + "manufacturer": "HP Inc.", + "infName": "oem166.inf", + "hardwareId": "ACPI\\VEN_HPIC\u0026DEV_0015", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2025-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Manager", + "driverVersion": "2.2.10003.3", + "manufacturer": "Intel", + "infName": "oem295.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1042", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Trusted Platform Module 2.0", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard)", + "infName": "tpm.inf", + "hardwareId": "ACPI\\VEN_NTC\u0026DEV_0702", + "deviceClass": "SECURITYDEVICES", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UCM-UCSI ACPI Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "Microsoft", + "infName": "ucmucsiacpiclient.inf", + "hardwareId": "ACPI\\VEN_USB\u0026DEV_C000", + "deviceClass": "UCM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic Bus", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0A05", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Insights Analytics", + "driverVersion": "4.2.2494.0", + "manufacturer": "HP", + "infName": "oem13.inf", + "hardwareId": "SWC\\HPA000C", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2021-04-30T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Services Scan", + "driverVersion": "4.8.125.0", + "manufacturer": "HP", + "infName": "oem24.inf", + "hardwareId": "SWC\\HPTPSH000C", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-09-30T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Application Driver Component", + "driverVersion": "1.83.4311.0", + "manufacturer": "HP", + "infName": "oem257.inf", + "hardwareId": "SWC\\HPIC000C", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-09-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Application Driver", + "driverVersion": "1.66.3710.0", + "manufacturer": "HP", + "infName": "oem54.inf", + "hardwareId": "ACPI\\VEN_HPIC\u0026DEV_000C", + "deviceClass": "SYSTEM", + "driverDate": "2024-03-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Lid", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0D", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Sleep Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0E", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft AC Adapter", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "cmbatt.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0003", + "deviceClass": "BATTERY", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant Control Method Battery", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "cmbatt.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0A", + "deviceClass": "BATTERY", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\ConvertedDevice\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\ConvertedDevice\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\ConvertedDevice\u0026Col01", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Converted Portable Device Control device", + "driverVersion": "10.0.26100.4484", + "manufacturer": "Microsoft", + "infName": "buttonconverter.inf", + "hardwareId": "ButtonConverter\\ConvertedDevice", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Portable Device Control device", + "driverVersion": "10.0.26100.4484", + "manufacturer": "Microsoft", + "infName": "buttonconverter.inf", + "hardwareId": "HID\\INTC816\u0026Col0B", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col0A", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col09", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col08", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col07", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col06", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col05", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\INTC816\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant wireless radio controls", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\INTC816\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\INTC816\u0026Col01", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) HID Event Filter", + "driverVersion": "2.2.2.10", + "manufacturer": "Intel(R) Corporation", + "infName": "oem208.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1077", + "deviceClass": "HIDCLASS", + "driverDate": "2024-04-25T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Power Engine Plug-in", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel Corporation", + "infName": "intelpep.inf", + "hardwareId": "ACPI\\VEN_INT\u0026DEV_33A1", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Processor Aggregator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "acpipagr.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_000C", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO GPIO Host Controller - INTC1083", + "driverVersion": "30.100.2405.44", + "manufacturer": "Intel Corporation", + "infName": "oem69.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1083", + "deviceClass": "SYSTEM", + "driverDate": "2024-02-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Wake Alarm", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "acpitime.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_000E", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) SPI - 7E23", + "driverVersion": "10.1.47.12", + "manufacturer": "INTEL", + "infName": "oem114.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E23\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) SMBus - 7E22", + "driverVersion": "10.1.47.12", + "manufacturer": "INTEL", + "infName": "oem114.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E22\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia APO Control Service", + "driverVersion": "0.1.1.143", + "manufacturer": "Fortemedia", + "infName": "oem271.inf", + "hardwareId": "SWC\\VEN_1319\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-10-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia Audio Effects Component", + "driverVersion": "12.1.6003.6124", + "manufacturer": "Fortemedia", + "infName": "oem281.inf", + "hardwareId": "SWC\\VEN_1319\u0026AID_0002", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-10-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for Digital Microphones", + "driverVersion": "20.40.12350.3", + "manufacturer": "Intel(R) Corporation", + "infName": "oem278.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_7E28\u0026LINKTYPE_02\u0026DEVTYPE_00\u0026VEN_8086\u0026DEV_AE20\u0026SUBSYS_8C83103C\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2025-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for Bluetooth\u00AE LE Audio", + "driverVersion": "20.40.12350.3", + "manufacturer": "Intel\u00AE Corporation", + "infName": "oem175.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_7E28\u0026LINKTYPE_03\u0026DEVTYPE_03\u0026VEN_8086\u0026DEV_AE33\u0026SUBSYS_8C83103C\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2025-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for Bluetooth\u00AE Audio", + "driverVersion": "20.40.12350.3", + "manufacturer": "Intel(R) Corporation", + "infName": "oem33.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_7E28\u0026LINKTYPE_03\u0026DEVTYPE_00\u0026VEN_8086\u0026DEV_AE30\u0026SUBSYS_8C83103C\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2025-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for USB Audio", + "driverVersion": "20.40.12350.3", + "manufacturer": "Intel(R) Corporation", + "infName": "oem83.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_7E28\u0026LINKTYPE_06\u0026DEVTYPE_06\u0026VEN_8086\u0026DEV_AE50\u0026SUBSYS_8C83103C\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2025-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Audio Universal Service", + "driverVersion": "1.0.917.7", + "manufacturer": "Realtek", + "infName": "oem222.inf", + "hardwareId": "SWC\\VEN_10EC\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Audio Effects Component", + "driverVersion": "13.4017.2197.684", + "manufacturer": "Realtek", + "infName": "oem95.inf", + "hardwareId": "SWC\\VEN_10EC\u0026AID_0011", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Audio Hardware Support Application", + "driverVersion": "12.0.6000.364", + "manufacturer": "Realtek", + "infName": "oem214.inf", + "hardwareId": "SWC\\VEN_10EC\u0026HID_0002", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-05-27T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia APO Control Service", + "driverVersion": "0.1.1.143", + "manufacturer": "Fortemedia", + "infName": "oem271.inf", + "hardwareId": "SWC\\VEN_1319\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-10-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia Audio Effects Component", + "driverVersion": "12.1.6003.6124", + "manufacturer": "Fortemedia", + "infName": "oem281.inf", + "hardwareId": "SWC\\VEN_1319\u0026AID_0002", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-10-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek High Definition Audio", + "driverVersion": "6.0.9909.1", + "manufacturer": "Microsoft", + "infName": "oem89.inf", + "hardwareId": "INTELAUDIO\\FUNC_01\u0026VEN_10EC\u0026DEV_0236\u0026SUBSYS_103C8C88\u0026REV_1000", + "deviceClass": "MEDIA", + "driverDate": "2025-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology Detection Verification", + "driverVersion": "1.0.4002.0", + "manufacturer": "Intel(R) Corporation", + "infName": "oem237.inf", + "hardwareId": "INTELAUDIO\\DIF_0000\u0026UIF_0000\u0026CTLR_DEV_7E28\u0026VEN_8086\u0026DetectionVerification", + "deviceClass": "SYSTEM", + "driverDate": "2025-08-22T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology OED", + "driverVersion": "20.40.12350.3", + "manufacturer": "Intel(R) Corporation", + "infName": "oem179.inf", + "hardwareId": "INTELAUDIO\\DSP_CTLR_DEV_7E28\u0026VEN_8086\u0026DEV_0222\u0026SUBSYS_8C83103C\u0026REV_0020", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology BUS", + "driverVersion": "20.40.12350.3", + "manufacturer": "Intel(R) Corporation", + "infName": "oem346.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E28\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP LAN/WLAN/WWAN Switching and Hotkey Service", + "driverVersion": "8.10.50.393", + "manufacturer": "HP Inc.", + "infName": "oem139.inf", + "hardwareId": "SWC\\HPHKS\u0026SRVCS", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-12-10T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Keyboard_Filter_01", + "manufacturer": "HP Inc.", + "hardwareId": "{A87C2E0F-9A46-46b8-8EC4-E33355FBE1F7}\\KeyboardFilter", + "isSigned": false + }, + { + "deviceName": "Standard 101/102-Key or Microsoft Natural PS/2 Keyboard for HP Hotkey Support", + "driverVersion": "8.10.50.393", + "manufacturer": "HP Inc.", + "infName": "oem315.inf", + "hardwareId": "ACPI\\VEN_HPQ\u0026DEV_8002", + "deviceClass": "KEYBOARD", + "driverDate": "2025-12-10T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_109D", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0100", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Programmable interrupt controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0000", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High precision event timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0103", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Generic Participant", + "driverVersion": "2.2.10003.3", + "manufacturer": "Intel", + "infName": "oem295.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1062", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Generic Participant", + "driverVersion": "2.2.10003.3", + "manufacturer": "Intel", + "infName": "oem295.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1062", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Generic Participant", + "driverVersion": "2.2.10003.3", + "manufacturer": "Intel", + "infName": "oem295.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1062", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant Embedded Controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C09", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard ISA bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E03\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO SPI Host Controller - 7E27", + "driverVersion": "30.100.2405.44", + "manufacturer": "Intel Corporation", + "infName": "oem210.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E27\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2024-02-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO UART Host Controller - 7E25", + "driverVersion": "30.100.2405.44", + "manufacturer": "Intel Corporation", + "infName": "oem29.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E25\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2024-02-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek PCIe GbE Family Controller", + "driverVersion": "1168.27.919.2025", + "manufacturer": "Realtek", + "infName": "oem163.inf", + "hardwareId": "PCI\\VEN_10EC\u0026DEV_8168\u0026SUBSYS_8C83103C\u0026REV_15", + "deviceClass": "NET", + "driverDate": "2025-09-19T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E3C\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Wireless Manageability", + "driverVersion": "2536.98.121.0", + "manufacturer": "Intel", + "infName": "oem201.inf", + "hardwareId": "SWC\\E4B9BAF3-7014-4E93-BE10-2922B68D1F40", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-09-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Management Engine WMI Provider", + "driverVersion": "2522.8.2.0", + "manufacturer": "Intel", + "infName": "oem20.inf", + "hardwareId": "SWC\\06657A6D-FE0F-4C90-8DDA-A1501C74CE4B", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-05-27T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Management Engine Interface #1", + "driverVersion": "2540.8.7.0", + "manufacturer": "Intel", + "infName": "oem347.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E70\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_311D\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Input Configuration Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "mtconfig.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_311D\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant touch pad", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_311D\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant mouse", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "msmouse.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_311D\u0026Col01", + "deviceClass": "MOUSE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "I2C HID Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "hidi2c.inf", + "hardwareId": "ACPI\\VEN_SYNA\u0026DEV_311D", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO I2C Host Controller - 7E78", + "driverVersion": "30.100.2405.44", + "manufacturer": "Intel Corporation", + "infName": "oem302.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E78\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2024-02-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Wi-Fi 6E AX211 160MHz", + "driverVersion": "24.10.0.4", + "manufacturer": "Intel Corporation", + "infName": "oem19.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E40\u0026SUBSYS_00948086\u0026REV_20", + "deviceClass": "NET", + "driverDate": "2025-11-11T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Shared SRAM - 7E7F", + "driverVersion": "10.1.47.12", + "manufacturer": "INTEL", + "infName": "oem114.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E7F\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Synaptics FS7605 Touch Fingerprint Sensor with PurePrint(TM)", + "driverVersion": "6.0.134.1110", + "manufacturer": "Synaptics Incorporated", + "infName": "oem322.inf", + "hardwareId": "USB\\VID_06CB\u0026PID_00F0\u0026REV_0000", + "deviceClass": "BIOMETRIC", + "driverDate": "2025-05-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth LE Generic Attribute Service", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{00010000-0000-1000-8000-011f2000046d}_Dev_VID\u002602046d_PID\u0026b034_REV\u00260006", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth LE Generic Attribute Service", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{0000fd72-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b034_REV\u00260006", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Low Energy GATT compliant HID device", + "driverVersion": "10.0.26100.7309", + "manufacturer": "Microsoft", + "infName": "hidbthle.inf", + "hardwareId": "BTHLEDevice\\{00001812-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b034_REV\u00260006", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth LE Generic Attribute Service", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{0000180f-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b034_REV\u00260006", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Information Service", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{0000180a-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b034_REV\u00260006", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic Attribute Profile", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{00001801-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b034_REV\u00260006", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic Access Profile", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{00001800-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b034_REV\u00260006", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth LE Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLE\\Dev_dd8ce1c76126", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth LE Generic Attribute Service", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{00010000-0000-1000-8000-011f2000046d}_Dev_VID\u002602046d_PID\u0026b023_REV\u00260015", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Low Energy GATT compliant HID device", + "driverVersion": "10.0.26100.7309", + "manufacturer": "Microsoft", + "infName": "hidbthle.inf", + "hardwareId": "BTHLEDevice\\{00001812-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b023_REV\u00260015", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth LE Generic Attribute Service", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{0000180f-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b023_REV\u00260015", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Information Service", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{0000180a-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b023_REV\u00260015", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic Attribute Profile", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{00001801-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b023_REV\u00260015", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic Access Profile", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLEDevice\\{00001800-0000-1000-8000-00805f9b34fb}_Dev_VID\u002602046d_PID\u0026b023_REV\u00260015", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth LE Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTHLE\\Dev_c213da405156", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth LE Enumerator", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTH\\MS_BTHLE", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (Personal Area Network)", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "bthpan.inf", + "hardwareId": "BTH\\MS_BTHPAN", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTHENUM\\Dev_8099E76A6377", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "GSOUND_BT_CONTROL", + "hardwareId": "BTHENUM\\{f8d1fbe4-7966-4334-8024-ff96c9330e15}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "Bluetooth Peripheral Device", + "hardwareId": "BTHENUM\\{f7a96061-a1b3-40de-aff0-e78ec45a151e}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "BT_SAR_AP", + "hardwareId": "BTHENUM\\{f76acb00-7cab-495f-bb1a-e664598fd77f}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "BTFASTPAIR", + "hardwareId": "BTHENUM\\{df21fe2c-2515-4fdb-8886-f12c4d67927c}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "BTSPOTIFY", + "hardwareId": "BTHENUM\\{9b26d8c0-a8ed-440b-95b0-c4714a518bcc}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "Serial HPC", + "hardwareId": "BTHENUM\\{956c7b26-d49a-4ba8-b03f-b17d393cb6e2}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "Bluetooth Peripheral Device", + "hardwareId": "BTHENUM\\{931c7e8a-540f-4686-b798-e8df0a2ad9f7}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "Airoha_APP", + "hardwareId": "BTHENUM\\{8901dfa8-5c7e-4d8f-9f0c-c2b70683f5f0}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "GSOUND_BT_AUDIO", + "hardwareId": "BTHENUM\\{81c2e72a-0591-443e-a1ff-05f988593351}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "Serial MC", + "hardwareId": "BTHENUM\\{764cbf0d-bbcb-438f-a8bb-6b92759d6053}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "BT_SAR_SE", + "hardwareId": "BTHENUM\\{45c93e07-d90d-4b93-a9db-91e5dd734e35}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "LE Serial HPC", + "hardwareId": "BTHENUM\\{443cce33-e85d-4b85-8d53-6e319ede53ae}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "Microsoft Bluetooth Hands-Free Profile AudioGateway role", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_hfp_ag.inf", + "hardwareId": "BTHENUM\\{0000111e-0000-1000-8000-00805f9b34fb}_HCIBYPASS_VID\u00260002054c_PID\u00260df4", + "deviceClass": "SYSTEM", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110e-0000-1000-8000-00805f9b34fb}_VID\u00260002054c_PID\u00260df4", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110c-0000-1000-8000-00805f9b34fb}_VID\u00260002054c_PID\u00260df4", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth A2dp Source", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_a2dp_src.inf", + "hardwareId": "BTHENUM\\{0000110b-0000-1000-8000-00805f9b34fb}_VID\u00260002054c_PID\u00260df4", + "deviceClass": "MEDIA", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Airoha_IAP2", + "hardwareId": "BTHENUM\\{00000000-deca-fade-deca-deafdecacaff}_VID\u00260002054c_PID\u00260df4", + "isSigned": false + }, + { + "deviceName": "Microsoft Bluetooth Enumerator", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTH\\MS_BTHBRB", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (RFCOMM Protocol TDI)", + "driverVersion": "10.0.26100.7171", + "manufacturer": "Microsoft", + "infName": "tdibth.inf", + "hardwareId": "BTH\\MS_RFCOMM", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Hp_Pair_01", + "hardwareId": "", + "isSigned": false + }, + { + "deviceName": "Intel(R) Wireless Bluetooth(R)", + "driverVersion": "23.160.0.9", + "manufacturer": "Intel Corporation", + "infName": "oem67.inf", + "hardwareId": "USB\\VID_8087\u0026PID_0033\u0026REV_0000", + "deviceClass": "BLUETOOTH", + "driverDate": "2025-07-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WinUsb Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "WinUsb Device", + "infName": "winusb.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B804\u0026REV_0004\u0026MI_02", + "deviceClass": "USBDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP HD Camera", + "driverVersion": "5.0.8.87", + "manufacturer": "SunplusIT", + "infName": "oem251.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B804\u0026REV_0004\u0026MI_00", + "deviceClass": "CAMERA", + "driverDate": "2025-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B804\u0026REV_0004", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_03F0\u0026PID_046B\u0026REV_0000\u0026MI_02\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_03F0\u0026PID_046B\u0026REV_0000\u0026MI_02\u0026Col01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_046B\u0026REV_0000\u0026MI_02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WinUsb Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "WinUsb Device", + "infName": "winusb.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_046B\u0026REV_0000\u0026MI_01", + "deviceClass": "USBDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Billboard Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "WinUsb Device", + "infName": "winusb.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_046B\u0026REV_0000\u0026MI_00", + "deviceClass": "USBDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_046B\u0026REV_0000", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_03F0\u0026PID_056B\u0026REV_0006\u0026MI_03\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_03F0\u0026PID_056B\u0026REV_0006\u0026MI_03\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant phone", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_03F0\u0026PID_056B\u0026REV_0006\u0026MI_03\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_03F0\u0026PID_056B\u0026REV_0006\u0026MI_03\u0026Col01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_056B\u0026REV_0006\u0026MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP USB-C Dock Audio Headset", + "driverVersion": "6.4.0.393", + "manufacturer": "Realtek", + "infName": "oem211.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_056B\u0026REV_0006\u0026MI_00", + "deviceClass": "MEDIA", + "driverDate": "2024-07-03T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_056B\u0026REV_0006", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_086B\u0026REV_0121", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_036B\u0026REV_0611", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30\u0026VID8086\u0026PID7E7D\u0026REV0020", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E7D\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek USB GbE Family Controller", + "driverVersion": "1153.21.1009.2025", + "manufacturer": "Realtek", + "infName": "oem16.inf", + "hardwareId": "USB\\VID_0BDA\u0026PID_8153\u0026REV_3001", + "deviceClass": "NET", + "driverDate": "2025-10-09T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_076B\u0026REV_0121", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_03F0\u0026PID_066B\u0026REV_0611", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30\u0026VID8086\u0026PID7EC0\u0026REV0002", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7EC0\u0026SUBSYS_8C83103C\u0026REV_02", + "deviceClass": "USB", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Windows Camera Effects", + "driverVersion": "1.0.41.0", + "manufacturer": "Microsoft Corporation", + "infName": "oem85.inf", + "hardwareId": "SWC\\MEP_CAM\u0026VEN_8086_DEV_7D1D_V1", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Windows Studio Effects Driver", + "driverVersion": "1.0.41.0", + "manufacturer": "Microsoft Corporation", + "infName": "oem318.inf", + "hardwareId": "SWC\\MEP_VEN_8086_DEV_7D1D", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Windows Camera Effects", + "driverVersion": "1.0.41.0", + "manufacturer": "Microsoft Corporation", + "infName": "oem85.inf", + "hardwareId": "SWC\\MEP_CAM\u0026VEN_8086_DEV_7D1D_V1", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Windows Studio Effects Driver", + "driverVersion": "1.0.41.0", + "manufacturer": "Microsoft Corporation", + "infName": "oem318.inf", + "hardwareId": "SWC\\MEP_VEN_8086_DEV_7D1D", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Windows Camera Effects", + "driverVersion": "1.0.41.0", + "manufacturer": "Microsoft Corporation", + "infName": "oem85.inf", + "hardwareId": "SWC\\MEP_CAM\u0026VEN_8086_DEV_7D1D_V1", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Windows Studio Effects Driver", + "driverVersion": "1.0.41.0", + "manufacturer": "Microsoft Corporation", + "infName": "oem318.inf", + "hardwareId": "SWC\\MEP_VEN_8086_DEV_7D1D", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) AI Boost", + "driverVersion": "32.0.100.4240", + "manufacturer": "Intel Corporation", + "infName": "oem301.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7D1D\u0026SUBSYS_8C83103C\u0026REV_04", + "deviceClass": "COMPUTEACCELERATOR", + "driverDate": "2025-08-29T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Platform Monitoring Technology (PMT) Driver", + "driverVersion": "3.1.2.6", + "manufacturer": "Intel(R) Platform Monitoring Technology (PMT) Device", + "infName": "oem31.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7D0D\u0026SUBSYS_8C83103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2024-05-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) GNA Scoring Accelerator module", + "driverVersion": "3.5.0.1578", + "manufacturer": "Intel Corporation", + "infName": "oem317.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E4C\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2023-11-14T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Disk drive", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard disk drives)", + "infName": "disk.inf", + "hardwareId": "SCSI\\DiskNVMe_________________________KBG50ZNV256G_KIOXIAHP02AN00", + "deviceClass": "DISKDRIVE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard NVM Express Controller", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Standard NVM Express Controller", + "infName": "stornvme.inf", + "hardwareId": "PCI\\VEN_1E0F\u0026DEV_000C\u0026SUBSYS_00011E0F\u0026REV_00", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7E4D\u0026SUBSYS_8C83103C\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Tuning Technology", + "driverVersion": "9.0.11702.46642", + "manufacturer": "Intel", + "infName": "oem117.inf", + "hardwareId": "SWC\\VID8086_DTT_1.0", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Tuning Technology Updater Component", + "driverVersion": "9.0.11702.46642", + "manufacturer": "Intel", + "infName": "oem117.inf", + "hardwareId": "SWC\\VID8086_DTTCFG_1.0", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Extensible Framework", + "driverVersion": "2.2.10003.3", + "manufacturer": "Intel", + "infName": "oem203.inf", + "hardwareId": "SWC\\VID8086_IPFEF_1.0", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software component", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swcomponent.inf", + "hardwareId": "SWC\\VID8086_IPFBASEPROVIDER_1.0", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Extensible Framework", + "driverVersion": "2.2.10003.3", + "manufacturer": "Intel", + "infName": "oem203.inf", + "hardwareId": "SWC\\VID8086_IPFEF_1.0", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Processor Participant", + "driverVersion": "2.2.10003.3", + "manufacturer": "Intel", + "infName": "oem203.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7D03\u0026SUBSYS_8C83103C\u0026REV_04", + "deviceClass": "SYSTEM", + "driverDate": "2024-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic PnP Monitor", + "driverVersion": "10.0.26100.7309", + "manufacturer": "(Standard monitor types)", + "infName": "monitor.inf", + "hardwareId": "MONITOR\\AUOE3AC", + "deviceClass": "MONITOR", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Graphics", + "driverVersion": "32.0.101.8247", + "manufacturer": "Intel Corporation", + "infName": "oem118.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7D45\u0026SUBSYS_8C83103C\u0026REV_08", + "deviceClass": "DISPLAY", + "driverDate": "2025-10-22T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_7D02\u0026SUBSYS_8C83103C\u0026REV_04", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Complex", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0A08", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant System", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "acpi.inf", + "hardwareId": "ACPI_HAL\\PNP0C08", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI x64-based PC", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard computers)", + "infName": "hal.inf", + "hardwareId": "acpiapic", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Charge Arbitration Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard system devices)", + "infName": "ChargeArbitration.inf", + "hardwareId": "ROOT\\CAD", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Root Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "root\\umbus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Kernel Debug Network Adapter", + "driverVersion": "10.0.26100.7824", + "manufacturer": "Microsoft", + "infName": "kdnic.inf", + "hardwareId": "root\\kdnic", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Storage Spaces Controller", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "spaceport.inf", + "hardwareId": "Root\\Spaceport", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Virtual Drive Enumerator", + "driverVersion": "10.0.26100.1591", + "manufacturer": "Microsoft", + "infName": "vdrvroot.inf", + "hardwareId": "ROOT\\vdrvroot", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Composite Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "compositebus.inf", + "hardwareId": "ROOT\\CompositeBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtualization Infrastructure Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "wvid.inf", + "hardwareId": "ROOT\\VID", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortinet SSL VPN Virtual Ethernet Adapter", + "driverVersion": "14.0.4.122", + "manufacturer": "Fortinet Inc", + "infName": "oem46.inf", + "hardwareId": "root\\ftsvnic", + "deviceClass": "NET", + "driverDate": "2024-07-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortinet Virtual Ethernet Adapter (NDIS 6.30)", + "driverVersion": "2020.4.9.0", + "manufacturer": "Fortinet", + "infName": "oem57.inf", + "hardwareId": "root\\ftvnic_a", + "deviceClass": "NET", + "driverDate": "2020-04-09T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hypervisor Service", + "driverVersion": "10.0.26100.7309", + "manufacturer": "Microsoft", + "infName": "hvservice.inf", + "hardwareId": "ROOT\\hvservice", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Display Driver", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard display types)", + "infName": "basicdisplay.inf", + "hardwareId": "ROOT\\BasicDisplay", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtual Machine Bus Provider", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "wvmbusr.inf", + "hardwareId": "root\\VMBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic volume shadow copy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "volsnap.inf", + "hardwareId": "STORAGE\\VolumeSnapshot", + "deviceClass": "VOLUMESNAPSHOT", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume Manager", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "volmgr.inf", + "hardwareId": "ROOT\\VOLMGR", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + } + ], + "recentUpdateEvents": [] +} \ No newline at end of file diff --git a/PatchProbe.Server/scans/patchprobe_20260513_012830_SSIWKSZO02.json b/PatchProbe.Server/scans/patchprobe_20260513_012830_SSIWKSZO02.json new file mode 100644 index 0000000..11088e1 --- /dev/null +++ b/PatchProbe.Server/scans/patchprobe_20260513_012830_SSIWKSZO02.json @@ -0,0 +1,3365 @@ +{ + "collector": { + "schemaVersion": "0.1", + "collectorVersion": "1.0.0", + "collectedAt": "2026-05-13T01:28:30.0452879+00:00", + "machineName": "SSIWKSZO02", + "ranAsAdministrator": true + }, + "device": { + "hostname": "SSIWKSZO02", + "manufacturer": "LENOVO", + "model": "20WM007BAU", + "serialNumber": "PC26VF3V", + "biosVersion": "N35ET64W (1.64 )", + "biosDate": "20251114000000.000000\u002B000", + "tpmPresent": true, + "tpmVersion": "2.0, 0, 1.38", + "ramBytes": 16885276672, + "domain": "WORKGROUP", + "workgroup": "WORKGROUP", + "systemType": "x64-based PC" + }, + "os": { + "productName": "Windows 10 Enterprise", + "editionId": "Enterprise", + "displayVersion": "25H2", + "releaseId": "2009", + "buildNumber": "26200", + "ubr": 8246, + "architecture": "x64", + "installDate": "2026-02-23T22:29:55+00:00", + "lastBoot": "2026-05-12T23:55:23.3795661+00:00" + }, + "pendingReboot": { + "cbsRebootPending": false, + "windowsUpdateRebootRequired": false, + "sessionManagerRebootRequired": true, + "computerRenameRequired": false, + "anyPending": true + }, + "windowsUpdate": { + "applicableUpdates": [ + { + "updateId": "db5bac0b-a277-4d18-9bfd-6c9b08e3251c", + "title": "Windows Malicious Software Removal Tool x64 - v5.141 (KB890830)", + "kbArticleId": "KB890830", + "category": "EU Browser Choice Update-For Europe Only", + "rebootRequired": false, + "isDownloaded": false, + "description": "After the download, this tool runs one time to check your computer for infection by specific, prevalent malicious software (including Blaster, Sasser, and Mydoom) and helps remove any infection that is found. If an infection is found, the tool will display a status report the next time that you start your computer. A new version of the tool will be offered every month. If you want to manually run the tool on your computer, you can download a copy from the Microsoft Download Center, or you can run an online version from microsoft.com. This tool is not a replacement for an antivirus product. To help protect your computer, you should use an antivirus product.", + "supportUrl": "http://support.microsoft.com" + }, + { + "updateId": "214aa3b4-531e-470f-a5ae-a3b0cd71b29a", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.587.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "category": "Definition Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "Install this update to revise the files that are used to detect viruses, spyware, and other potentially unwanted software. Once you have installed this item, it cannot be removed.", + "supportUrl": "https://go.microsoft.com/fwlink/?LinkId=52661" + }, + { + "updateId": "c2669d4c-8691-449b-96d6-90cf66ecac88", + "title": "Intel Driver Update (15.0.55.2751)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel Firmware driver update released in January 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "2a29941f-e028-47c0-9e26-ec72f947b274", + "title": "ELAN Mouse Driver Update (31.21.60.1)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "ELAN Mouse driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "5460a0d4-95d9-41af-970d-8d4fadad782c", + "title": "2026-05 .NET Framework Security Update (KB5087051)", + "kbArticleId": "KB5087051", + "category": "Security Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "A security issue has been identified in a Microsoft software product that could affect your system. You can help protect your system by installing this update from Microsoft. For a complete listing of the issues that are included in this update, see the associated Microsoft Knowledge Base article. After you install this update, you may have to restart your system.", + "supportUrl": "https://support.microsoft.com/help/5087051" + }, + { + "updateId": "aefa394f-dfdc-4a02-aaeb-53b082db55b1", + "title": "2026-05 Security Update (Hotpatch capable) (KB5089466) (26200.8390)", + "kbArticleId": "KB5089466", + "category": "Security Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "Install this update to resolve issues in Windows. For a complete listing of the issues that are included in this update, see the associated Microsoft Knowledge Base article for more information. After you install this item, you may have to restart your computer.", + "supportUrl": "https://support.microsoft.com/help/5089466" + } + ], + "history": [ + { + "updateId": "4cc3ba87-7f87-4353-9370-62f6296b2e54", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.585.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-13T00:06:42+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "74a9f237-51d4-481e-8687-667a69050ec9", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-13T00:03:58+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "36a13d04-9b3f-498e-b582-66fdd6b27347", + "title": "9NKRJ3SJ9SDG-Microsoft.WindowsAppRuntime.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-13T00:03:58+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "aefac0ae-c045-411f-9999-5fdc877b9938", + "title": "9NBLGGH4NNS1-Microsoft.DesktopAppInstaller", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145124300, + "date": "2026-05-12T06:31:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "4890a18a-3134-4de6-a503-1356beb9282c", + "title": "Razer Inc - HIDClass - 6.2.9200.16547", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T05:28:13+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T05:24:03+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "97f7f5ef-694c-4ab4-9c8c-6ffc318f8a6c", + "title": "9NKRJ3SJ9SDG-Microsoft.WindowsAppRuntime.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T05:24:03+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "3929eae1-c66b-4fae-ac30-e6add683fee2", + "title": "Update for Microsoft Defender Antivirus antimalware platform - KB4052623 (Version 4.18.26030.3011) - Current Channel (Broad)", + "kbArticleId": "KB4052623", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:58:49+00:00", + "operation": "Installation", + "serverSelection": "WindowsUpdate" + }, + { + "updateId": "3929eae1-c66b-4fae-ac30-e6add683fee2", + "title": "Update for Microsoft Defender Antivirus antimalware platform - KB4052623 (Version 4.18.26030.3011) - Current Channel (Broad)", + "kbArticleId": "KB4052623", + "resultCode": 4, + "hResult": -2145124300, + "date": "2026-05-12T03:55:06+00:00", + "operation": "Installation", + "serverSelection": "WindowsUpdate" + }, + { + "updateId": "95afac88-8051-4b6f-94bc-08d605aaf3bd", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.573.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:54:58+00:00", + "operation": "Installation", + "serverSelection": "WindowsUpdate" + }, + { + "updateId": "4c844595-7ffa-4797-afe8-8c7e8346595e", + "title": "2026-02 Critical Update (KB5078674)", + "kbArticleId": "KB5078674", + "resultCode": 4, + "hResult": -2145124300, + "date": "2026-05-12T03:54:50+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "913106e0-af16-4299-9e40-e5f52c70b08e", + "title": "Lenovo Ltd. Firmware Driver Update (1.64.0.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:47:19+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "5d2eb874-80e3-4af0-9f62-4f6e5b9ba618", + "title": "2026-04 Security Update (KB5083769) (26200.8246)", + "kbArticleId": "KB5083769", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:47:14+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e63e1993-111f-434d-a732-d9f89d31caaf", + "title": "Intel Corporation Display Driver Update (32.0.101.7085)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:29:15+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "aa6de4c9-624d-44c8-8685-edfb93b43eba", + "title": "Microsoft Corporation AudioProcessingObject Driver Update (10.0.26100.6710)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:28:00+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "bb1606dc-66c2-485d-a885-bc45aa6d220a", + "title": "Lenovo System Driver Update (1.69.168.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:27:58+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "374fd8d4-a17c-448e-b354-30341e279c68", + "title": "Lenovo System Driver Update (2.3.8.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:27:52+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "913106e0-af16-4299-9e40-e5f52c70b08e", + "title": "Lenovo Ltd. Firmware Driver Update (1.64.0.0)", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145124276, + "date": "2026-05-12T03:27:48+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "163f088f-4e6b-4453-9d0a-9f46a882b324", + "title": "2026-04 .NET Framework Security Update (KB5082417)", + "kbArticleId": "KB5082417", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:27:47+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e20ecd7e-9517-4f2d-9530-5cd83d0c1e9f", + "title": "Windows Malicious Software Removal Tool x64 - v5.140 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:26:44+00:00", + "operation": "Installation", + "serverSelection": "WindowsUpdate" + }, + { + "updateId": "b0a94304-3c54-490b-a360-d338caa807de", + "title": "Security Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version 1.449.571.0) - Current Channel (Broad)", + "kbArticleId": "KB2267602", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:25:53+00:00", + "operation": "Installation", + "serverSelection": "WindowsUpdate" + }, + { + "updateId": "ba61e8a6-c4f4-4a4c-91f8-ca216ba3359c", + "title": "Intel Driver Update (2543.98.178.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:25:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "3fb6415e-336f-42a0-a82f-623d1de9719a", + "title": "Lenovo System Driver Update (10.17.2603.3)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:25:13+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9684e7f5-b4d1-4b0c-8a74-d398e819e46c", + "title": "Lenovo System Driver Update (10.2.4.15)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:25:10+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a32ca1d0-ddd4-486b-b708-d941db4f1101", + "title": "Update for Windows Security platform - KB5007651 (Version 10.0.29554.1001)", + "kbArticleId": "KB5007651", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:24:57+00:00", + "operation": "Installation", + "serverSelection": "WindowsUpdate" + }, + { + "updateId": "028df41c-b471-4f0a-be34-eea0fa8b431c", + "title": "Intel Corporation Extension Driver Update (32.0.101.7085)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:24:56+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "888898a5-b786-4602-81a7-221ba90a746a", + "title": "Intel Driver Update (2543.98.178.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T03:24:52+00:00", + "operation": "Installation", + "serverSelection": "Others" + } + ], + "policy": { + "wsusConfigured": false, + "wufbConfigured": false, + "autoUpdateEnabled": false, + "auOptions": 1, + "targetGroupEnabled": false + } + }, + "installedHotfixes": [ + { + "hotFixId": "KB5082417", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM", + "installedOn": "2026-12-05T00:00:00+00:00" + }, + { + "hotFixId": "KB5054156", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5071430", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5083769", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM", + "installedOn": "2026-12-05T00:00:00+00:00" + }, + { + "hotFixId": "KB5077869", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5088467", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM", + "installedOn": "2026-12-05T00:00:00+00:00" + } + ], + "cbsPackages": [ + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7840", + "state": "| Superseded | Language Pack", + "releaseType": "| 23/02/2026 10:16 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Superseded | OnDemand Pack", + "state": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-CompDB-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| Feature Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Superseded | Feature Pack", + "state": "| 23/02/2026 10:16 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| Feature Pack", + "releaseType": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Foundation", + "installTime": "| 23/02/2026 10:16 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7840", + "state": "| Superseded | Language Pack", + "releaseType": "| 23/02/2026 10:16 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Feature Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.7840", + "state": "| Superseded | Feature Pack", + "releaseType": "| 23/02/2026 10:16 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.8037", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:50 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Superseded | OnDemand Pack", + "state": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Superseded | OnDemand Pack", + "state": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "|" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9321.3", + "state": "| Superseded | Update", + "releaseType": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9333.2", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Package_for_KB5054156~31bf3856ad364e35~amd64~~26100.6717.1.4", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Package_for_KB5071430~31bf3856ad364e35~amd64~~26100.7298.1.3", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10", + "state": "| Staged", + "releaseType": "| Security Update |" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.7840.1.19", + "state": "| Superseded | Security Update | 23/02/2026 10:17 PM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8246.1.23", + "state": "| Installed", + "releaseType": "| Security Update | 12/05/2026 3:51 AM" + }, + { + "packageIdentity": "Package_for_ServicingStack_7839~31bf3856ad364e35~amd64~~26100.7839.1.4", + "state": "| Installed", + "releaseType": "| Security Update | 23/02/2026 10:16 PM" + }, + { + "packageIdentity": "Package_for_ServicingStack_8247~31bf3856ad364e35~amd64~~26100.8247.1.5", + "state": "| Installed", + "releaseType": "| Security Update | 12/05/2026 3:38 AM" + } + ], + "drivers": [ + { + "deviceName": "WAN Miniport (Network Monitor)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanbh", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IPv6)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanipv6", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanip", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (PPPOE)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_pppoeminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (PPTP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_pptpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (L2TP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_l2tpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IKEv2)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netavpna.inf", + "hardwareId": "ms_agilevpnminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (SSTP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netsstpa.inf", + "hardwareId": "ms_sstpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{3ee39114-30b4-45a4-a109-19d4a40fcc22}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Canon", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\canonir-adv_c3520_ufb1c3", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{084f01fa-e634-4d77-83ee-074817c03581}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\LocalPrintQueue", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "SGDEVAPI\\SensorGroup", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "NgcDeviceEnum\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "ScDeviceInformationNode\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Voice Clarity", + "driverVersion": "10.0.26100.6710", + "manufacturer": "Microsoft Corporation", + "infName": "oem136.inf", + "hardwareId": "SWC\\VEN_MSFT\u0026AUDIO_EFFECTPACK_VOICECLARITY", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2026-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Computer Device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "compdev.inf", + "hardwareId": "COMPUTER\\{1460031E-79DC-54BD-BA06-113B711710DA}", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Remote Desktop Device Redirector Bus", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "rdpbus.inf", + "hardwareId": "ROOT\\RDPBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Streaming Service Proxy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ksfilter.inf", + "hardwareId": "SW\\{96E080C7-143C-11D1-B40F-00A0C9223196}", + "deviceClass": "MEDIA", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Plug and Play Software Device Enumerator", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard system devices)", + "infName": "swenum.inf", + "hardwareId": "ROOT\\SWENUM", + "deviceClass": "SYSTEM", + "driverDate": "2025-05-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft System Management BIOS Driver", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard system devices)", + "infName": "mssmbios.inf", + "hardwareId": "ROOT\\mssmbios", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "NDIS Virtual Network Adapter Enumerator", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ndisvirtualbus.inf", + "hardwareId": "ROOT\\NdisVirtualBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Render Driver", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "basicrender.inf", + "hardwareId": "ROOT\\BasicRender", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{feb9f061-b9d2-4a7c-9be0-1ba561f43db5}\u0026REV_F0340A8C", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{f7041f57-0e2b-4c63-b0e6-f1f92a64f29a}\u0026REV_1", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ThinkPad T14s Gen 2 / X13 Gen 2 Embedded controller Firmware 1.45", + "driverVersion": "1.0.0.45", + "manufacturer": "Lenovo Ltd.", + "infName": "oem28.inf", + "hardwareId": "UEFI\\RES_{e6c0d74d-98a2-489b-920d-f8e8c9418cb3}\u0026REV_1002D", + "deviceClass": "FIRMWARE", + "driverDate": "2025-08-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{d780610e-feff-4a46-a8b7-837199eaf068}\u0026REV_54011161", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo Battery Firmware 258.7", + "driverVersion": "258.0.0.7", + "manufacturer": "Lenovo Ltd.", + "infName": "oem16.inf", + "hardwareId": "UEFI\\RES_{a6cb1ba6-cfbf-466a-a7d7-71f2cfc17049}\u0026REV_1020007", + "deviceClass": "FIRMWARE", + "driverDate": "2023-02-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{7c8c8f35-04f2-b71c-5b41-5d065011746b}\u0026REV_6507", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel CSME 15.0.52.2700 Lp_Cons", + "driverVersion": "15.0.52.2700", + "manufacturer": "Intel", + "infName": "oem31.inf", + "hardwareId": "UEFI\\RES_{7956e676-a3c9-4d8d-9378-4938fdc35c04}\u0026REV_340A8C", + "deviceClass": "FIRMWARE", + "driverDate": "2025-11-06T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ThinkPad T14s Gen 2/ThinkPad X13 Gen 2 System Firmware 1.64", + "driverVersion": "1.64.0.0", + "manufacturer": "Lenovo Ltd.", + "infName": "oem142.inf", + "hardwareId": "UEFI\\RES_{363864c7-1a44-4247-ae16-f2315d3855ea}\u0026REV_10040", + "deviceClass": "FIRMWARE", + "driverDate": "2025-11-14T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{301d53e9-e56f-4b33-8316-2a8276258c4a}\u0026REV_10102", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft UEFI-Compliant System", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "uefi.inf", + "hardwareId": "ACPI_HAL\\UEFI", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Fixed Feature Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\FixedButton", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UCM-UCSI ACPI Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "Microsoft", + "infName": "ucmucsiacpiclient.inf", + "hardwareId": "ACPI\\VEN_USB\u0026DEV_C000", + "deviceClass": "UCM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Trusted Platform Module 2.0", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard)", + "infName": "tpm.inf", + "hardwareId": "ACPI\\VEN_STM\u0026DEV_0125", + "deviceClass": "SECURITYDEVICES", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Tuning Manager", + "driverVersion": "8.7.10700.22502", + "manufacturer": "Intel", + "infName": "oem96.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1040", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Lid", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0D", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System board", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\INTC816\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\INTC816\u0026Col01", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) HID Event Filter", + "driverVersion": "2.2.2.9", + "manufacturer": "Intel(R) Corporation", + "infName": "oem39.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1051", + "deviceClass": "HIDCLASS", + "driverDate": "2024-01-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Power Engine Plug-in", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel Corporation", + "infName": "intelpep.inf", + "hardwareId": "ACPI\\VEN_INT\u0026DEV_33A1", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Processor Aggregator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "acpipagr.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_000C", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\GenuineIntel_-_Intel64_Family_6_Model_140", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Sleep Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0E", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO GPIO Host Controller - INT34C5", + "driverVersion": "30.100.2129.8", + "manufacturer": "Intel Corporation", + "infName": "oem78.inf", + "hardwareId": "ACPI\\VEN_INT\u0026DEV_34C5", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Wake Alarm", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "acpitime.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_000E", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Ethernet Connection (13) I219-V", + "driverVersion": "12.19.2.62", + "manufacturer": "Intel", + "infName": "oem77.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_15FC\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "NET", + "driverDate": "2024-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) SPI (flash) Controller - A0A4", + "driverVersion": "10.1.24.6", + "manufacturer": "INTEL", + "infName": "oem91.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0A4\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) SMBus - A0A3", + "driverVersion": "10.1.24.6", + "manufacturer": "INTEL", + "infName": "oem91.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0A3\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for Digital Microphones", + "driverVersion": "10.29.0.11261", + "manufacturer": "Intel(R) Corporation", + "infName": "oem108.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_A0C8\u0026LINKTYPE_02\u0026DEVTYPE_00\u0026VEN_8086\u0026DEV_AE20\u0026SUBSYS_22D117AA\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2024-06-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for USB Audio", + "driverVersion": "10.29.0.11261", + "manufacturer": "Intel(R) Corporation", + "infName": "oem24.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_A0C8\u0026LINKTYPE_06\u0026DEVTYPE_06\u0026VEN_8086\u0026DEV_AE50\u0026SUBSYS_22D117AA\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2024-06-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Audio Universal Service", + "driverVersion": "1.0.752.0", + "manufacturer": "Realtek", + "infName": "oem83.inf", + "hardwareId": "SWC\\VEN_10EC\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-04-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Hardware Support Application", + "driverVersion": "11.0.6000.328", + "manufacturer": "Realtek", + "infName": "oem26.inf", + "hardwareId": "SWC\\VEN_10EC\u0026HID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-04-16T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Audio Effects Component", + "driverVersion": "13.0.6000.1167", + "manufacturer": "Realtek", + "infName": "oem74.inf", + "hardwareId": "SWC\\VEN_10EC\u0026AID_0001", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2024-01-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia APO Control Service", + "driverVersion": "0.1.1.84", + "manufacturer": "Fortemedia", + "infName": "oem47.inf", + "hardwareId": "SWC\\VEN_1319\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2022-06-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia Audio Effects Component", + "driverVersion": "12.1.6003.5925", + "manufacturer": "Fortemedia", + "infName": "oem68.inf", + "hardwareId": "SWC\\VEN_1319\u0026AID_0002", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2024-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "DolbyAPO Software Device (HSA)", + "driverVersion": "3.30702.720.0", + "manufacturer": "Dolby", + "infName": "oem3.inf", + "hardwareId": "SWC\\VEN_DOLBY\u0026PID_DAX3HSA_DolbyAccess", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-01-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "DolbyAPO SWC Device", + "driverVersion": "3.30703.732.0", + "manufacturer": "Dolby", + "infName": "oem7.inf", + "hardwareId": "SWC\\VEN_DOLBY\u0026PID_DAX3APOSVC", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2024-08-14T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek High Definition Audio(SST)", + "driverVersion": "6.0.9673.1", + "manufacturer": "Microsoft", + "infName": "oem82.inf", + "hardwareId": "INTELAUDIO\\FUNC_01\u0026VEN_10EC\u0026DEV_0257\u0026SUBSYS_17AA22D1\u0026REV_1000", + "deviceClass": "MEDIA", + "driverDate": "2024-04-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology Detection Verification", + "driverVersion": "1.0.3504.2", + "manufacturer": "Intel(R) Corporation", + "infName": "oem84.inf", + "hardwareId": "{DD8E82AE-334B-49A2-AEAE-AEB0FD5C40DD}\\DetectionVerification", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-25T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology OED", + "driverVersion": "10.29.0.11261", + "manufacturer": "Intel(R) Corporation", + "infName": "oem60.inf", + "hardwareId": "INTELAUDIO\\DSP_CTLR_DEV_A0C8\u0026VEN_8086\u0026DEV_0222\u0026SUBSYS_22D117AA\u0026REV_0020", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology BUS", + "driverVersion": "10.29.0.11261", + "manufacturer": "Intel(R) Corporation", + "infName": "oem100.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0C8\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-08T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ETD HSA Device", + "driverVersion": "31.21.0.4", + "manufacturer": "ELAN", + "infName": "oem67.inf", + "hardwareId": "ETDHSA\\VID_04F3\u0026PID_0001", + "deviceClass": "HIDCLASS", + "driverDate": "2022-05-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ELAN TrackPoint Component", + "driverVersion": "31.21.0.2", + "manufacturer": "ELAN", + "infName": "oem51.inf", + "hardwareId": "SWC\\VID_ETD\u0026SID0008", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2022-05-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ELAN TrackPoint Device", + "driverVersion": "31.21.25.1", + "manufacturer": "ELAN", + "infName": "oem94.inf", + "hardwareId": "ACPI\\VEN_LEN\u0026DEV_0307", + "deviceClass": "MOUSE", + "driverDate": "2022-05-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard PS/2 Keyboard", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "ACPI\\VEN_LEN\u0026DEV_0071", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System speaker", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0800", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Watchdog Timer Driver (Intel(R) WDT)", + "driverVersion": "11.7.0.1000", + "manufacturer": "Intel", + "infName": "oem13.inf", + "hardwareId": "ACPI\\VEN_INT\u0026DEV_3F0D", + "deviceClass": "SYSTEM", + "driverDate": "2017-09-19T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0100", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Programmable interrupt controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0000", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High precision event timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0103", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo Intelligent Sensing", + "driverVersion": "2.3.8.0", + "manufacturer": "Lenovo", + "infName": "oem134.inf", + "hardwareId": "ACPI\\VEN_LEN\u0026DEV_0112", + "deviceClass": "SYSTEM", + "driverDate": "2026-03-17T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo Fn and function keys", + "driverVersion": "10.17.2603.3", + "manufacturer": "Lenovo", + "infName": "oem132.inf", + "hardwareId": "ACPI\\VEN_LEN\u0026DEV_0130", + "deviceClass": "SYSTEM", + "driverDate": "2026-03-17T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Tuning Generic Participant", + "driverVersion": "8.7.10700.22502", + "manufacturer": "Intel", + "infName": "oem96.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1043", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Tuning Generic Participant", + "driverVersion": "8.7.10700.22502", + "manufacturer": "Intel", + "infName": "oem96.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1043", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo Intelligent Thermal Solution", + "driverVersion": "2.1.52.20", + "manufacturer": "Lenovo", + "infName": "oem57.inf", + "hardwareId": "ACPI\\VEN_LEN\u0026DEV_0100", + "deviceClass": "SYSTEM", + "driverDate": "2025-02-25T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo Smart Standby", + "driverVersion": "4.3.13.0", + "manufacturer": "Lenovo", + "infName": "oem128.inf", + "hardwareId": "ACPI\\VEN_LEN\u0026DEV_0111", + "deviceClass": "SYSTEM", + "driverDate": "2025-11-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant Control Method Battery", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "cmbatt.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0A", + "deviceClass": "BATTERY", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft AC Adapter", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "cmbatt.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0003", + "deviceClass": "BATTERY", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo Power and Battery", + "driverVersion": "10.2.4.15", + "manufacturer": "Lenovo", + "infName": "oem131.inf", + "hardwareId": "SWC\\LenovoPowerMgr", + "deviceClass": "SYSTEM", + "driverDate": "2026-04-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo PM Device", + "driverVersion": "1.69.168.0", + "manufacturer": "Lenovo", + "infName": "oem135.inf", + "hardwareId": "ACPI\\VEN_LEN\u0026DEV_0268", + "deviceClass": "SYSTEM", + "driverDate": "2026-02-16T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant Embedded Controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C09", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) LPC Controller/eSPI Controller (U Premium) - A082", + "driverVersion": "10.1.24.6", + "manufacturer": "INTEL", + "infName": "oem91.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A082\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Wireless Manageability", + "driverVersion": "2543.98.178.0", + "manufacturer": "Intel", + "infName": "oem133.inf", + "hardwareId": "SWC\\B74B5286-A7A5-444D-973B-71A66AF711BE", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-10-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Management Engine WMI Provider", + "driverVersion": "2544.8.3.0", + "manufacturer": "Intel", + "infName": "oem99.inf", + "hardwareId": "SWC\\06657A6D-FE0F-4C90-8DDA-A1501C74CE4B", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-10-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Application Loader Host Interface", + "driverVersion": "1.46.2024.221", + "manufacturer": "Intel", + "infName": "oem44.inf", + "hardwareId": "SWC\\3C4852D6-D47B-4F46-B05E-B5EDC1AA440E", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Management Engine Interface #1", + "driverVersion": "2546.8.9.0", + "manufacturer": "Intel", + "infName": "oem50.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0E0\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2025-12-11T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO I2C Host Controller - A0E9", + "driverVersion": "30.100.2129.8", + "manufacturer": "Intel Corporation", + "infName": "oem105.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0E9\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_800E\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Input Configuration Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "mtconfig.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_800E\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant touch pad", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_800E\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant mouse", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "msmouse.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_800E\u0026Col01", + "deviceClass": "MOUSE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "I2C HID Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hidi2c.inf", + "hardwareId": "ACPI\\VEN_SYNA\u0026DEV_800E", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO I2C Host Controller - A0E8", + "driverVersion": "30.100.2129.8", + "manufacturer": "Intel Corporation", + "infName": "oem105.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0E8\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-13T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Wi-Fi 6 AX201 160MHz", + "driverVersion": "23.170.0.1", + "manufacturer": "Intel Corporation", + "infName": "oem58.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0F0\u0026SUBSYS_00708086\u0026REV_20", + "deviceClass": "NET", + "driverDate": "2025-09-09T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard RAM Controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0EF\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth LE Enumerator", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTH\\MS_BTHLE", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (Personal Area Network)", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "bthpan.inf", + "hardwareId": "BTH\\MS_BTHPAN", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Enumerator", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTH\\MS_BTHBRB", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (RFCOMM Protocol TDI)", + "driverVersion": "10.0.26100.8036", + "manufacturer": "Microsoft", + "infName": "tdibth.inf", + "hardwareId": "BTH\\MS_RFCOMM", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Wireless Bluetooth(R)", + "driverVersion": "23.120.0.4", + "manufacturer": "Intel Corporation", + "infName": "oem110.inf", + "hardwareId": "USB\\VID_8087\u0026PID_0026\u0026REV_0002", + "deviceClass": "BLUETOOTH", + "driverDate": "2025-10-02T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Integrated IR Camera", + "driverVersion": "5.0.18.169", + "manufacturer": "SunplusIT", + "infName": "oem89.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B71C\u0026REV_6507\u0026MI_02", + "deviceClass": "CAMERA", + "driverDate": "2022-10-11T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Integrated Camera", + "driverVersion": "5.0.18.169", + "manufacturer": "SunplusIT", + "infName": "oem69.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B71C\u0026REV_6507\u0026MI_00", + "deviceClass": "CAMERA", + "driverDate": "2022-10-11T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B71C\u0026REV_6507", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Synaptics UMDF Util App Component", + "driverVersion": "6.0.62.1136", + "manufacturer": "Synaptics Incorporated", + "infName": "oem53.inf", + "hardwareId": "SWC\\VID_06CB\u0026PID_00F9\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-09-22T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Synaptics UWP WBDI", + "driverVersion": "6.0.62.1136", + "manufacturer": "Synaptics Incorporated", + "infName": "oem98.inf", + "hardwareId": "USB\\VID_06CB\u0026PID_00F9\u0026REV_0000", + "deviceClass": "BIOMETRIC", + "driverDate": "2025-09-22T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30\u0026VID8086\u0026PIDA0ED\u0026REV0020", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A0ED\u0026SUBSYS_22D117AA\u0026REV_20", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Thunderbolt(TM) HSA Component", + "driverVersion": "1.41.1423.0", + "manufacturer": "Intel(R) Corporation", + "infName": "oem87.inf", + "hardwareId": "SWC\\PROVIDER_Intel\u0026\u0026COMPONENT_ThunderboltHSA", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-01-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Thunderbolt(TM) Controller - 9A1D", + "driverVersion": "1.41.1423.0", + "manufacturer": "Intel(R) Corporation", + "infName": "oem10.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A1D\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2024-01-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Thunderbolt(TM) HSA Component", + "driverVersion": "1.41.1423.0", + "manufacturer": "Intel(R) Corporation", + "infName": "oem87.inf", + "hardwareId": "SWC\\PROVIDER_Intel\u0026\u0026COMPONENT_ThunderboltHSA", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-01-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Thunderbolt(TM) Controller - 9A1B", + "driverVersion": "1.41.1423.0", + "manufacturer": "Intel(R) Corporation", + "infName": "oem10.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A1B\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2024-01-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30\u0026VID8086\u0026PID9A13\u0026REV0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A13\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) GNA Scoring Accelerator module", + "driverVersion": "3.0.0.1363", + "manufacturer": "Intel Corporation", + "infName": "oem121.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A11\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) TypeC PCIE - 9A27", + "driverVersion": "10.1.43.5", + "manufacturer": "INTEL", + "infName": "oem29.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A27\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) TypeC PCIE - 9A25", + "driverVersion": "10.1.43.5", + "manufacturer": "INTEL", + "infName": "oem29.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A25\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Disk drive", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard disk drives)", + "infName": "disk.inf", + "hardwareId": "SCSI\\DiskNVMe_____________________SKHynix_HFS512GDE9X081N41730C20", + "deviceClass": "DISKDRIVE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard NVM Express Controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Standard NVM Express Controller", + "infName": "stornvme.inf", + "hardwareId": "PCI\\VEN_1C5C\u0026DEV_174A\u0026SUBSYS_174A1C5C\u0026REV_00", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) PEG60 - 9A09", + "driverVersion": "10.1.43.5", + "manufacturer": "INTEL", + "infName": "oem29.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A09\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Tuning Processor Participant", + "driverVersion": "8.7.10700.22502", + "manufacturer": "Intel", + "infName": "oem73.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A03\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2021-07-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Wide viewing angle \u0026 High density FlexView Display 1920x1080", + "driverVersion": "6.14.29.0", + "manufacturer": "Lenovo", + "infName": "oem0.inf", + "hardwareId": "MONITOR\\LEN40A9", + "deviceClass": "MONITOR", + "driverDate": "2025-12-16T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Graphics Software", + "driverVersion": "32.0.101.7085", + "manufacturer": "Intel Corporation", + "infName": "oem140.inf", + "hardwareId": "SWC\\101.7085_VEN8086_IGS", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2026-03-03T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Graphics Control Panel", + "driverVersion": "32.0.101.7085", + "manufacturer": "Intel Corporation", + "infName": "oem138.inf", + "hardwareId": "SWC\\101.7085_VEN8086_GFXUI_App_Yangra", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2026-03-03T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Iris(R) Xe Graphics", + "driverVersion": "32.0.101.7085", + "manufacturer": "Intel Corporation", + "infName": "oem137.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A49\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "DISPLAY", + "driverDate": "2026-03-03T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Host Bridge/DRAM Registers - 9A14", + "driverVersion": "10.1.43.5", + "manufacturer": "INTEL", + "infName": "oem29.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_9A14\u0026SUBSYS_22D117AA\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Complex", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0A08", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant System", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "acpi.inf", + "hardwareId": "ACPI_HAL\\PNP0C08", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI x64-based PC", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard computers)", + "infName": "hal.inf", + "hardwareId": "acpiapic", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Charge Arbitration Driver", + "driverVersion": "10.0.26100.7920", + "manufacturer": "(Standard system devices)", + "infName": "ChargeArbitration.inf", + "hardwareId": "ROOT\\CAD", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Root Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "root\\umbus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Facial Recognition (Windows Hello) Software Device", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "helloface.inf", + "hardwareId": "Root\\WindowsHelloFaceSoftwareDriver", + "deviceClass": "BIOMETRIC", + "driverDate": "2018-01-06T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Kernel Debug Network Adapter", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "kdnic.inf", + "hardwareId": "root\\kdnic", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Storage Spaces Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "spaceport.inf", + "hardwareId": "Root\\Spaceport", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Virtual Drive Enumerator", + "driverVersion": "10.0.26100.1591", + "manufacturer": "Microsoft", + "infName": "vdrvroot.inf", + "hardwareId": "ROOT\\vdrvroot", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Composite Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "compositebus.inf", + "hardwareId": "ROOT\\CompositeBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtualization Infrastructure Driver", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "wvid.inf", + "hardwareId": "ROOT\\VID", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hypervisor Service", + "driverVersion": "10.0.26100.7309", + "manufacturer": "Microsoft", + "infName": "hvservice.inf", + "hardwareId": "ROOT\\hvservice", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Display Driver", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard display types)", + "infName": "basicdisplay.inf", + "hardwareId": "ROOT\\BasicDisplay", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume Manager", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "volmgr.inf", + "hardwareId": "ROOT\\VOLMGR", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + } + ], + "recentUpdateEvents": [] +} \ No newline at end of file diff --git a/PatchProbe.Server/scans/patchprobe_20260513_014129_SSIWKSAP01.json b/PatchProbe.Server/scans/patchprobe_20260513_014129_SSIWKSAP01.json new file mode 100644 index 0000000..a3e060b --- /dev/null +++ b/PatchProbe.Server/scans/patchprobe_20260513_014129_SSIWKSAP01.json @@ -0,0 +1,5236 @@ +{ + "collector": { + "schemaVersion": "0.1", + "collectorVersion": "1.0.0", + "collectedAt": "2026-05-13T01:41:29.4678138+00:00", + "machineName": "SSIWKSAP01", + "ranAsAdministrator": true + }, + "device": { + "hostname": "SSIWKSAP01", + "manufacturer": "HP", + "model": "HP ProBook 440 14 inch G10 Notebook PC", + "serialNumber": "5CD324K7KP", + "biosVersion": "V72 Ver. 01.10.00", + "biosDate": "20250826000000.000000\u002B000", + "tpmPresent": true, + "tpmVersion": "2.0, 0, 1.59", + "ramBytes": 51154059264, + "domain": "WORKGROUP", + "workgroup": "WORKGROUP", + "systemType": "x64-based PC" + }, + "os": { + "productName": "Windows 10 Pro", + "editionId": "Professional", + "displayVersion": "24H2", + "releaseId": "2009", + "buildNumber": "26100", + "ubr": 8246, + "architecture": "x64", + "installDate": "2025-01-29T18:55:42+00:00", + "lastBoot": "2026-05-11T02:51:13.6743895+00:00" + }, + "pendingReboot": { + "cbsRebootPending": false, + "windowsUpdateRebootRequired": false, + "sessionManagerRebootRequired": true, + "computerRenameRequired": false, + "anyPending": true + }, + "windowsUpdate": { + "applicableUpdates": [ + { + "updateId": "db5bac0b-a277-4d18-9bfd-6c9b08e3251c", + "title": "Windows Malicious Software Removal Tool x64 - v5.141 (KB890830)", + "kbArticleId": "KB890830", + "category": "EU Browser Choice Update-For Europe Only", + "rebootRequired": false, + "isDownloaded": false, + "description": "After the download, this tool runs one time to check your computer for infection by specific, prevalent malicious software (including Blaster, Sasser, and Mydoom) and helps remove any infection that is found. If an infection is found, the tool will display a status report the next time that you start your computer. A new version of the tool will be offered every month. If you want to manually run the tool on your computer, you can download a copy from the Microsoft Download Center, or you can run an online version from microsoft.com. This tool is not a replacement for an antivirus product. To help protect your computer, you should use an antivirus product.", + "supportUrl": "http://support.microsoft.com" + }, + { + "updateId": "5155ab52-4a8c-4334-93dd-13b491002d29", + "title": "Dell Inc. - Monitor - 3/17/2016 12:00:00 AM - 1.0.0.0", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Dell Inc. Monitor driver update released in March 2016", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "9729e564-d8cc-4596-a43a-098c53d0a6ce", + "title": "HP - Monitor - 1/28/2016 12:00:00 AM - 1.0.0.0", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Monitor driver update released in January 2016", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "54e54065-369b-44e6-a7bf-ecc5ca7cad61", + "title": "Hewlett-Packard - HIDClass - 5/3/2015 12:00:00 AM - 2.2.0.0", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Hewlett-Packard HIDClass driver update released in May 2015", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "b54df2a1-eb4c-4772-a487-33f593f3a086", + "title": "Intel Driver Update (1.46.2024.221)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel SoftwareComponent driver update released in April 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "ba61e8a6-c4f4-4a4c-91f8-ca216ba3359c", + "title": "Intel Driver Update (2543.98.178.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel SoftwareComponent driver update released in October 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "888898a5-b786-4602-81a7-221ba90a746a", + "title": "Intel Driver Update (2543.98.178.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel Extension driver update released in October 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "70a71f00-5606-4092-a601-21a579742063", + "title": "Intel Driver Update (2544.8.3.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel SoftwareComponent driver update released in October 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "06a96316-fad0-4b8f-8be0-85232cc35f6f", + "title": "Intel Driver Update (2546.8.9.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel System driver update released in November 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "d5dc9c3b-7c30-4e24-bba1-8d7bd031e4ce", + "title": "HP Driver Update (1.11.0.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Firmware driver update released in November 2025", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "905d030d-423b-4027-8522-15bb16bd8f2d", + "title": "HP Inc. SoftwareDevice Driver Update (1.1.9.3)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Inc. SoftwareDevice driver update released in February 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "18054130-0ea4-4162-8693-f150126042b2", + "title": "Intel Corporation Display Driver Update (32.0.101.7084)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "Intel Corporation Display driver update released in January 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "02a0475e-4750-47a4-93c3-5482395bcab4", + "title": "HP Inc. SoftwareComponent Driver Update (4.8.130.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Inc. SoftwareComponent driver update released in February 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "56069c93-26a4-4633-967e-dcb38599130e", + "title": "HP Inc. Extension Driver Update (4.8.130.0)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Inc. Extension driver update released in February 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "d5f8f113-2904-4559-8b84-4d8d8e762b9f", + "title": "HP Development Company, L.P. SoftwareComponent Driver Update (8.10.52.464)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Development Company, L.P. SoftwareComponent driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "45a47ba8-4149-4f70-917d-f950b120baf2", + "title": "HP Development Company, L.P. Extension Driver Update (8.10.52.464)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Development Company, L.P. Extension driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "260afb82-5c51-4288-ade6-b0638fe6beb4", + "title": "HP Development Company, L.P. Keyboard Driver Update (8.10.52.464)", + "kbArticleId": "", + "category": "Drivers", + "rebootRequired": false, + "isDownloaded": false, + "description": "HP Development Company, L.P. Keyboard driver update released in March 2026", + "supportUrl": "http://support.microsoft.com/select/?target=hub" + }, + { + "updateId": "a02f8aca-f115-4bd0-9acd-c965a3bc45c0", + "title": "2026-05 .NET Framework Security Update (KB5087054)", + "kbArticleId": "KB5087054", + "category": "Security Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "A security issue has been identified in a Microsoft software product that could affect your system. You can help protect your system by installing this update from Microsoft. For a complete listing of the issues that are included in this update, see the associated Microsoft Knowledge Base article. After you install this update, you may have to restart your system.", + "supportUrl": "https://support.microsoft.com/help/5087054" + }, + { + "updateId": "4a655fd6-8c4c-4e56-8933-c20d1fa1e4ad", + "title": "2026-05 Security Update (Hotpatch capable) (KB5089466) (26100.8390)", + "kbArticleId": "KB5089466", + "category": "Security Updates", + "rebootRequired": false, + "isDownloaded": false, + "description": "Install this update to resolve issues in Windows. For a complete listing of the issues that are included in this update, see the associated Microsoft Knowledge Base article for more information. After you install this item, you may have to restart your computer.", + "supportUrl": "https://support.microsoft.com/help/5089466" + } + ], + "history": [ + { + "updateId": "74a9f237-51d4-481e-8687-667a69050ec9", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T21:22:41+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "36a13d04-9b3f-498e-b582-66fdd6b27347", + "title": "9NKRJ3SJ9SDG-Microsoft.WindowsAppRuntime.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T21:22:41+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-12T09:56:14+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-09T11:57:12+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-07T06:10:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-03T23:55:24+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-05-03T23:54:55+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-30T06:06:32+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-28T07:20:30+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-26T14:20:07+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-26T04:20:15+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c8ec6d93-f0b0-4cbd-989d-b0baca46c153", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-22T06:07:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9e2c6899-6788-4125-95e1-4edcc6f3d984", + "title": "2026-04 Security Update (KB5083769) (26100.8246)", + "kbArticleId": "KB5083769", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-16T06:07:28+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "298a5813-4338-4cd2-aaca-91a7deeee296", + "title": "2026-04 .NET Framework Security Update (KB5082420)", + "kbArticleId": "KB5082420", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-16T06:07:28+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9e2c6899-6788-4125-95e1-4edcc6f3d984", + "title": "2026-04 Security Update (KB5083769) (26100.8246)", + "kbArticleId": "KB5083769", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:55:23+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "298a5813-4338-4cd2-aaca-91a7deeee296", + "title": "2026-04 .NET Framework Security Update (KB5082420)", + "kbArticleId": "KB5082420", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:55:23+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e20ecd7e-9517-4f2d-9530-5cd83d0c1e9f", + "title": "Windows Malicious Software Removal Tool x64 - v5.140 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-15T06:28:25+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a32ca1d0-ddd4-486b-b708-d941db4f1101", + "title": "Update for Windows Security platform - KB5007651 (Version 10.0.29554.1001)", + "kbArticleId": "KB5007651", + "resultCode": 2, + "hResult": 0, + "date": "2026-04-09T00:21:40+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "33a087bf-502f-4779-9001-f06e1daeb1d1", + "title": "2026-03 Security Update (KB5079473) (26100.8037)", + "kbArticleId": "KB5079473", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:45:23+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "26d9c673-f53b-48ea-a6c4-a8daced69465", + "title": "Intel Corporation Extension Driver Update (32.0.101.7084)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:39:11+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a65b3ce9-0aa7-4774-9afc-523a4fd1a242", + "title": "Fortemedia Driver Update (12.1.6003.6025)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:38:31+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a0dbe10c-7712-4ce8-a75a-580a0cfb7b17", + "title": "Realtek Driver Update (1.0.917.7)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:38:01+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "94ca2a46-cac0-45fa-a6ec-c575c02e70e6", + "title": "Fortemedia Driver Update (0.1.1.143)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:37:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "81f747c7-4ea4-4879-912a-cd575a548662", + "title": "Intel(R) Corporation Driver Update (10.29.0.12389)", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145091577, + "date": "2026-03-13T07:37:32+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "528137d5-b852-426e-a76f-c41a5c636d19", + "title": "Intel(R) Corporation Driver Update (10.29.0.12389)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:37:29+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b2693a34-e667-49be-b37f-c1782232dbac", + "title": "Intel(R) Corporation Driver Update (10.29.0.12389)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:36:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "8985e7df-9253-405e-99b7-4dae21e3b7d7", + "title": "Intel(R) Corporation Driver Update (10.29.0.12389)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:35:55+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c3645eec-f98e-4ee2-a378-46ab8b75b0ea", + "title": "Realtek Driver Update (1168.27.919.2025)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:35:34+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "bce92d75-b1e6-47a8-9e1c-185a1edc9d18", + "title": "Realtek Driver Update (1153.21.1009.2025)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:35:00+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b488ff5d-0ee8-43aa-b532-de79f9e2e042", + "title": "Realtek - Extension - 10.44.0.2", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-13T07:34:50+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a26d2c8a-940f-4b35-9f04-bb1bdbf2726c", + "title": "9PLJQ12FQ3CV-MicrosoftCorporationII.WinAppRuntime.Main.1.8", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-12T06:07:17+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "33a087bf-502f-4779-9001-f06e1daeb1d1", + "title": "2026-03 Security Update (KB5079473) (26100.8037)", + "kbArticleId": "KB5079473", + "resultCode": 2, + "hResult": 0, + "date": "2026-03-11T06:59:09+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a32ca1d0-ddd4-486b-b708-d941db4f1081", + "title": "Update for Windows Security platform - KB5007651 (Version 10.0.29510.1001)", + "kbArticleId": "KB5007651", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-18T06:08:04+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "1359f014-ea2c-4c85-963f-77e6a6744fc0", + "title": "2026-02 Security Update (KB5077181) (26100.7840)", + "kbArticleId": "KB5077181", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-11T06:55:05+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "fdde99e0-d805-4c36-987b-4d90c2dc913f", + "title": "Windows Malicious Software Removal Tool x64 - v5.139 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-11T06:29:49+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e94b217d-b224-4bab-8376-c01d6f18ddfe", + "title": "Fortemedia Driver Update (1.0.3.388)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:37:05+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e66f65f6-11c3-425e-b645-3fe3ba7acc66", + "title": "Fortemedia Driver Update (9.21.3229.203)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:36:02+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "30c65367-35fe-468e-9d9b-6681c1f533d6", + "title": "HP Development Company, L.P. Driver Update (8.10.50.393)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:35:37+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "8567ef3a-d0dd-467e-b97b-ed6d22a55042", + "title": "HP Development Company, L.P. Driver Update (8.10.50.393)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:35:13+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "f2c543c2-35da-462d-8c26-34ca59e143c1", + "title": "HP Development Company, L.P. Driver Update (8.10.50.393)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:35:05+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0f16041e-91ac-4b7a-9b15-3c70ca0261fc", + "title": "Realtek Semiconductor Corp. Driver Update (6.0.9909.1)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:34:52+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e8ebe499-4488-40e3-bb78-8a638fab9771", + "title": "Intel Driver Update (2522.8.2.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:33:53+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "430f1d99-db58-4f4f-ae2b-b3cb86020ff4", + "title": "Intel(R) Corporation Driver Update (10.29.0.12389)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:33:35+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "85a30f45-fbb5-45d1-8266-7494288f4228", + "title": "Realtek Semiconductor Corp. Driver Update (6.0.9909.1)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:32:53+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "06b5d0e7-7fc0-4399-96a6-189cd43fd408", + "title": "Realtek Semiconductor Corp. Driver Update (6.0.9909.1)", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145116149, + "date": "2026-02-02T08:29:11+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e8ebe499-4488-40e3-bb78-8a638fab9771", + "title": "Intel Driver Update (2522.8.2.0)", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145124300, + "date": "2026-02-02T08:28:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "430f1d99-db58-4f4f-ae2b-b3cb86020ff4", + "title": "Intel(R) Corporation Driver Update (10.29.0.12389)", + "kbArticleId": "", + "resultCode": 4, + "hResult": -2145124300, + "date": "2026-02-02T08:28:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "3dc01463-2cd8-406f-bb65-640f7b8ec565", + "title": "Realtek Driver Update (13.0.6000.1905)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:28:41+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "d19da226-71f7-44e3-a618-cd954074b108", + "title": "Intel Driver Update (2536.98.121.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:28:37+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b844ba30-a790-41b6-81b9-06e5acba4de8", + "title": "Intel Driver Update (2540.8.7.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:28:32+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e36668ee-474a-4e31-9f13-1ef8b9feb106", + "title": "Intel(R) Corporation Driver Update (1.0.4028.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:28:22+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "fd82fd57-eb82-4c16-8c5a-11dd201b1ede", + "title": "Intel Driver Update (2536.98.121.0)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-02-02T08:28:13+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "59a9f942-9f10-4b2a-a550-e2a054ea1bf3", + "title": "Update for Windows (KB5077744)", + "kbArticleId": "KB5077744", + "resultCode": 2, + "hResult": 0, + "date": "2026-01-22T06:42:51+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "da43e867-2338-4bcd-b40f-f0f948e0fa23", + "title": "2026-01 Security Update (KB5074109) (26100.7623)", + "kbArticleId": "KB5074109", + "resultCode": 2, + "hResult": 0, + "date": "2026-01-14T06:46:19+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "7f60f522-36c3-4f9b-bf00-467445a559ec", + "title": "9WZDNCRD29V9-MICROSOFT.MICROSOFTOFFICEHUB", + "kbArticleId": "", + "resultCode": 5, + "hResult": -2145124341, + "date": "2026-01-10T06:20:02+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9ec2222a-aad4-4c1a-bef5-c5fe7c137753", + "title": "Apple, Inc. - USBDevice - 538.0.0.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 2359302, + "date": "2026-01-02T07:57:10+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9ec2222a-aad4-4c1a-bef5-c5fe7c137753", + "title": "Apple, Inc. - USBDevice - 538.0.0.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2026-01-02T00:39:57+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "09f798ff-a44e-4553-a27c-37cf9b074350", + "title": "2025-12 Security Update (KB5072033) (26100.7462)", + "kbArticleId": "KB5072033", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:59:17+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "c84f8c6d-c663-411e-91a1-94ae0d16116a", + "title": "Intel Corporation Driver Update (32.0.101.7077)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:18:25+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "566b8a8b-6ca1-42b4-ac04-6e14a5c41af4", + "title": "Intel Corporation Driver Update (32.0.101.7077)", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:17:38+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e42eb52f-9f53-45fb-8562-c8e05b7d0033", + "title": "HP Inc. - SoftwareDevice - 1.1.8.64", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:14:19+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9f74b80c-b217-4dbb-8599-4ca92e239a0b", + "title": "HP Inc. - SoftwareComponent - 4.8.125.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:14:08+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "85c9bd35-43af-46b8-837e-0356b4ab7d0d", + "title": "Realtek - Net - 1153.19.602.2025", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:13:43+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a1a59e99-e965-4c2f-966d-35f7405b372d", + "title": "HP Inc. - SoftwareComponent - 4.2.2494.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:13:01+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "17af83ee-0b19-4d2a-a758-d8c57c99825d", + "title": "HP Inc. - SoftwareComponent - 1.83.4311.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:12:30+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "3c3ce861-a886-464d-9578-bc2cd319dd05", + "title": "HP Development Company, L.P. - Extension - 8.10.29.1", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:12:04+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "4a2bf2ce-ccd2-4bf3-8aaa-826873cc7f9f", + "title": "HP Development Company, L.P. - SoftwareComponent - 8.10.29.1", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:11:54+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "cc41ab05-d8ce-4680-9f90-33cbb11319b5", + "title": "HP Development Company, L.P. - Keyboard - 11.1.9.1", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:11:39+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "710fea30-e65b-46ce-b32c-098f8cad652e", + "title": "Fortemedia - Extension - 1.0.3.376", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:11:28+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "2db7b231-ced0-4cb4-bcfe-cbee0bd6aa88", + "title": "HP - Firmware - 1.10.0.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:10:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "2690d518-1c5d-44db-83ec-de55d12c44e9", + "title": "Intel - net - 23.160.0.4", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:10:35+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "910b3f3a-0405-4273-8a4a-2acaf7211536", + "title": "Intel Corporation - Bluetooth - 23.160.0.9", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:10:13+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9ba69000-b60b-4aae-96bb-a5506eb6ccfe", + "title": "Windows Malicious Software Removal Tool x64 - v5.138 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:09:52+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "30031714-864b-4db0-a6d0-ceb72b5d8977", + "title": "Realtek Semiconductor Corp. - MEDIA - 6.0.9844.1", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:00:53+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "7e212de8-6b32-459b-af0d-1540c559ebaa", + "title": "Realtek - SoftwareComponent - 12.0.6000.364", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T08:00:08+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "cb9f233a-51d3-4ee9-967c-c774a953fd4d", + "title": "Realtek - SoftwareComponent - 1.0.858.7", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:59:58+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "cb283e96-e1fe-41cf-9455-e3d44d54f3a4", + "title": "Realtek - AudioProcessingObject - 13.0.6000.1645", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:59:45+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "20e2af6b-ac23-4421-84a7-96d975ec1f87", + "title": "Sonitude, Corp. - AudioProcessingObject - 2.1.1.99", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:59:33+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b1358052-7e4d-4a84-8644-9d8a85516aa5", + "title": "Intel(R) Corporation - MEDIA - 10.29.0.12108", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:59:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "406396ee-7661-4399-a680-e318126ec74e", + "title": "Intel(R) Corporation - MEDIA - 10.29.0.12108", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:58:56+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "6d4ac35a-085a-4da7-8085-c7e662fb4042", + "title": "Intel(R) Corporation - MEDIA - 10.29.0.12108", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:58:11+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "56061a21-2efd-414a-9a4c-b2edc93b98a6", + "title": "Intel - SoftwareComponent - 2512.7.1.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:57:34+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "6ff8f653-a9bb-47ce-b012-a25a89b97166", + "title": "Intel - System - 2512.7.3.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:57:21+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "f8ab66bf-644b-419a-97ce-ecb80badcad4", + "title": "Fortemedia - AudioProcessingObject - 12.1.6003.6024", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:57:10+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "9ed7ab87-28b5-4b7e-8308-7dfca5517dfa", + "title": "Intel - SoftwareComponent - 255.91.103.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:56:42+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "035dde10-386f-411c-8121-6a99d6d929a9", + "title": "HP Inc. - Extension - 4.8.125.0", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-12-29T07:56:25+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0f972faf-ea97-4b05-8ee1-48d0ec7234bb", + "title": "2025-11 Security Update (KB5068861) (26100.7171)", + "kbArticleId": "KB5068861", + "resultCode": 2, + "hResult": 0, + "date": "2025-11-12T07:18:12+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "979e9eff-3b91-4da9-8404-1546ccb2340b", + "title": "Windows Malicious Software Removal Tool x64 - v5.137 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2025-11-12T06:41:30+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "0649b29d-c7c9-4291-8dc6-1d7268e04285", + "title": "Update for Windows (KB5070773)", + "kbArticleId": "KB5070773", + "resultCode": 2, + "hResult": 0, + "date": "2025-10-29T06:38:56+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b3d35ff7-2068-4d16-942b-6fd9012f0c9c", + "title": "2025-10 Cumulative Update for .NET Framework 3.5 and 4.8.1 for Windows 11, version 24H2 for x64 (KB5066131)", + "kbArticleId": "KB5066131", + "resultCode": 2, + "hResult": 0, + "date": "2025-10-16T06:10:26+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "e03cdf82-dce7-4c0d-b4d7-6b0d6f5315c2", + "title": "2025-10 Cumulative Update for Windows 11 Version 24H2 for x64-based Systems (KB5066835) (26100.6899)", + "kbArticleId": "KB5066835", + "resultCode": 2, + "hResult": 0, + "date": "2025-10-15T07:09:38+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "b3d35ff7-2068-4d16-942b-6fd9012f0c9c", + "title": "2025-10 Cumulative Update for .NET Framework 3.5 and 4.8.1 for Windows 11, version 24H2 for x64 (KB5066131)", + "kbArticleId": "KB5066131", + "resultCode": 2, + "hResult": 0, + "date": "2025-10-15T07:09:38+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "a32ca1d0-ddd4-486b-b708-d941db4f1061", + "title": "Update for Windows Security platform - KB5007651 (Version 10.0.29429.1000)", + "kbArticleId": "KB5007651", + "resultCode": 2, + "hResult": 0, + "date": "2025-10-15T06:40:15+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "519e067f-15c5-4ce2-bdec-5696a13d50ab", + "title": "Windows Malicious Software Removal Tool x64 - v5.136 (KB890830)", + "kbArticleId": "KB890830", + "resultCode": 2, + "hResult": 0, + "date": "2025-10-15T06:40:11+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "11ba7d1d-16b5-48ad-b146-3e905a259e03", + "title": "2025-09 Cumulative Update for .NET Framework 3.5 and 4.8.1 for Windows 11, version 24H2 for x64 (KB5064401)", + "kbArticleId": "KB5064401", + "resultCode": 2, + "hResult": 0, + "date": "2025-09-11T06:11:10+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "8bedaf85-f5f4-4c35-88cc-7fbca917c886", + "title": "2025-09 Cumulative Update for Windows 11 Version 24H2 for x64-based Systems (KB5065426) (26100.6584)", + "kbArticleId": "KB5065426", + "resultCode": 2, + "hResult": 0, + "date": "2025-09-10T07:09:34+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "11ba7d1d-16b5-48ad-b146-3e905a259e03", + "title": "2025-09 Cumulative Update for .NET Framework 3.5 and 4.8.1 for Windows 11, version 24H2 for x64 (KB5064401)", + "kbArticleId": "KB5064401", + "resultCode": 2, + "hResult": 0, + "date": "2025-09-10T07:09:34+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "5f527f42-5d0d-4eeb-a16e-e98437ee8e32", + "title": "Fortemedia - Extension - 1.0.3.363", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-08-22T06:01:34+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "42a2bc02-ed41-4a12-91f7-c9250747de74", + "title": "Realtek Semiconductor Corp. - Extension - 6.0.9844.1", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-08-22T06:00:57+00:00", + "operation": "Installation", + "serverSelection": "Others" + }, + { + "updateId": "d2c82d83-4bb9-4427-b7d0-1cdd6e580f86", + "title": "Realtek Semiconductor Corp. - Extension - 6.0.9844.1", + "kbArticleId": "", + "resultCode": 2, + "hResult": 0, + "date": "2025-08-22T06:00:48+00:00", + "operation": "Installation", + "serverSelection": "Others" + } + ], + "policy": { + "wsusConfigured": false, + "wufbConfigured": false, + "deferFeatureUpdatesDays": 0, + "autoUpdateEnabled": false, + "auOptions": 1, + "targetGroupEnabled": false + } + }, + "installedHotfixes": [ + { + "hotFixId": "KB5082420", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5048779", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5050575", + "description": "Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5083769", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + }, + { + "hotFixId": "KB5088467", + "description": "Security Update", + "installedBy": "NT AUTHORITY\\SYSTEM" + } + ], + "cbsPackages": [ + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8039", + "state": "| Superseded | Language Pack", + "releaseType": "| 26/03/2026 12:25 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Superseded | Language Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | OnDemand Pack", + "state": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | OnDemand Pack", + "state": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 1/04/2024 8:01 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-CompDB-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 1/04/2024 8:01 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Superseded | Feature Pack", + "state": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7171 | Superseded | Feature Pack", + "state": "| 14/11/2025 8:33 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7462 | Superseded | Feature Pack", + "state": "| 29/12/2025 5:44 PM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7623 | Superseded | Feature Pack", + "state": "| 15/01/2026 3:09 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7627 | Superseded | Feature Pack", + "state": "| 23/01/2026 8:44 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.7824 | Superseded | Feature Pack", + "state": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | Feature Pack", + "state": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | Feature Pack", + "state": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-FodMetadataServicing-Desktop-Metadata-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| Feature Pack", + "releaseType": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Installed", + "releaseType": "| Foundation", + "installTime": "| 1/04/2024 7:29 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~en-US~11.0.26100.7824", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~11.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Language Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8037", + "state": "| Superseded | Language Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| Language Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| Feature Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Licenses-Professional-Package~31bf3856ad364e35~amd64~~10.0.26100.8037", + "state": "| Installed", + "releaseType": "| Feature Pack", + "installTime": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:04 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Notepad-System-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:35 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:04 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7920", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:04 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-SenseClient-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.7824", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/02/2026 8:42 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.8117", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~en-US~10.0.26100.1", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 1/04/2024 8:03 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-VBSCRIPT-FoD-Package~31bf3856ad364e35~wow64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | OnDemand Pack", + "state": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | OnDemand Pack", + "state": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742 | Staged", + "state": "| OnDemand Pack", + "releaseType": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036 | Superseded | OnDemand Pack", + "state": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117 | Superseded | OnDemand Pack", + "state": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246 | Installed", + "state": "| OnDemand Pack", + "releaseType": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.1742", + "state": "| Staged", + "releaseType": "| OnDemand Pack", + "installTime": "| 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.8036", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 13/03/2026 8:36 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.8117", + "state": "| Superseded | OnDemand Pack", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "OpenSSH-Client-Package~31bf3856ad364e35~amd64~~10.0.26100.8246", + "state": "| Installed", + "releaseType": "| OnDemand Pack", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9277.2", + "state": "| Superseded | Update", + "releaseType": "| 4/10/2024 11:59 PM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9320.2", + "state": "| Superseded | Update", + "releaseType": "| 17/10/2025 8:34 AM" + }, + { + "packageIdentity": "Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9332.4", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Package_for_KB5048779~31bf3856ad364e35~amd64~~26100.2448.1.2", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 29/01/2025 2:58 AM" + }, + { + "packageIdentity": "Package_for_KB5050575~31bf3856ad364e35~amd64~~26100.1588.1.0", + "state": "| Installed", + "releaseType": "| Update", + "installTime": "| 29/01/2025 2:57 AM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10", + "state": "| Staged", + "releaseType": "| Security Update | 5/10/2024 12:12 AM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8039.1.0", + "state": "| Superseded | Update", + "releaseType": "| 26/03/2026 12:25 AM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8117.1.4", + "state": "| Superseded | Update", + "releaseType": "| 10/04/2026 8:34 AM" + }, + { + "packageIdentity": "Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.8246.1.23", + "state": "| Installed", + "releaseType": "| Security Update | 17/04/2026 8:32 AM" + }, + { + "packageIdentity": "Package_for_ServicingStack_8247~31bf3856ad364e35~amd64~~26100.8247.1.5", + "state": "| Installed", + "releaseType": "| Security Update | 15/04/2026 6:42 AM" + } + ], + "drivers": [ + { + "deviceName": "WAN Miniport (Network Monitor)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanbh", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IPv6)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanipv6", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_ndiswanip", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (PPPOE)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_pppoeminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (PPTP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_pptpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (L2TP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netrasa.inf", + "hardwareId": "ms_l2tpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (IKEv2)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netavpna.inf", + "hardwareId": "ms_agilevpnminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "WAN Miniport (SSTP)", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "netsstpa.inf", + "hardwareId": "ms_sstpminiport", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{c1f56d94-a46f-492e-a129-7f54d1ee2356}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{3ee39114-30b4-45a4-a109-19d4a40fcc22}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\{084f01fa-e634-4d77-83ee-074817c03581}", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Canon", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\canonir-adv_c3520_ufb1c3", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Local Print Queue", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "printqueue.inf", + "hardwareId": "PRINTENUM\\LocalPrintQueue", + "deviceClass": "PRINTQUEUE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "NgcDeviceEnum\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "hardwareId": "ScDeviceInformationNode\\node", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic software device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "c_swdevice.inf", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Computer Device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "compdev.inf", + "hardwareId": "COMPUTER\\{478F9C33-8112-5EC1-94ED-4BEB9A2F0C0F}", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Remote Desktop Device Redirector Bus", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "rdpbus.inf", + "hardwareId": "ROOT\\RDPBUS", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Streaming Service Proxy", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ksfilter.inf", + "hardwareId": "SW\\{96E080C7-143C-11D1-B40F-00A0C9223196}", + "deviceClass": "MEDIA", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Plug and Play Software Device Enumerator", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard system devices)", + "infName": "swenum.inf", + "hardwareId": "ROOT\\SWENUM", + "deviceClass": "SYSTEM", + "driverDate": "2025-05-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft System Management BIOS Driver", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard system devices)", + "infName": "mssmbios.inf", + "hardwareId": "ROOT\\mssmbios", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "NDIS Virtual Network Adapter Enumerator", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "ndisvirtualbus.inf", + "hardwareId": "ROOT\\NdisVirtualBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "VMware VMCI Host Device", + "driverVersion": "9.8.29.0", + "manufacturer": "Broadcom Inc.", + "infName": "oem98.inf", + "hardwareId": "ROOT\\VMWVMCIHOSTDEV", + "deviceClass": "SYSTEM", + "driverDate": "2025-01-17T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Render Driver", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "basicrender.inf", + "hardwareId": "ROOT\\BasicRender", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{c7865010-71ac-4bdb-93d2-7fa2e5676a32}\u0026REV_414", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{bae9716c-e96d-6083-96e2-a86da2ac80f6}\u0026REV_18160000", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Device Firmware", + "driverVersion": "10.0.26100.4768", + "manufacturer": "Microsoft", + "infName": "c_firmware.inf", + "hardwareId": "UEFI\\RES_{a0c65e09-4170-48e6-a0e5-b4900666d4b8}\u0026REV_162C0000", + "deviceClass": "FIRMWARE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP V72 System Firmware", + "driverVersion": "1.10.0.0", + "manufacturer": "HP", + "infName": "oem177.inf", + "hardwareId": "UEFI\\RES_{1c38977c-10a6-49e2-8bab-54bda7f97211}\u0026REV_10A0000", + "deviceClass": "FIRMWARE", + "driverDate": "2025-08-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft UEFI-Compliant System", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "uefi.inf", + "hardwareId": "ACPI_HAL\\UEFI", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Fixed Feature Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\FixedButton", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP SFU Device", + "driverVersion": "1.1.8.64", + "manufacturer": "HP Inc.", + "infName": "oem186.inf", + "hardwareId": "ACPI\\VEN_HPIC\u0026DEV_0015", + "deviceClass": "SOFTWAREDEVICE", + "driverDate": "2025-08-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Insights Analytics", + "driverVersion": "4.2.2494.0", + "manufacturer": "HP", + "infName": "oem183.inf", + "hardwareId": "SWC\\HPA000C", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2021-04-30T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Services Scan", + "driverVersion": "4.8.125.0", + "manufacturer": "HP", + "infName": "oem185.inf", + "hardwareId": "SWC\\HPTPSH000C", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-09-30T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Application Driver Component", + "driverVersion": "1.83.4311.0", + "manufacturer": "HP", + "infName": "oem182.inf", + "hardwareId": "SWC\\HPIC000C", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-12-09T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Application Driver", + "driverVersion": "1.66.3710.0", + "manufacturer": "HP", + "infName": "oem48.inf", + "hardwareId": "ACPI\\VEN_HPIC\u0026DEV_000C", + "deviceClass": "SYSTEM", + "driverDate": "2024-03-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Fan", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0B", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Power Engine Plug-in", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel Corporation", + "infName": "intelpep.inf", + "hardwareId": "ACPI\\VEN_INT\u0026DEV_33A1", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Manager", + "driverVersion": "2.2.10002.4", + "manufacturer": "Intel", + "infName": "oem133.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_10A0", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Trusted Platform Module 2.0", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard)", + "infName": "tpm.inf", + "hardwareId": "ACPI\\VEN_NTC\u0026DEV_0702", + "deviceClass": "SECURITYDEVICES", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\ConvertedDevice\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\ConvertedDevice\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\ConvertedDevice\u0026Col01", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Converted Portable Device Control device", + "driverVersion": "10.0.26100.4484", + "manufacturer": "Microsoft", + "infName": "buttonconverter.inf", + "hardwareId": "ButtonConverter\\ConvertedDevice", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Portable Device Control device", + "driverVersion": "10.0.26100.4484", + "manufacturer": "Microsoft", + "infName": "buttonconverter.inf", + "hardwareId": "HID\\INTC816\u0026Col0B", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col0A", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col09", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col08", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col07", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col06", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col05", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\INTC816\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\INTC816\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant wireless radio controls", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\INTC816\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\INTC816\u0026Col01", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) HID Event Filter", + "driverVersion": "2.2.2.10", + "manufacturer": "Intel(R) Corporation", + "infName": "oem139.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1078", + "deviceClass": "HIDCLASS", + "driverDate": "2024-04-25T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UCM-UCSI ACPI Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "Microsoft", + "infName": "ucmucsiacpiclient.inf", + "hardwareId": "ACPI\\VEN_USB\u0026DEV_C000", + "deviceClass": "UCM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Thermal Zone", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\ThermalZone", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Processor Aggregator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "acpipagr.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_000C", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Processor", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Intel", + "infName": "cpu.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0007", + "deviceClass": "PROCESSOR", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO GPIO Host Controller - INTC1055", + "driverVersion": "30.100.2417.30", + "manufacturer": "Intel Corporation", + "infName": "oem132.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_1055", + "deviceClass": "SYSTEM", + "driverDate": "2024-04-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Wake Alarm", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "acpitime.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_000E", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Lid", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0D", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI Sleep Button", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0E", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft AC Adapter", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "cmbatt.inf", + "hardwareId": "ACPI\\VEN_ACPI\u0026DEV_0003", + "deviceClass": "BATTERY", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant Control Method Battery", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "cmbatt.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C0A", + "deviceClass": "BATTERY", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) SPI (flash) Controller - 51A4", + "driverVersion": "10.1.36.7", + "manufacturer": "INTEL", + "infName": "oem1.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51A4\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) SMBus - 51A3", + "driverVersion": "10.1.36.7", + "manufacturer": "INTEL", + "infName": "oem1.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51A3\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia APO Control Service", + "driverVersion": "0.1.1.143", + "manufacturer": "Fortemedia", + "infName": "oem224.inf", + "hardwareId": "SWC\\VEN_1319\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-08-10T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia Audio Effects Component", + "driverVersion": "12.1.6003.6025", + "manufacturer": "Fortemedia", + "infName": "oem226.inf", + "hardwareId": "SWC\\VEN_1319\u0026AID_0002", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-08-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for Digital Microphones", + "driverVersion": "10.29.0.12389", + "manufacturer": "Intel(R) Corporation", + "infName": "oem217.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_51CA\u0026LINKTYPE_02\u0026DEVTYPE_00\u0026VEN_8086\u0026DEV_AE20\u0026SUBSYS_8B78103C\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2025-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for Bluetooth\u00AE Audio", + "driverVersion": "10.29.0.12389", + "manufacturer": "Intel(R) Corporation", + "infName": "oem205.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_51CA\u0026LINKTYPE_03\u0026DEVTYPE_00\u0026VEN_8086\u0026DEV_AE30\u0026SUBSYS_8B78103C\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2025-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology for USB Audio", + "driverVersion": "10.29.0.12389", + "manufacturer": "Intel(R) Corporation", + "infName": "oem216.inf", + "hardwareId": "INTELAUDIO\\CTLR_DEV_51CA\u0026LINKTYPE_06\u0026DEVTYPE_06\u0026VEN_8086\u0026DEV_AE50\u0026SUBSYS_8B78103C\u0026REV_0001", + "deviceClass": "MEDIA", + "driverDate": "2025-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Sonitude Audio Effects Component", + "driverVersion": "2.1.1.99", + "manufacturer": "Microsoft", + "infName": "oem170.inf", + "hardwareId": "SWC\\VEN_0A2E\u0026AID_0008", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-08-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Audio Universal Service", + "driverVersion": "1.0.917.7", + "manufacturer": "Realtek", + "infName": "oem225.inf", + "hardwareId": "SWC\\VEN_10EC\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-04-11T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek Audio Effects Component", + "driverVersion": "13.0.6000.1905", + "manufacturer": "Realtek", + "infName": "oem202.inf", + "hardwareId": "SWC\\VEN_10EC\u0026AID_0001", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-10-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP Audio Hardware Support Application", + "driverVersion": "12.0.6000.364", + "manufacturer": "Realtek", + "infName": "oem173.inf", + "hardwareId": "SWC\\VEN_10EC\u0026HID_0002", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-05-27T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Sonitude Audio Effects Component", + "driverVersion": "2.1.1.99", + "manufacturer": "Microsoft", + "infName": "oem170.inf", + "hardwareId": "SWC\\VEN_0A2E\u0026AID_0008", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-08-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia APO Control Service", + "driverVersion": "0.1.1.143", + "manufacturer": "Fortemedia", + "infName": "oem224.inf", + "hardwareId": "SWC\\VEN_1319\u0026SID_0001", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-08-10T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Fortemedia Audio Effects Component", + "driverVersion": "12.1.6003.6025", + "manufacturer": "Fortemedia", + "infName": "oem226.inf", + "hardwareId": "SWC\\VEN_1319\u0026AID_0002", + "deviceClass": "AUDIOPROCESSINGOBJECT", + "driverDate": "2025-08-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek High Definition Audio", + "driverVersion": "6.0.9909.1", + "manufacturer": "Microsoft", + "infName": "oem207.inf", + "hardwareId": "INTELAUDIO\\FUNC_01\u0026VEN_10EC\u0026DEV_0236\u0026SUBSYS_103C8B7A\u0026REV_1000", + "deviceClass": "MEDIA", + "driverDate": "2025-04-11T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology OED", + "driverVersion": "10.29.0.12389", + "manufacturer": "Intel(R) Corporation", + "infName": "oem219.inf", + "hardwareId": "INTELAUDIO\\DSP_CTLR_DEV_51CA\u0026VEN_8086\u0026DEV_0222\u0026SUBSYS_8B78103C\u0026REV_0001", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel\u00AE Smart Sound Technology BUS", + "driverVersion": "10.29.0.12389", + "manufacturer": "Intel(R) Corporation", + "infName": "oem218.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51CA\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP LAN/WLAN/WWAN Switching and Hotkey Service", + "driverVersion": "8.10.50.393", + "manufacturer": "HP Inc.", + "infName": "oem210.inf", + "hardwareId": "SWC\\HPHKS\u0026SRVCS", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-10-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Keyboard_Filter_01", + "manufacturer": "HP Inc.", + "hardwareId": "{A87C2E0F-9A46-46b8-8EC4-E33355FBE1F7}\\KeyboardFilter", + "isSigned": false + }, + { + "deviceName": "Standard 101/102-Key or Microsoft Natural PS/2 Keyboard for HP Hotkey Support", + "driverVersion": "8.10.50.393", + "manufacturer": "HP Inc.", + "infName": "oem208.inf", + "hardwareId": "ACPI\\VEN_HPQ\u0026DEV_8002", + "deviceClass": "KEYBOARD", + "driverDate": "2025-10-12T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_109C", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "System timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0100", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Motherboard resources", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C02", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Programmable interrupt controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0000", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "High precision event timer", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0103", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Generic Participant", + "driverVersion": "2.2.10002.4", + "manufacturer": "Intel", + "infName": "oem133.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_10A1", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Generic Participant", + "driverVersion": "2.2.10002.4", + "manufacturer": "Intel", + "infName": "oem133.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_10A1", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Generic Participant", + "driverVersion": "2.2.10002.4", + "manufacturer": "Intel", + "infName": "oem133.inf", + "hardwareId": "ACPI\\VEN_INTC\u0026DEV_10A1", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant Embedded Controller", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C09", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) LPC Controller - 519D", + "driverVersion": "10.1.36.7", + "manufacturer": "INTEL", + "infName": "oem1.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_519D\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO SPI Host Controller - 51AA", + "driverVersion": "30.100.2417.30", + "manufacturer": "Intel Corporation", + "infName": "oem135.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51AA\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2024-04-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO UART Host Controller - 51A8", + "driverVersion": "30.100.2417.30", + "manufacturer": "Intel Corporation", + "infName": "oem136.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51A8\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2024-04-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Realtek PCIe GbE Family Controller", + "driverVersion": "1168.27.919.2025", + "manufacturer": "Realtek", + "infName": "oem215.inf", + "hardwareId": "PCI\\VEN_10EC\u0026DEV_8168\u0026SUBSYS_8B78103C\u0026REV_15", + "deviceClass": "NET", + "driverDate": "2025-09-19T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) PCI Express Root Port #8 - 51BF", + "driverVersion": "10.1.36.7", + "manufacturer": "INTEL", + "infName": "oem1.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51BF\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Wireless Manageability", + "driverVersion": "2536.98.121.0", + "manufacturer": "Intel", + "infName": "oem201.inf", + "hardwareId": "SWC\\D1D545FE-A4C1-45BD-8C7C-2B90A7C3734A", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-04-09T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Management Engine WMI Provider", + "driverVersion": "2522.8.2.0", + "manufacturer": "Intel", + "infName": "oem206.inf", + "hardwareId": "SWC\\06657A6D-FE0F-4C90-8DDA-A1501C74CE4B", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2025-05-27T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Application Loader Host Interface", + "driverVersion": "1.44.2023.710", + "manufacturer": "Intel", + "infName": "oem61.inf", + "hardwareId": "SWC\\3C4852D6-D47B-4F46-B05E-B5EDC1AA440E", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2023-11-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Management Engine Interface #1", + "driverVersion": "2540.8.7.0", + "manufacturer": "Intel", + "infName": "oem200.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51E0\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2025-09-28T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_30FA\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Input Configuration Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "mtconfig.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_30FA\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant touch pad", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_30FA\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant mouse", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "msmouse.inf", + "hardwareId": "HID\\VEN_SYNA\u0026DEV_30FA\u0026Col01", + "deviceClass": "MOUSE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "I2C HID Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hidi2c.inf", + "hardwareId": "ACPI\\VEN_SYNA\u0026DEV_30FA", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Serial IO I2C Host Controller - 51E8", + "driverVersion": "30.100.2417.30", + "manufacturer": "Intel Corporation", + "infName": "oem137.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51E8\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2024-04-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Wi-Fi Direct Virtual Adapter", + "driverVersion": "10.0.26100.7019", + "manufacturer": "Microsoft", + "infName": "netvwifimp.inf", + "hardwareId": "{5d624f94-8850-40c3-a3fa-a4fd2080baf3}\\vwifimp_wfd", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Wi-Fi 6E AX211 160MHz", + "driverVersion": "23.160.0.4", + "manufacturer": "Intel Corporation", + "infName": "oem176.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51F1\u0026SUBSYS_00948086\u0026REV_01", + "deviceClass": "NET", + "driverDate": "2025-07-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Shared SRAM - 51EF", + "driverVersion": "10.1.36.7", + "manufacturer": "INTEL", + "infName": "oem1.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51EF\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_02\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_02\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_02\u0026Col01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_01\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant system controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_01\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_01\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant mouse", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "msmouse.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_01\u0026Col01", + "deviceClass": "MOUSE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_00", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Logitech USB Input Device", + "driverVersion": "1.10.80.0", + "manufacturer": "Logitech (x64)", + "infName": "oem126.inf", + "hardwareId": "USB\\VID_046D\u0026PID_C52B\u0026REV_1211\u0026MI_00", + "deviceClass": "HIDCLASS", + "driverDate": "2021-08-24T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_046D\u0026PID_C52B\u0026REV_1211", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ELAN WBF Fingerprint Sensor", + "driverVersion": "3.2.12011.10057", + "manufacturer": "ELAN", + "infName": "oem18.inf", + "hardwareId": "USB\\VID_04F3\u0026PID_0C7E\u0026REV_0414", + "deviceClass": "BIOMETRIC", + "driverDate": "2024-11-06T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HP HD Camera", + "driverVersion": "5.0.8.72", + "manufacturer": "SunplusIT", + "infName": "oem14.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B76B\u0026REV_0003\u0026MI_00", + "deviceClass": "CAMERA", + "driverDate": "2024-07-29T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_04F2\u0026PID_B76B\u0026REV_0003", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Apple iPhone", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Apple Inc.", + "infName": "wpdmtp.inf", + "hardwareId": "USB\\VID_05AC\u0026PID_12A8\u0026REV_1407\u0026MI_00", + "deviceClass": "WPD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Apple Mobile Device USB Composite Device", + "driverVersion": "538.0.0.0", + "manufacturer": "Apple, Inc.", + "infName": "oem195.inf", + "hardwareId": "USB\\VID_05AC\u0026PID_12A8\u0026REV_1407", + "deviceClass": "USBDEVICE", + "driverDate": "2023-06-14T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_0B0E\u0026PID_2466\u0026REV_0238\u0026MI_03\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_0B0E\u0026PID_2466\u0026REV_0238\u0026MI_03\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant headset", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hidtelephonydriver.inf", + "hardwareId": "HID\\VID_0B0E\u0026PID_2466\u0026REV_0238\u0026MI_03\u0026Col01", + "deviceClass": "HIDCLASS", + "driverDate": "2009-04-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_0B0E\u0026PID_2466\u0026REV_0238\u0026MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Audio Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "wdma_usb.inf", + "hardwareId": "USB\\VID_0B0E\u0026PID_2466\u0026REV_0238\u0026MI_00", + "deviceClass": "MEDIA", + "driverDate": "2026-03-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_0B0E\u0026PID_2466\u0026REV_0238", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\HID_DEVICE_SYSTEM_VHF", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Virtual HID Framework (VHF) HID device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "hidvhf.inf", + "hardwareId": "HID_DEVICE_SYSTEM_VHF", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "G213", + "hardwareId": "", + "isSigned": false + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C336\u0026REV_0901\u0026MI_01\u0026Col04", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C336\u0026REV_0901\u0026MI_01\u0026Col03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant consumer control device", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "hidserv.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C336\u0026REV_0901\u0026MI_01\u0026Col02", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C336\u0026REV_0901\u0026MI_01\u0026Col01", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D\u0026PID_C336\u0026REV_0901\u0026MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID Keyboard Device", + "driverVersion": "10.0.26100.1882", + "manufacturer": "(Standard keyboards)", + "infName": "keyboard.inf", + "hardwareId": "HID\\VID_046D\u0026PID_C336\u0026REV_0901\u0026MI_00", + "deviceClass": "KEYBOARD", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_046D\u0026PID_C336\u0026REV_0901\u0026MI_00", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "G213", + "driverVersion": "1.1.55.3120", + "manufacturer": "Logitech", + "infName": "oem77.inf", + "hardwareId": "USB\\VID_046D\u0026PID_C336\u0026REV_0901", + "deviceClass": "USB", + "driverDate": "2024-04-15T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Audio Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "wdma_usb.inf", + "hardwareId": "USB\\VID_046D\u0026PID_0843\u0026REV_0013\u0026MI_03", + "deviceClass": "MEDIA", + "driverDate": "2026-03-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Logitech Webcam C930e", + "driverVersion": "1.1.135.0", + "manufacturer": "Logitech", + "infName": "oem65.inf", + "hardwareId": "USB\\VID_046D\u0026PID_0843\u0026REV_0013\u0026MI_00", + "deviceClass": "IMAGE", + "driverDate": "2017-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Logitech USB Camera (Webcam C930e)", + "driverVersion": "1.2.75.34", + "manufacturer": "Logitech", + "infName": "oem72.inf", + "hardwareId": "USB\\VID_046D\u0026PID_0843\u0026REV_0013", + "deviceClass": "USB", + "driverDate": "2022-01-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_17EF\u0026PID_30D1\u0026REV_0043\u0026MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_30D1\u0026REV_0043\u0026MI_03", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Audio 2.0", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "usbaudio2.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_30D1\u0026REV_0043\u0026MI_00", + "deviceClass": "MEDIA", + "driverDate": "2024-03-07T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_30D1\u0026REV_0043", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "HID-compliant vendor-defined device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "HID\\VID_17EF\u0026PID_A38F\u0026REV_0000\u0026MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Input Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "input.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A38F\u0026REV_0000\u0026MI_01", + "deviceClass": "HIDCLASS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Billboard Device", + "driverVersion": "10.0.26100.1150", + "manufacturer": "WinUsb Device", + "infName": "winusb.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A38F\u0026REV_0000\u0026MI_00", + "deviceClass": "USBDEVICE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Composite Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB Host Controller)", + "infName": "usb.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A38F\u0026REV_0000", + "deviceClass": "USB", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A395\u0026REV_6070", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A394\u0026REV_0D23", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A392\u0026REV_0D24", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth LE Enumerator", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "bthleenum.inf", + "hardwareId": "BTH\\MS_BTHLE", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (Personal Area Network)", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "bthpan.inf", + "hardwareId": "BTH\\MS_BTHPAN", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTHENUM\\Dev_70BF92A6FD8E", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Hands-Free Profile AudioGateway role", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_hfp_ag.inf", + "hardwareId": "BTHENUM\\{0000111e-0000-1000-8000-00805f9b34fb}_HCIBYPASS_VID\u002600010067_PID\u0026097a", + "deviceClass": "SYSTEM", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110e-0000-1000-8000-00805f9b34fb}_VID\u002600010067_PID\u0026097a", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Avrcp Transport Driver", + "driverVersion": "10.0.26100.7705", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_avrcptransport.inf", + "hardwareId": "BTHENUM\\{0000110c-0000-1000-8000-00805f9b34fb}_VID\u002600010067_PID\u0026097a", + "deviceClass": "BLUETOOTH", + "driverDate": "2026-01-26T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Audio Endpoint", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "audioendpoint.inf", + "hardwareId": "MMDEVAPI\\AudioEndpoints", + "deviceClass": "AUDIOENDPOINT", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth A2dp Source", + "driverVersion": "10.0.26100.1", + "manufacturer": "Microsoft", + "infName": "microsoft_bluetooth_a2dp_src.inf", + "hardwareId": "BTHENUM\\{0000110b-0000-1000-8000-00805f9b34fb}_VID\u002600010067_PID\u0026097a", + "deviceClass": "MEDIA", + "driverDate": "2024-03-31T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Bluetooth Enumerator", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "bth.inf", + "hardwareId": "BTH\\MS_BTHBRB", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard Serial over Bluetooth link", + "driverVersion": "10.0.26100.2161", + "manufacturer": "Microsoft", + "infName": "bthspp.inf", + "hardwareId": "BTHENUM\\{00001101-0000-1000-8000-00805f9b34fb}_VID\u002600010067_PID\u0026097a", + "deviceClass": "PORTS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard Serial over Bluetooth link", + "driverVersion": "10.0.26100.2161", + "manufacturer": "Microsoft", + "infName": "bthspp.inf", + "hardwareId": "BTHENUM\\{00001101-0000-1000-8000-00805f9b34fb}_LOCALMFG\u00260000", + "deviceClass": "PORTS", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Bluetooth Device (RFCOMM Protocol TDI)", + "driverVersion": "10.0.26100.8036", + "manufacturer": "Microsoft", + "infName": "tdibth.inf", + "hardwareId": "BTH\\MS_RFCOMM", + "deviceClass": "BLUETOOTH", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel Tile Device", + "manufacturer": "Intel Corporation", + "hardwareId": "", + "isSigned": false + }, + { + "deviceName": "Intel(R) Wireless Bluetooth(R)", + "driverVersion": "23.160.0.9", + "manufacturer": "Intel Corporation", + "infName": "oem175.inf", + "hardwareId": "USB\\VID_8087\u0026PID_0033\u0026REV_0000", + "deviceClass": "BLUETOOTH", + "driverDate": "2025-07-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30\u0026VID8086\u0026PID51ED\u0026REV0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_51ED\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A393\u0026REV_0D23", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Lenovo USB Ethernet", + "driverVersion": "1153.21.1009.2025", + "manufacturer": "Realtek", + "infName": "oem214.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A387\u0026REV_3103", + "deviceClass": "NET", + "driverDate": "2025-09-10T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic SuperSpeed USB Hub", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\VID_17EF\u0026PID_A391\u0026REV_0D24", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB Root Hub (USB 3.0)", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard USB HUBs)", + "infName": "usbhub3.inf", + "hardwareId": "USB\\ROOT_HUB30\u0026VID8086\u0026PIDA71E\u0026REV0001", + "deviceClass": "USB", + "driverDate": "2026-03-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "USB xHCI Compliant Host Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Generic USB xHCI Host Controller", + "infName": "usbxhci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A71E\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "USB", + "driverDate": "2026-11-04T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) GNA Scoring Accelerator module", + "driverVersion": "3.5.0.1578", + "manufacturer": "Intel Corporation", + "infName": "oem131.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A74F\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2023-11-14T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Disk drive", + "driverVersion": "10.0.26100.7705", + "manufacturer": "(Standard disk drives)", + "infName": "disk.inf", + "hardwareId": "SCSI\\DiskNVMe__________________SAMSUNG_MZVL4512HBLU-00BH1HPS3NHAV", + "deviceClass": "DISKDRIVE", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Standard NVM Express Controller", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Standard NVM Express Controller", + "infName": "stornvme.inf", + "hardwareId": "PCI\\VEN_144D\u0026DEV_A80B\u0026SUBSYS_A80B144D\u0026REV_02", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Port", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A73D\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) PCIe RC 060 (x4) G4 - A74D", + "driverVersion": "10.1.49.10", + "manufacturer": "INTEL", + "infName": "oem76.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A74D\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "1968-07-18T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Dynamic Tuning Technology", + "driverVersion": "9.0.11701.44281", + "manufacturer": "Intel", + "infName": "oem58.inf", + "hardwareId": "SWC\\VID8086_DTT_1.0", + "deviceClass": "SOFTWARECOMPONENT", + "driverDate": "2024-05-23T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Extensible Framework", + "driverVersion": "2.2.10002.4", + "manufacturer": "Intel", + "infName": "oem134.inf", + "hardwareId": "SWC\\VID8086_IPFEF_1.0", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Innovation Platform Framework Processor Participant", + "driverVersion": "2.2.10002.4", + "manufacturer": "Intel", + "infName": "oem134.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A71D\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2024-06-20T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic PnP Monitor", + "driverVersion": "10.0.26100.7309", + "manufacturer": "(Standard monitor types)", + "infName": "monitor.inf", + "hardwareId": "MONITOR\\HPN3905", + "deviceClass": "MONITOR", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Generic PnP Monitor", + "driverVersion": "10.0.26100.7309", + "manufacturer": "(Standard monitor types)", + "infName": "monitor.inf", + "hardwareId": "MONITOR\\HPN3905", + "deviceClass": "MONITOR", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Intel(R) Iris(R) Xe Graphics", + "driverVersion": "32.0.101.7077", + "manufacturer": "Intel Corporation", + "infName": "oem187.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A7A1\u0026SUBSYS_8B78103C\u0026REV_04", + "deviceClass": "DISPLAY", + "driverDate": "2025-09-16T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI standard host CPU bridge", + "driverVersion": "10.0.26100.1150", + "manufacturer": "(Standard system devices)", + "infName": "machine.inf", + "hardwareId": "PCI\\VEN_8086\u0026DEV_A708\u0026SUBSYS_8B78103C\u0026REV_01", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "PCI Express Root Complex", + "driverVersion": "10.0.26100.8115", + "manufacturer": "(Standard system devices)", + "infName": "pci.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0A08", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Windows Management Interface for ACPI", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "wmiacpi.inf", + "hardwareId": "ACPI\\VEN_PNP\u0026DEV_0C14", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft ACPI-Compliant System", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "acpi.inf", + "hardwareId": "ACPI_HAL\\PNP0C08", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "ACPI x64-based PC", + "driverVersion": "10.0.26100.1", + "manufacturer": "(Standard computers)", + "infName": "hal.inf", + "hardwareId": "acpiapic", + "deviceClass": "COMPUTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Charge Arbitration Driver", + "driverVersion": "10.0.26100.7920", + "manufacturer": "(Standard system devices)", + "infName": "ChargeArbitration.inf", + "hardwareId": "ROOT\\CAD", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "UMBus Root Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "umbus.inf", + "hardwareId": "root\\umbus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Kernel Debug Network Adapter", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "kdnic.inf", + "hardwareId": "root\\kdnic", + "deviceClass": "NET", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Storage Spaces Controller", + "driverVersion": "10.0.26100.8246", + "manufacturer": "Microsoft", + "infName": "spaceport.inf", + "hardwareId": "Root\\Spaceport", + "deviceClass": "SCSIADAPTER", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Virtual Drive Enumerator", + "driverVersion": "10.0.26100.1591", + "manufacturer": "Microsoft", + "infName": "vdrvroot.inf", + "hardwareId": "ROOT\\vdrvroot", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Composite Bus Enumerator", + "driverVersion": "10.0.26100.1150", + "manufacturer": "Microsoft", + "infName": "compositebus.inf", + "hardwareId": "ROOT\\CompositeBus", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hyper-V Virtualization Infrastructure Driver", + "driverVersion": "10.0.26100.7920", + "manufacturer": "Microsoft", + "infName": "wvid.inf", + "hardwareId": "ROOT\\VID", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "VMware Virtual Ethernet Adapter for VMnet8", + "driverVersion": "17.6.0.0", + "manufacturer": "Broadcom Inc.", + "infName": "oem97.inf", + "hardwareId": "*VMnetAdapter8", + "deviceClass": "NET", + "driverDate": "2024-07-06T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "VMware Virtual Ethernet Adapter for VMnet1", + "driverVersion": "17.6.0.0", + "manufacturer": "Broadcom Inc.", + "infName": "oem97.inf", + "hardwareId": "*VMnetAdapter1", + "deviceClass": "NET", + "driverDate": "2024-07-06T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Hypervisor Service", + "driverVersion": "10.0.26100.7309", + "manufacturer": "Microsoft", + "infName": "hvservice.inf", + "hardwareId": "ROOT\\hvservice", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Microsoft Basic Display Driver", + "driverVersion": "10.0.26100.4202", + "manufacturer": "(Standard display types)", + "infName": "basicdisplay.inf", + "hardwareId": "ROOT\\BasicDisplay", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume", + "driverVersion": "10.0.26100.5074", + "manufacturer": "Microsoft", + "infName": "volume.inf", + "hardwareId": "STORAGE\\Volume", + "deviceClass": "VOLUME", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + }, + { + "deviceName": "Volume Manager", + "driverVersion": "10.0.26100.8115", + "manufacturer": "Microsoft", + "infName": "volmgr.inf", + "hardwareId": "ROOT\\VOLMGR", + "deviceClass": "SYSTEM", + "driverDate": "2006-06-21T00:00:00+00:00", + "isSigned": true + } + ], + "recentUpdateEvents": [] +} \ No newline at end of file diff --git a/PatchProbe.Server/server.js b/PatchProbe.Server/server.js new file mode 100644 index 0000000..9b6d339 --- /dev/null +++ b/PatchProbe.Server/server.js @@ -0,0 +1,176 @@ +'use strict'; + +// --------------------------------------------------------------------------- +// --gen-admin-key utility +// --------------------------------------------------------------------------- + +if (process.argv.includes('--gen-admin-key')) { + const crypto = require('crypto'); + const bcrypt = require('bcryptjs'); + const key = crypto.randomBytes(32).toString('hex'); + const hash = bcrypt.hashSync(key, 12); + console.log('\nGenerated admin key (store securely — shown only once):'); + console.log(' Key: ' + key); + console.log(' Hash: ' + hash); + console.log('\nAdd to your .env file:'); + console.log(' PATCHPROBE_ADMIN_KEY_HASH=' + hash + '\n'); + process.exit(0); +} + +// --------------------------------------------------------------------------- +// Server startup +// --------------------------------------------------------------------------- + +const fs = require('fs'); +const path = require('path'); +const express = require('express'); +const helmet = require('helmet'); +const rateLimit = require('express-rate-limit'); +const cookieParser = require('cookie-parser'); + +const config = require('./src/config'); +const logger = require('./src/logger'); +const { initDb, closeDb } = require('./src/db'); +const authRouter = require('./src/routes/auth'); +const enrollmentRouter = require('./src/routes/enrollments'); +const scansRouter = require('./src/routes/scans'); +const adminRouter = require('./src/routes/admin'); + +initDb(); + +const app = express(); + +// --------------------------------------------------------------------------- +// Security headers +// Relax CSP slightly so the built React SPA can load scripts/styles from self +// --------------------------------------------------------------------------- + +app.use(helmet({ + contentSecurityPolicy: { + directives: { + defaultSrc: ["'self'"], + scriptSrc: ["'self'"], + styleSrc: ["'self'", "'unsafe-inline'"], // Vite injects a small inline style in dev + imgSrc: ["'self'", 'data:'], + connectSrc: ["'self'"], + fontSrc: ["'self'"], + objectSrc: ["'none'"], + frameSrc: ["'none'"], + upgradeInsecureRequests: config.nodeEnv === 'production' ? [] : null, + }, + }, + crossOriginEmbedderPolicy: false, +})); + +// --------------------------------------------------------------------------- +// Rate limiting +// --------------------------------------------------------------------------- + +app.use('/api/enrollments', rateLimit({ + windowMs: 60_000, max: 10, + standardHeaders: true, legacyHeaders: false, + message: { error: 'Too many enrollment requests — try again in a minute' }, +})); + +app.use('/api/scans', rateLimit({ + windowMs: 60_000, max: 60, + standardHeaders: true, legacyHeaders: false, + message: { error: 'Too many scan requests — try again in a minute' }, +})); + +app.use('/api/auth', rateLimit({ + windowMs: 60_000, max: 20, + standardHeaders: true, legacyHeaders: false, + message: { error: 'Too many auth requests — try again in a minute' }, +})); + +// --------------------------------------------------------------------------- +// Body parsing + cookie parsing +// raw body capture must come before cookie-parser to avoid interference +// --------------------------------------------------------------------------- + +app.use(express.json({ + limit: '50mb', + verify: (req, _res, buf) => { req.rawBody = buf; }, +})); +app.use(cookieParser()); + +// --------------------------------------------------------------------------- +// Static files (built SPA) +// --------------------------------------------------------------------------- + +app.use(express.static(path.join(__dirname, 'public'))); + +// --------------------------------------------------------------------------- +// API routes +// --------------------------------------------------------------------------- + +app.use('/api/auth', authRouter); +app.use('/api/enrollments', enrollmentRouter); +app.use('/api/scans', scansRouter); +app.use('/api/admin', adminRouter); + +// API 404 +app.use('/api/', (req, res) => { + res.status(404).json({ error: 'Not found' }); +}); + +// --------------------------------------------------------------------------- +// SPA catch-all — serve index.html for all non-API GET requests +// React Router handles client-side routing +// --------------------------------------------------------------------------- + +app.get('*', (req, res) => { + const indexPath = path.join(__dirname, 'public', 'index.html'); + if (fs.existsSync(indexPath)) { + res.sendFile(indexPath); + } else { + res.status(503).send( + 'Dashboard not built — run: cd PatchProbe.Dashboard && npm install && npm run build', + ); + } +}); + +// --------------------------------------------------------------------------- +// Error handler +// --------------------------------------------------------------------------- + +// eslint-disable-next-line no-unused-vars +app.use((err, req, res, next) => { + if (err.type === 'entity.parse.failed') { + return res.status(400).json({ error: 'Invalid JSON in request body' }); + } + logger.error({ err, method: req.method, path: req.path }, 'Unhandled error'); + res.status(err.status ?? 500).json({ error: err.message ?? 'Internal server error' }); +}); + +// --------------------------------------------------------------------------- +// Startup +// --------------------------------------------------------------------------- + +const server = app.listen(config.port, '0.0.0.0', () => { + logger.info({ port: config.port, auth: config.authEnabled, env: config.nodeEnv }, 'PatchProbe Server started'); + if (!config.adminKeyHash) { + logger.warn('PATCHPROBE_ADMIN_KEY_HASH not set — run: node server.js --gen-admin-key'); + } + if (!process.env.PATCHPROBE_JWT_SECRET) { + logger.warn('PATCHPROBE_JWT_SECRET not set — sessions will not survive server restarts'); + } +}); + +// --------------------------------------------------------------------------- +// Graceful shutdown +// --------------------------------------------------------------------------- + +function shutdown(signal) { + logger.info({ signal }, 'Shutdown signal received'); + server.close(() => { + closeDb(); + logger.info('Server stopped cleanly'); + process.exit(0); + }); + setTimeout(() => { logger.error('Forced shutdown'); process.exit(1); }, 10_000).unref(); +} + +process.on('SIGTERM', () => shutdown('SIGTERM')); +process.on('SIGINT', () => shutdown('SIGINT')); diff --git a/PatchProbe.Server/src/config.js b/PatchProbe.Server/src/config.js new file mode 100644 index 0000000..da93148 --- /dev/null +++ b/PatchProbe.Server/src/config.js @@ -0,0 +1,20 @@ +'use strict'; + +const crypto = require('crypto'); +require('dotenv').config(); + +const config = { + port: parseInt(process.env.PORT ?? '3000', 10), + nodeEnv: process.env.NODE_ENV ?? 'development', + dbPath: process.env.DB_PATH ?? './patchprobe.db', + authEnabled: (process.env.PATCHPROBE_AUTH_ENABLED ?? 'true') === 'true', + adminKeyHash: process.env.PATCHPROBE_ADMIN_KEY_HASH ?? null, + // WebAuthn — rpId must be a plain hostname (no port, no protocol) + rpId: process.env.PATCHPROBE_RP_ID ?? 'localhost', + // WebAuthn — full origin that the browser will use to reach this server + origin: process.env.PATCHPROBE_ORIGIN ?? 'http://localhost:3000', + // JWT — auto-generated if unset; set in production so sessions survive restarts + jwtSecret: process.env.PATCHPROBE_JWT_SECRET ?? crypto.randomBytes(32).toString('hex'), +}; + +module.exports = config; diff --git a/PatchProbe.Server/src/db.js b/PatchProbe.Server/src/db.js new file mode 100644 index 0000000..6edcd08 --- /dev/null +++ b/PatchProbe.Server/src/db.js @@ -0,0 +1,126 @@ +'use strict'; + +const { DatabaseSync } = require('node:sqlite'); +const config = require('./config'); +const logger = require('./logger'); + +let db; + +function getVersion() { + try { + const row = db.prepare('SELECT MAX(version) AS v FROM schema_version').get(); + return row?.v ?? 0; + } catch { + return 0; + } +} + +function migrate() { + const current = getVersion(); + + if (current < 1) { + logger.info('Applying DB migration v1'); + try { + db.exec('BEGIN'); + db.exec('CREATE TABLE IF NOT EXISTS schema_version (version INTEGER NOT NULL)'); + db.exec(` + CREATE TABLE IF NOT EXISTS devices ( + device_id TEXT PRIMARY KEY, + machine_name TEXT NOT NULL, + device_fingerprint TEXT UNIQUE, + public_key_spki TEXT NOT NULL, + enrolled_at TEXT NOT NULL, + last_seen_at TEXT, + revoked_at TEXT + ) + `); + db.exec(` + CREATE TABLE IF NOT EXISTS scans ( + id TEXT PRIMARY KEY, + device_id TEXT REFERENCES devices(device_id), + machine_name TEXT, + collected_at TEXT, + ran_as_administrator INTEGER, + applicable_update_count INTEGER, + pending_reboot INTEGER, + raw_json TEXT NOT NULL, + received_at TEXT NOT NULL + ) + `); + db.exec(` + CREATE TABLE IF NOT EXISTS enrollment_tokens ( + token TEXT PRIMARY KEY, + label TEXT NOT NULL, + created_at TEXT NOT NULL, + expires_at TEXT, + used_count INTEGER NOT NULL DEFAULT 0, + max_uses INTEGER, + revoked_at TEXT + ) + `); + db.prepare('DELETE FROM schema_version').run(); + db.prepare('INSERT INTO schema_version (version) VALUES (?)').run(1); + db.exec('COMMIT'); + } catch (err) { + try { db.exec('ROLLBACK'); } catch { /* ignore */ } + throw err; + } + } + + if (current < 2) { + logger.info('Applying DB migration v2'); + try { + db.exec('BEGIN'); + db.exec(` + CREATE TABLE IF NOT EXISTS admin_users ( + user_id TEXT PRIMARY KEY, + username TEXT UNIQUE NOT NULL, + display_name TEXT NOT NULL, + created_at TEXT NOT NULL + ) + `); + db.exec(` + CREATE TABLE IF NOT EXISTS admin_credentials ( + credential_id TEXT PRIMARY KEY, + user_id TEXT NOT NULL REFERENCES admin_users(user_id), + public_key TEXT NOT NULL, + counter INTEGER NOT NULL DEFAULT 0, + device_type TEXT, + backed_up INTEGER NOT NULL DEFAULT 0, + transports TEXT, + created_at TEXT NOT NULL, + last_used_at TEXT + ) + `); + db.prepare('DELETE FROM schema_version').run(); + db.prepare('INSERT INTO schema_version (version) VALUES (?)').run(2); + db.exec('COMMIT'); + } catch (err) { + try { db.exec('ROLLBACK'); } catch { /* ignore */ } + throw err; + } + } +} + +function initDb() { + db = new DatabaseSync(config.dbPath); + db.exec('PRAGMA journal_mode = WAL'); + db.exec('PRAGMA foreign_keys = ON'); + migrate(); + logger.info({ dbPath: config.dbPath }, 'Database ready'); + return db; +} + +function getDb() { + if (!db) throw new Error('Database not initialized — call initDb() first'); + return db; +} + +function closeDb() { + if (db) { + db.close(); + db = null; + } +} + +module.exports = { initDb, getDb, closeDb }; diff --git a/PatchProbe.Server/src/logger.js b/PatchProbe.Server/src/logger.js new file mode 100644 index 0000000..f1826c3 --- /dev/null +++ b/PatchProbe.Server/src/logger.js @@ -0,0 +1,18 @@ +'use strict'; + +const pino = require('pino'); +const config = require('./config'); + +const logger = pino( + config.nodeEnv === 'production' + ? { level: 'info' } + : { + level: 'debug', + transport: { + target: 'pino-pretty', + options: { colorize: true }, + }, + } +); + +module.exports = logger; diff --git a/PatchProbe.Server/src/middleware/adminAuth.js b/PatchProbe.Server/src/middleware/adminAuth.js new file mode 100644 index 0000000..15ccaf6 --- /dev/null +++ b/PatchProbe.Server/src/middleware/adminAuth.js @@ -0,0 +1,70 @@ +'use strict'; + +const bcrypt = require('bcryptjs'); +const jwt = require('jsonwebtoken'); +const config = require('../config'); +const logger = require('../logger'); + +const SESSION_COOKIE = 'pp_session'; + +// Bearer key check (bcrypt) — for curl / API access +function requireAdmin(req, res, next) { + const authHeader = req.headers['authorization'] ?? ''; + const key = authHeader.startsWith('Bearer ') ? authHeader.slice(7) : null; + + if (!key) { + return res.status(401).json({ error: 'Admin authentication required (Authorization: Bearer )' }); + } + + if (!config.adminKeyHash) { + logger.error('Admin endpoint called but PATCHPROBE_ADMIN_KEY_HASH is not configured'); + return res.status(503).json({ error: 'Admin authentication not configured — run: node server.js --gen-admin-key' }); + } + + bcrypt.compare(key, config.adminKeyHash, (err, match) => { + if (err) { + logger.error({ err }, 'bcrypt compare error during admin auth'); + return res.status(500).json({ error: 'Internal server error' }); + } + if (!match) { + logger.warn({ reason: 'invalid_key' }, 'Admin auth failure'); + return res.status(401).json({ error: 'Invalid admin key' }); + } + next(); + }); +} + +// JWT session check — for browser / dashboard access +function requireSession(req, res, next) { + const token = req.cookies?.[SESSION_COOKIE]; + if (!token) { + return res.status(401).json({ error: 'Not authenticated' }); + } + try { + req.adminSession = jwt.verify(token, config.jwtSecret); + next(); + } catch { + res.clearCookie(SESSION_COOKIE, { path: '/' }); + return res.status(401).json({ error: 'Session expired — please log in again' }); + } +} + +// Session cookie OR bearer key — used by all /api/admin/* routes +function requireAdminAccess(req, res, next) { + const token = req.cookies?.[SESSION_COOKIE]; + if (token) { + try { + req.adminSession = jwt.verify(token, config.jwtSecret); + return next(); + } catch { + res.clearCookie(SESSION_COOKIE, { path: '/' }); + } + } + const authHeader = req.headers['authorization'] ?? ''; + if (authHeader.startsWith('Bearer ')) { + return requireAdmin(req, res, next); + } + return res.status(401).json({ error: 'Authentication required' }); +} + +module.exports = { requireAdmin, requireSession, requireAdminAccess }; diff --git a/PatchProbe.Server/src/middleware/auth.js b/PatchProbe.Server/src/middleware/auth.js new file mode 100644 index 0000000..8f5d33e --- /dev/null +++ b/PatchProbe.Server/src/middleware/auth.js @@ -0,0 +1,74 @@ +'use strict'; + +const crypto = require('crypto'); +const config = require('../config'); +const { getDb } = require('../db'); +const logger = require('../logger'); + +function requireAuth(req, res, next) { + if (!config.authEnabled) return next(); + + const deviceId = req.headers['x-device-id']; + const timestamp = req.headers['x-timestamp']; + const signature = req.headers['x-signature']; + + if (!deviceId || !timestamp || !signature) { + logger.warn({ reason: 'missing_headers' }, 'Device auth failure'); + return res.status(401).json({ error: 'Missing authentication headers (X-Device-Id, X-Timestamp, X-Signature)' }); + } + + const reqTime = parseInt(timestamp, 10); + if (isNaN(reqTime) || Math.abs(Date.now() - reqTime) > 5 * 60 * 1000) { + logger.warn({ deviceId, reason: 'timestamp_expired' }, 'Device auth failure'); + return res.status(401).json({ error: 'Request timestamp is expired or invalid' }); + } + + const db = getDb(); + const device = db.prepare('SELECT * FROM devices WHERE device_id = ?').get(deviceId); + + if (!device) { + logger.warn({ deviceId, reason: 'unknown_device' }, 'Device auth failure'); + return res.status(401).json({ error: 'Unknown device' }); + } + + if (device.revoked_at) { + logger.warn({ deviceId, reason: 'device_revoked' }, 'Device auth failure'); + return res.status(401).json({ error: 'Device has been revoked' }); + } + + // Reconstruct the signed message: deviceId LF timestamp LF base64(sha256(rawBody)) + const bodyHash = crypto.createHash('sha256').update(req.rawBody ?? '').digest('base64'); + const message = `${deviceId}\n${timestamp}\n${bodyHash}`; + + let valid = false; + try { + const publicKey = crypto.createPublicKey({ + key: Buffer.from(device.public_key_spki, 'base64'), + format: 'der', + type: 'spki', + }); + const verifier = crypto.createVerify('SHA256'); + verifier.update(message); + // .NET ECDsa.SignData() produces IEEE P1363 (raw r‖s), not DER + valid = verifier.verify( + { key: publicKey, dsaEncoding: 'ieee-p1363' }, + Buffer.from(signature, 'base64'), + ); + } catch { + logger.warn({ deviceId, reason: 'sig_error' }, 'Device auth failure'); + return res.status(401).json({ error: 'Signature verification error' }); + } + + if (!valid) { + logger.warn({ deviceId, reason: 'invalid_sig' }, 'Device auth failure'); + return res.status(401).json({ error: 'Invalid signature' }); + } + + db.prepare('UPDATE devices SET last_seen_at = ? WHERE device_id = ?') + .run(new Date().toISOString(), deviceId); + + req.device = device; + next(); +} + +module.exports = { requireAuth }; diff --git a/PatchProbe.Server/src/routes/admin.js b/PatchProbe.Server/src/routes/admin.js new file mode 100644 index 0000000..27202fe --- /dev/null +++ b/PatchProbe.Server/src/routes/admin.js @@ -0,0 +1,155 @@ +'use strict'; + +const express = require('express'); +const crypto = require('crypto'); +const { getDb } = require('../db'); +const { requireAdminAccess } = require('../middleware/adminAuth'); +const logger = require('../logger'); + +const router = express.Router(); + +router.use(requireAdminAccess); + +// --------------------------------------------------------------------------- +// Enrollment tokens +// --------------------------------------------------------------------------- + +// POST /api/admin/tokens — create an enrollment token +router.post('/tokens', (req, res) => { + const { label, expiresInDays, maxUses } = req.body ?? {}; + + if (typeof label !== 'string' || label.trim().length === 0 || label.length > 255) { + return res.status(400).json({ error: 'label is required (string, max 255 chars)' }); + } + if (expiresInDays !== undefined && (!Number.isInteger(expiresInDays) || expiresInDays < 1 || expiresInDays > 3650)) { + return res.status(400).json({ error: 'expiresInDays must be a positive integer (max 3650)' }); + } + if (maxUses !== undefined && (!Number.isInteger(maxUses) || maxUses < 1)) { + return res.status(400).json({ error: 'maxUses must be a positive integer' }); + } + + const token = crypto.randomBytes(32).toString('hex'); + const now = new Date().toISOString(); + const expiresAt = expiresInDays + ? new Date(Date.now() + expiresInDays * 86_400_000).toISOString() + : null; + + const db = getDb(); + db.prepare( + 'INSERT INTO enrollment_tokens (token, label, created_at, expires_at, max_uses) VALUES (?, ?, ?, ?, ?)' + ).run(token, label.trim(), now, expiresAt, maxUses ?? null); + + logger.info({ label: label.trim(), expiresInDays, maxUses }, 'Enrollment token created'); + + // Token value only returned once — on creation + res.status(201).json({ + token, + label: label.trim(), + createdAt: now, + expiresAt, + maxUses: maxUses ?? null, + }); +}); + +// GET /api/admin/tokens — list tokens (masked) +router.get('/tokens', (req, res) => { + const db = getDb(); + const tokens = db.prepare( + 'SELECT rowid, token, label, created_at, expires_at, used_count, max_uses, revoked_at FROM enrollment_tokens ORDER BY created_at DESC' + ).all(); + + const now = new Date(); + res.json(tokens.map(t => ({ + id: t.rowid, + tokenMasked: `${t.token.slice(0, 4)}****`, + label: t.label, + createdAt: t.created_at, + expiresAt: t.expires_at, + usedCount: t.used_count, + maxUses: t.max_uses, + revokedAt: t.revoked_at, + active: !t.revoked_at + && (!t.expires_at || new Date(t.expires_at) > now) + && (t.max_uses === null || t.used_count < t.max_uses), + }))); +}); + +// DELETE /api/admin/tokens/:id — revoke a token by rowid +router.delete('/tokens/:id', (req, res) => { + const id = parseInt(req.params.id, 10); + if (!Number.isInteger(id) || id < 1) { + return res.status(400).json({ error: 'Invalid token id' }); + } + + const db = getDb(); + const row = db.prepare('SELECT token FROM enrollment_tokens WHERE rowid = ?').get(id); + if (!row) return res.status(404).json({ error: 'Token not found' }); + if (row.revoked_at) return res.status(409).json({ error: 'Token already revoked' }); + + db.prepare('UPDATE enrollment_tokens SET revoked_at = ? WHERE rowid = ?') + .run(new Date().toISOString(), id); + + logger.info({ tokenId: id, tokenMasked: row.token.slice(0, 4) + '****' }, 'Enrollment token revoked'); + res.status(204).end(); +}); + +// --------------------------------------------------------------------------- +// Devices +// --------------------------------------------------------------------------- + +// GET /api/admin/devices — list all devices +router.get('/devices', (req, res) => { + const db = getDb(); + const devices = db.prepare( + 'SELECT device_id, machine_name, device_fingerprint, enrolled_at, last_seen_at, revoked_at FROM devices ORDER BY enrolled_at DESC' + ).all(); + + res.json(devices.map(d => ({ + id: d.device_id, + machineName: d.machine_name, + deviceFingerprint: d.device_fingerprint, + enrolledAt: d.enrolled_at, + lastSeenAt: d.last_seen_at, + revoked: !!d.revoked_at, + revokedAt: d.revoked_at, + }))); +}); + +// DELETE /api/admin/devices/:id — revoke a device +router.delete('/devices/:id', (req, res) => { + const db = getDb(); + const device = db.prepare('SELECT device_id FROM devices WHERE device_id = ?').get(req.params.id); + if (!device) return res.status(404).json({ error: 'Device not found' }); + + db.prepare('UPDATE devices SET revoked_at = ? WHERE device_id = ?') + .run(new Date().toISOString(), req.params.id); + + logger.info({ deviceId: req.params.id }, 'Device revoked'); + res.status(204).end(); +}); + +// GET /api/admin/devices/:id/scans — scan summaries for one device +router.get('/devices/:id/scans', (req, res) => { + const db = getDb(); + const device = db.prepare('SELECT device_id FROM devices WHERE device_id = ?').get(req.params.id); + if (!device) return res.status(404).json({ error: 'Device not found' }); + + const scans = db.prepare(` + SELECT id, machine_name, collected_at, ran_as_administrator, applicable_update_count, pending_reboot, received_at + FROM scans + WHERE device_id = ? + ORDER BY received_at DESC + `).all(req.params.id); + + res.json(scans.map(s => ({ + id: s.id, + machineName: s.machine_name, + collectedAt: s.collected_at, + receivedAt: s.received_at, + ranAsAdministrator: s.ran_as_administrator === 1, + applicableUpdateCount: s.applicable_update_count, + pendingReboot: s.pending_reboot === 1, + }))); +}); + +module.exports = router; diff --git a/PatchProbe.Server/src/routes/auth.js b/PatchProbe.Server/src/routes/auth.js new file mode 100644 index 0000000..27dfcc3 --- /dev/null +++ b/PatchProbe.Server/src/routes/auth.js @@ -0,0 +1,350 @@ +'use strict'; + +const express = require('express'); +const crypto = require('crypto'); +const jwt = require('jsonwebtoken'); +const { + generateRegistrationOptions, + verifyRegistrationResponse, + generateAuthenticationOptions, + verifyAuthenticationResponse, +} = require('@simplewebauthn/server'); + +const config = require('../config'); +const { getDb } = require('../db'); +const { requireAdminAccess, requireSession } = require('../middleware/adminAuth'); +const logger = require('../logger'); + +const router = express.Router(); + +// --------------------------------------------------------------------------- +// In-memory challenge store (TTL 2 minutes, single-server only) +// --------------------------------------------------------------------------- + +const pending = new Map(); + +function storeEntry(data) { + const token = crypto.randomBytes(32).toString('hex'); + pending.set(token, { ...data, expiresAt: Date.now() + 120_000 }); + return token; +} + +function consumeEntry(token) { + if (!token) return null; + const entry = pending.get(token); + pending.delete(token); + if (!entry || entry.expiresAt < Date.now()) return null; + return entry; +} + +setInterval(() => { + const now = Date.now(); + for (const [k, v] of pending) if (v.expiresAt < now) pending.delete(k); +}, 60_000).unref(); + +// --------------------------------------------------------------------------- +// Cookie helpers +// --------------------------------------------------------------------------- + +const SESSION_COOKIE = 'pp_session'; +const CEREMONY_COOKIE = 'pp_ceremony'; + +const BASE_OPTS = { + httpOnly: true, + sameSite: 'strict', + secure: config.nodeEnv === 'production', + path: '/', +}; + +function setSession(res, user) { + const token = jwt.sign( + { sub: user.user_id, username: user.username, displayName: user.display_name }, + config.jwtSecret, + { expiresIn: '8h' }, + ); + res.cookie(SESSION_COOKIE, token, { ...BASE_OPTS, maxAge: 8 * 60 * 60 * 1000 }); + return token; +} + +// --------------------------------------------------------------------------- +// Bootstrap guard: allow if no admin users exist yet, else require admin access +// --------------------------------------------------------------------------- + +function requireAdminOrBootstrap(req, res, next) { + const db = getDb(); + const { n } = db.prepare('SELECT COUNT(*) AS n FROM admin_users').get(); + if (n === 0) return next(); + return requireAdminAccess(req, res, next); +} + +// --------------------------------------------------------------------------- +// Status — lets the login page know if first-time setup is needed +// --------------------------------------------------------------------------- + +router.get('/status', (req, res) => { + const db = getDb(); + const { n } = db.prepare('SELECT COUNT(*) AS n FROM admin_users').get(); + res.json({ hasUsers: n > 0 }); +}); + +// --------------------------------------------------------------------------- +// Session +// --------------------------------------------------------------------------- + +router.get('/me', (req, res) => { + const token = req.cookies?.[SESSION_COOKIE]; + if (!token) return res.status(401).json({ error: 'Not authenticated' }); + try { + const p = jwt.verify(token, config.jwtSecret); + res.json({ userId: p.sub, username: p.username, displayName: p.displayName }); + } catch { + res.clearCookie(SESSION_COOKIE, { path: '/' }); + res.status(401).json({ error: 'Session expired' }); + } +}); + +router.post('/logout', (req, res) => { + res.clearCookie(SESSION_COOKIE, { path: '/' }); + res.json({ ok: true }); +}); + +// --------------------------------------------------------------------------- +// Registration +// --------------------------------------------------------------------------- + +router.post('/register/begin', requireAdminOrBootstrap, async (req, res, next) => { + try { + const { username, displayName } = req.body ?? {}; + if (typeof username !== 'string' || !username.trim() || username.length > 64) { + return res.status(400).json({ error: 'username required (max 64 chars)' }); + } + if (typeof displayName !== 'string' || !displayName.trim() || displayName.length > 128) { + return res.status(400).json({ error: 'displayName required (max 128 chars)' }); + } + + const db = getDb(); + const cleanName = username.trim().toLowerCase(); + const cleanDisplay = displayName.trim(); + const userId = crypto.randomUUID(); + + // Exclude credentials already registered for this username + const existingCreds = db.prepare(` + SELECT ac.credential_id, ac.transports + FROM admin_credentials ac + JOIN admin_users au ON au.user_id = ac.user_id + WHERE au.username = ? + `).all(cleanName); + + const options = await generateRegistrationOptions({ + rpName: 'PatchProbe', + rpID: config.rpId, + userID: Buffer.from(userId), + userName: cleanName, + userDisplayName: cleanDisplay, + attestation: 'none', + authenticatorSelection: { residentKey: 'required', userVerification: 'required' }, + excludeCredentials: existingCreds.map(c => ({ + id: c.credential_id, + transports: JSON.parse(c.transports ?? '[]'), + })), + timeout: 60_000, + }); + + const ceremonyToken = storeEntry({ + challenge: options.challenge, + pendingUser: { userId, username: cleanName, displayName: cleanDisplay }, + }); + + res.cookie(CEREMONY_COOKIE, ceremonyToken, { ...BASE_OPTS, maxAge: 120_000 }); + logger.info({ username: cleanName }, 'Passkey registration ceremony started'); + res.json(options); + } catch (err) { + next(err); + } +}); + +router.post('/register/finish', async (req, res, next) => { + try { + const entry = consumeEntry(req.cookies?.[CEREMONY_COOKIE]); + res.clearCookie(CEREMONY_COOKIE, { path: '/' }); + + if (!entry?.challenge || !entry?.pendingUser) { + return res.status(400).json({ error: 'Registration ceremony expired or not started' }); + } + + const { challenge, pendingUser } = entry; + let verification; + try { + verification = await verifyRegistrationResponse({ + response: req.body, + expectedChallenge: challenge, + expectedOrigin: config.origin, + expectedRPID: config.rpId, + requireUserVerification: true, + }); + } catch (err) { + logger.warn({ err: err.message, username: pendingUser.username }, 'Passkey registration verification failed'); + return res.status(400).json({ error: 'Passkey verification failed' }); + } + + if (!verification.verified || !verification.registrationInfo) { + return res.status(400).json({ error: 'Passkey verification failed' }); + } + + const { credential } = verification.registrationInfo; + const db = getDb(); + const now = new Date().toISOString(); + + // Upsert user (handles both new registration and additional passkeys) + const existingUser = db.prepare('SELECT user_id FROM admin_users WHERE username = ?').get(pendingUser.username); + const userId = existingUser?.user_id ?? pendingUser.userId; + + if (!existingUser) { + db.prepare( + 'INSERT INTO admin_users (user_id, username, display_name, created_at) VALUES (?, ?, ?, ?)', + ).run(userId, pendingUser.username, pendingUser.displayName, now); + } + + db.prepare(` + INSERT OR REPLACE INTO admin_credentials + (credential_id, user_id, public_key, counter, device_type, backed_up, transports, created_at, last_used_at) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) + `).run( + credential.id, + userId, + Buffer.from(credential.publicKey).toString('base64'), + credential.counter, + credential.deviceType ?? null, + credential.backedUp ? 1 : 0, + JSON.stringify(credential.transports ?? []), + now, + now, + ); + + const user = db.prepare('SELECT * FROM admin_users WHERE user_id = ?').get(userId); + setSession(res, user); + logger.info({ userId, username: pendingUser.username }, 'Passkey registered'); + res.json({ ok: true, username: user.username, displayName: user.display_name }); + } catch (err) { + next(err); + } +}); + +// --------------------------------------------------------------------------- +// Authentication +// --------------------------------------------------------------------------- + +router.post('/login/begin', async (req, res, next) => { + try { + const db = getDb(); + const credCount = db.prepare('SELECT COUNT(*) AS n FROM admin_credentials').get().n; + if (credCount === 0) { + return res.status(404).json({ error: 'No passkeys registered — complete first-time setup' }); + } + + // No allowCredentials → browser picks from all passkeys registered for this RP + const options = await generateAuthenticationOptions({ + rpID: config.rpId, + userVerification: 'required', + timeout: 60_000, + }); + + const ceremonyToken = storeEntry({ challenge: options.challenge }); + res.cookie(CEREMONY_COOKIE, ceremonyToken, { ...BASE_OPTS, maxAge: 120_000 }); + res.json(options); + } catch (err) { + next(err); + } +}); + +router.post('/login/finish', async (req, res, next) => { + try { + const entry = consumeEntry(req.cookies?.[CEREMONY_COOKIE]); + res.clearCookie(CEREMONY_COOKIE, { path: '/' }); + + if (!entry?.challenge) { + return res.status(400).json({ error: 'Authentication ceremony expired or not started' }); + } + + const credentialId = req.body?.id; + const db = getDb(); + const storedCred = db.prepare('SELECT * FROM admin_credentials WHERE credential_id = ?').get(credentialId); + + if (!storedCred) { + return res.status(401).json({ error: 'Passkey not recognized' }); + } + + let verification; + try { + verification = await verifyAuthenticationResponse({ + response: req.body, + expectedChallenge: entry.challenge, + expectedOrigin: config.origin, + expectedRPID: config.rpId, + credential: { + id: storedCred.credential_id, + publicKey: Buffer.from(storedCred.public_key, 'base64'), + counter: storedCred.counter, + transports: JSON.parse(storedCred.transports ?? '[]'), + }, + requireUserVerification: true, + }); + } catch (err) { + logger.warn({ err: err.message }, 'Passkey authentication verification failed'); + return res.status(401).json({ error: 'Passkey verification failed' }); + } + + if (!verification.verified) { + return res.status(401).json({ error: 'Passkey verification failed' }); + } + + const { newCounter } = verification.authenticationInfo; + const now = new Date().toISOString(); + db.prepare('UPDATE admin_credentials SET counter = ?, last_used_at = ? WHERE credential_id = ?') + .run(newCounter, now, storedCred.credential_id); + + const user = db.prepare('SELECT * FROM admin_users WHERE user_id = ?').get(storedCred.user_id); + setSession(res, user); + logger.info({ userId: user.user_id, username: user.username }, 'Passkey login successful'); + res.json({ ok: true, username: user.username, displayName: user.display_name }); + } catch (err) { + next(err); + } +}); + +// --------------------------------------------------------------------------- +// Passkey management (session required — bearer key has no user context) +// --------------------------------------------------------------------------- + +router.get('/passkeys', requireSession, (req, res) => { + const db = getDb(); + const passkeys = db.prepare( + 'SELECT credential_id, device_type, backed_up, transports, created_at, last_used_at FROM admin_credentials WHERE user_id = ?', + ).all(req.adminSession.sub); + + res.json(passkeys.map(p => ({ + id: p.credential_id, + idMasked: `${p.credential_id.slice(0, 8)}…`, + deviceType: p.device_type, + backedUp: p.backed_up === 1, + transports: JSON.parse(p.transports ?? '[]'), + createdAt: p.created_at, + lastUsedAt: p.last_used_at, + }))); +}); + +router.delete('/passkeys/:id', requireSession, (req, res) => { + const db = getDb(); + const userId = req.adminSession.sub; + const count = db.prepare('SELECT COUNT(*) AS n FROM admin_credentials WHERE user_id = ?').get(userId).n; + if (count <= 1) { + return res.status(400).json({ error: 'Cannot remove your only passkey' }); + } + const result = db.prepare('DELETE FROM admin_credentials WHERE credential_id = ? AND user_id = ?') + .run(req.params.id, userId); + if (result.changes === 0) return res.status(404).json({ error: 'Passkey not found' }); + logger.info({ userId, credentialId: req.params.id.slice(0, 8) }, 'Passkey removed'); + res.status(204).end(); +}); + +module.exports = router; diff --git a/PatchProbe.Server/src/routes/enrollments.js b/PatchProbe.Server/src/routes/enrollments.js new file mode 100644 index 0000000..b89c172 --- /dev/null +++ b/PatchProbe.Server/src/routes/enrollments.js @@ -0,0 +1,158 @@ +'use strict'; + +const express = require('express'); +const crypto = require('crypto'); +const config = require('../config'); +const { getDb } = require('../db'); +const { requireAdmin } = require('../middleware/adminAuth'); +const logger = require('../logger'); + +const router = express.Router(); + +// --------------------------------------------------------------------------- +// Input validation +// --------------------------------------------------------------------------- + +function validateEnrollBody(body) { + const { machineName, publicKeySpki, deviceFingerprint } = body ?? {}; + if (typeof machineName !== 'string' || machineName.trim().length === 0 || machineName.length > 255) { + return 'machineName is required (string, max 255 chars)'; + } + if (typeof publicKeySpki !== 'string' || publicKeySpki.length === 0 || publicKeySpki.length > 4096) { + return 'publicKeySpki is required (base64 DER SPKI string)'; + } + if (deviceFingerprint !== undefined && + (typeof deviceFingerprint !== 'string' || deviceFingerprint.length > 255)) { + return 'deviceFingerprint must be a string (max 255 chars)'; + } + return null; +} + +// --------------------------------------------------------------------------- +// POST /api/enrollments +// --------------------------------------------------------------------------- + +router.post('/', (req, res) => { + const { enrollmentKey, machineName, deviceFingerprint, publicKeySpki } = req.body ?? {}; + + const validationError = validateEnrollBody(req.body); + if (validationError) { + return res.status(400).json({ error: validationError }); + } + + const db = getDb(); + let matchedToken = null; + + if (config.authEnabled) { + if (!enrollmentKey || typeof enrollmentKey !== 'string') { + logger.warn({ machineName, reason: 'missing_token' }, 'Enrollment rejected'); + return res.status(403).json({ error: 'Invalid or missing enrollment key' }); + } + + const tokens = db.prepare( + 'SELECT token, expires_at, max_uses, used_count FROM enrollment_tokens WHERE revoked_at IS NULL' + ).all(); + + const providedBuf = Buffer.from(enrollmentKey); + + // Compare against every token without short-circuiting to avoid timing oracle + for (const t of tokens) { + const storedBuf = Buffer.from(t.token); + const maxLen = Math.max(providedBuf.length, storedBuf.length); + const a = Buffer.alloc(maxLen); + const b = Buffer.alloc(maxLen); + providedBuf.copy(a); + storedBuf.copy(b); + if (crypto.timingSafeEqual(a, b)) { + matchedToken = t; + // Continue loop — do not break early + } + } + + if (!matchedToken) { + logger.warn({ machineName, reason: 'invalid_token' }, 'Enrollment rejected'); + return res.status(403).json({ error: 'Invalid or missing enrollment key' }); + } + + if (matchedToken.expires_at && new Date(matchedToken.expires_at) < new Date()) { + logger.warn({ machineName, reason: 'token_expired' }, 'Enrollment rejected'); + return res.status(403).json({ error: 'Enrollment token has expired' }); + } + + if (matchedToken.max_uses !== null && matchedToken.used_count >= matchedToken.max_uses) { + logger.warn({ machineName, reason: 'token_max_uses' }, 'Enrollment rejected'); + return res.status(403).json({ error: 'Enrollment token usage limit reached' }); + } + } + + // Validate the public key before storing anything + try { + const key = crypto.createPublicKey({ + key: Buffer.from(publicKeySpki, 'base64'), + format: 'der', + type: 'spki', + }); + if (key.asymmetricKeyType !== 'ec') { + throw new Error('Not an EC key'); + } + } catch { + return res.status(400).json({ error: 'Invalid public key — must be ECDSA P-256 SubjectPublicKeyInfo (DER, base64)' }); + } + + const sanitizedName = machineName.trim().slice(0, 255); + const sanitizedFp = deviceFingerprint?.trim().slice(0, 255) ?? null; + const now = new Date().toISOString(); + + // Re-enrollment: same fingerprint → rotate public key, preserve deviceId + if (sanitizedFp) { + const existing = db.prepare('SELECT device_id FROM devices WHERE device_fingerprint = ?').get(sanitizedFp); + if (existing) { + db.prepare( + 'UPDATE devices SET public_key_spki = ?, machine_name = ?, last_seen_at = ? WHERE device_id = ?' + ).run(publicKeySpki, sanitizedName, now, existing.device_id); + + if (matchedToken) { + db.prepare('UPDATE enrollment_tokens SET used_count = used_count + 1 WHERE token = ?') + .run(matchedToken.token); + } + + logger.info({ deviceId: existing.device_id, machineName: sanitizedName }, 'Device re-enrolled'); + return res.status(200).json({ deviceId: existing.device_id, message: 'Re-enrollment successful' }); + } + } + + // New device + const deviceId = crypto.randomUUID(); + db.prepare( + 'INSERT INTO devices (device_id, machine_name, device_fingerprint, public_key_spki, enrolled_at) VALUES (?, ?, ?, ?, ?)' + ).run(deviceId, sanitizedName, sanitizedFp, publicKeySpki, now); + + if (matchedToken) { + db.prepare('UPDATE enrollment_tokens SET used_count = used_count + 1 WHERE token = ?') + .run(matchedToken.token); + } + + logger.info({ deviceId, machineName: sanitizedName }, 'Device enrolled'); + res.status(201).json({ deviceId, message: 'Enrollment successful' }); +}); + +// --------------------------------------------------------------------------- +// GET /api/enrollments — admin-protected device list (backward-compat route) +// --------------------------------------------------------------------------- + +router.get('/', requireAdmin, (req, res) => { + const db = getDb(); + const devices = db.prepare( + 'SELECT device_id, machine_name, device_fingerprint, enrolled_at, last_seen_at, revoked_at FROM devices ORDER BY enrolled_at DESC' + ).all(); + res.json(devices.map(d => ({ + deviceId: d.device_id, + machineName: d.machine_name, + deviceFingerprint: d.device_fingerprint, + enrolledAt: d.enrolled_at, + lastSeenAt: d.last_seen_at, + revoked: !!d.revoked_at, + }))); +}); + +module.exports = router; diff --git a/PatchProbe.Server/src/routes/scans.js b/PatchProbe.Server/src/routes/scans.js new file mode 100644 index 0000000..cdf3876 --- /dev/null +++ b/PatchProbe.Server/src/routes/scans.js @@ -0,0 +1,102 @@ +'use strict'; + +const express = require('express'); +const crypto = require('crypto'); +const { getDb } = require('../db'); +const { requireAuth } = require('../middleware/auth'); +const logger = require('../logger'); + +const router = express.Router(); + +// --------------------------------------------------------------------------- +// POST /api/scans — ingest a scan payload from an enrolled device +// --------------------------------------------------------------------------- + +router.post('/', requireAuth, (req, res) => { + const payload = req.body; + + if (typeof payload !== 'object' || payload === null) { + return res.status(400).json({ error: 'Request body must be a JSON object' }); + } + if (typeof payload.collector?.machineName !== 'string' || payload.collector.machineName.trim().length === 0) { + return res.status(400).json({ error: 'Invalid payload: missing collector.machineName' }); + } + + const db = getDb(); + const id = crypto.randomUUID(); + const now = new Date().toISOString(); + const machineName = payload.collector.machineName.trim().slice(0, 255); + const deviceId = req.device?.device_id ?? null; + + let collectedAt = null; + try { + collectedAt = payload.collector.collectedAt + ? new Date(payload.collector.collectedAt).toISOString() + : null; + } catch { /* leave null */ } + + const ranAsAdmin = payload.collector.ranAsAdministrator ? 1 : 0; + const applicableUpdateCount = Array.isArray(payload.windowsUpdate?.applicableUpdates) + ? payload.windowsUpdate.applicableUpdates.length + : 0; + const pendingReboot = payload.pendingReboot?.anyPending ? 1 : 0; + + db.prepare(` + INSERT INTO scans + (id, device_id, machine_name, collected_at, ran_as_administrator, applicable_update_count, pending_reboot, raw_json, received_at) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) + `).run(id, deviceId, machineName, collectedAt, ranAsAdmin, applicableUpdateCount, pendingReboot, JSON.stringify(payload), now); + + logger.info({ id, machineName, deviceId }, 'Scan ingested'); + res.status(201).json({ id }); +}); + +// --------------------------------------------------------------------------- +// GET /api/scans — list scan summaries +// --------------------------------------------------------------------------- + +router.get('/', (req, res) => { + const db = getDb(); + const rows = db.prepare(` + SELECT id, device_id, machine_name, collected_at, ran_as_administrator, + applicable_update_count, pending_reboot, received_at + FROM scans + ORDER BY received_at DESC + `).all(); + + res.json(rows.map(s => ({ + id: s.id, + deviceId: s.device_id, + machineName: s.machine_name, + collectedAt: s.collected_at, + receivedAt: s.received_at, + ranAsAdministrator: s.ran_as_administrator === 1, + applicableUpdateCount: s.applicable_update_count, + pendingReboot: s.pending_reboot === 1, + }))); +}); + +// --------------------------------------------------------------------------- +// GET /api/scans/:id — return full scan payload +// --------------------------------------------------------------------------- + +router.get('/:id', (req, res) => { + const db = getDb(); + const scan = db.prepare('SELECT raw_json FROM scans WHERE id = ?').get(req.params.id); + if (!scan) return res.status(404).json({ error: 'Not found' }); + // Send raw stored JSON without re-parsing to preserve exact byte representation + res.set('Content-Type', 'application/json').send(scan.raw_json); +}); + +// --------------------------------------------------------------------------- +// DELETE /api/scans/:id +// --------------------------------------------------------------------------- + +router.delete('/:id', (req, res) => { + const db = getDb(); + const result = db.prepare('DELETE FROM scans WHERE id = ?').run(req.params.id); + if (result.changes === 0) return res.status(404).json({ error: 'Not found' }); + res.status(204).end(); +}); + +module.exports = router;