diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index d013ada..795bee1 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -66,7 +66,7 @@ Functions are procedural and single-call, not pipeline-aware. Skip the blocks un ### Global state `Initialize-*` functions populate `$global:OSDCloud*` variables; `Invoke-*` and `Get-*` functions read them. -Key globals: `$global:OSDCoreDevice`, `$global:OSDCloudDeploy`, `$global:OSDCloudWorkflowTasks`, `$global:OSDCloudWorkflowInvoke`, `$global:Architecture`, `$global:IsWinPE`, `$global:IsVM`, `$global:IsOnBattery`. +Key globals: `$global:OSDCoreDevice`, `$global:OSDCloudDeploy`, `$global:OSDCloudWorkflowTasks`, `$global:OSDCloudWorkflowInvoke`. Document any new global variables added. ### Naming @@ -80,7 +80,7 @@ Document any new global variables added. ### WinPE-specific code -- Guard WinPE-only logic with `$env:SystemDrive -eq 'X:'` or the `$global:IsWinPE` flag +- Guard WinPE-only logic with `$env:SystemDrive -eq 'X:'` flag - Place WinPE-only exported functions in `public/WinPE/` ## Workflows @@ -115,7 +115,7 @@ Version follows `YY.M.D.revision` format – update `ModuleVersion` in `OSDCloud ## Common pitfalls - `public/WinPE/` functions are **not loaded outside WinPE** – do not call them in normal-environment code. -- The module requires `curl.exe` to be present for download operations – validated in `Initialize-OSDCloudDeploy`. +- The module requires `curl.exe` to be present for download operations – validated in `Initialize-DeployOSDCloud`. - `HtmlAgilityPack.dll` type is loaded once; re-importing silently skips the Add-Type call but may conflict if another version is loaded first. - Analytics events (PostHog) are sent during workflow execution – see [PRIVACY.md](../PRIVACY.md) for opt-out details. - Commit scopes: `workflow`, `driver-packs`, `pe-startup`, `deployment`, `classes`, `catalog`, `core`, `wi-fi`, `main`. diff --git a/.github/instructions/osdcloud-catalog-update.instructions.md b/.github/instructions/osdcloud-catalog-update.instructions.md index cf59bd7..f329a16 100644 --- a/.github/instructions/osdcloud-catalog-update.instructions.md +++ b/.github/instructions/osdcloud-catalog-update.instructions.md @@ -219,4 +219,4 @@ Key differences: - **Omitting the build switch case** — a new OS XML will load without errors but produce zero OS options in the UX because every `` hits the `default { continue }` branch. - **Stale `surface.json` driver URLs** — `Get-OSDCoreDriverPackCatalogSurface` serves MSI URLs from `OSDCloud/core/driverpacks/surface.json`; if `UpdatePage` links change and the automated workflow has not run, deployed drivers may point to outdated or removed files. Run `.github/scripts/Update-MicrosoftCatalog.ps1` manually to refresh. - **Editing OEM XML snapshots manually** — Dell/HP/Lenovo XML is replaced wholesale from upstream; manual edits will be lost on the next snapshot refresh. -- **Adding a Windows version string to workflow configs without the catalog XML** — the UX will offer the version but `Get-OSDCloudCoreOperatingSystems` will return no matching ESD entries, causing `Initialize-OSDCloudDeploy` to throw. +- **Adding a Windows version string to workflow configs without the catalog XML** — the UX will offer the version but `Get-OSDCloudCoreOperatingSystems` will return no matching ESD entries, causing `Initialize-DeployOSDCloud` to throw. diff --git a/.github/instructions/workflow-tasks.instructions.md b/.github/instructions/workflow-tasks.instructions.md index 2ca4480..a3afa76 100644 --- a/.github/instructions/workflow-tasks.instructions.md +++ b/.github/instructions/workflow-tasks.instructions.md @@ -139,8 +139,7 @@ function step-phase-action { #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } ``` diff --git a/.github/skills/osdcore-operating-system-cloud-object/SKILL.md b/.github/skills/osdcore-operating-system-cloud-object/SKILL.md new file mode 100644 index 0000000..3bd6bcc --- /dev/null +++ b/.github/skills/osdcore-operating-system-cloud-object/SKILL.md @@ -0,0 +1,100 @@ +--- +name: osdcore-operating-system-cloud-object +description: "Use when identifying, mapping, reviewing, or changing $OSDCoreOperatingSystemCloudObject, Set-OSDCoreOperatingSystemCloudObject, Get-OSDCoreOperatingSystems, or Get-OSDCloudCoreOperatingSystems across the OSD and OSDCloud PowerShell modules." +argument-hint: "OS filters or code path, for example: Windows 11 25H2 amd64 Retail en-us" +--- + +# OSD Core Operating System Cloud Object + +Use this skill when working on `$global:OSDCoreOperatingSystemCloudObject` or `Set-OSDCoreOperatingSystemCloudObject` in code shared by the `OSD` and `OSDCloud` PowerShell modules. + +The important rule: the selected global object is module-native. Do not assume one property schema works everywhere. + +## Object Shape Detection + +Identify the selected object by its properties before consuming it: + +| Module shape | Strong indicators | Provider | +| --- | --- | --- | +| `OSD` | `Name`, `Version`, `ReleaseID`, `Architecture`, `Language`, `Activation`, `Build`, `Url`, `SHA1`, `SHA256` | `Get-OSDCoreOperatingSystems` | +| `OSDCloud` | `Id`, `OperatingSystem`, `OSName`, `OSVersion`, `OSArchitecture`, `OSActivation`, `OSLanguageCode`, `OSBuild`, `OSBuildVersion`, `FilePath`, `Sha1`, `Sha256` | `Get-OSDCloudCoreOperatingSystems` | + +Prefer module context when it is available: + +```powershell +$moduleName = $MyInvocation.MyCommand.Module.Name +``` + +Use property detection when an object is passed into helper code: + +```powershell +if ($OperatingSystemCloudObject.PSObject.Properties.Name -contains 'OSArchitecture') { + $objectShape = 'OSDCloud' +} +elseif ($OperatingSystemCloudObject.PSObject.Properties.Name -contains 'Architecture') { + $objectShape = 'OSD' +} +else { + throw 'Unable to identify operating system cloud object shape.' +} +``` + +## Equivalent Properties + +Use these equivalences when filtering, sorting, logging, or copying values into deployment globals. + +| Concept | OSD property | OSDCloud property | +| --- | --- | --- | +| Display id/name | `Name` | `Id` | +| Windows family | `Version` | `OSName` | +| Release id | `ReleaseID` | `OSVersion` | +| Architecture | `Architecture` | `OSArchitecture` | +| Language code | `Language` | `OSLanguageCode` | +| Activation | `Activation` | `OSActivation` | +| Full build | `Build` | `OSBuildVersion` | +| Major build | derive from `Build` | `OSBuild` | +| Download URL | `Url` | `FilePath` | +| SHA-1 | `SHA1` | `Sha1` | +| SHA-256 | `SHA256` | `Sha256` | +| File name | `FileName` | `FileName` | + +PowerShell property lookup is case-insensitive, but preserve the native property names when creating or serializing objects. + +## Selection Workflow + +1. Read `OSDCloud/private/core-operatingsystem/Set-OSDCoreOperatingSystemCloudObject.ps1` and the provider functions before editing. +2. Determine whether the call is running in `OSD`, `OSDCloud`, or helper/test code without a module name. +3. Load the matching catalog provider: + - `OSD`: `Get-OSDCoreOperatingSystems` + - `OSDCloud`: `Get-OSDCloudCoreOperatingSystems` +4. Normalize input filters before comparing: architecture and language should be lowercase; map `x64` to `amd64` where user input or catalog data can contain either spelling. +5. Filter with equivalent properties, not a single module schema. +6. Sort by the full build equivalent: `Build` for `OSD`, `OSBuildVersion` for `OSDCloud`. +7. Assign the original selected object to `$global:OSDCoreOperatingSystemCloudObject`. Do not reshape it unless the caller explicitly needs a separate compatibility object. +8. Log using the module-native name, build, and file name properties. +9. Validate with at least one `OSD`-shape object and one `OSDCloud`-shape object when practical. + +## Safe Access Pattern + +For shared consumer code, resolve values through a small local adapter instead of directly reading one schema: + +```powershell +$selectedOperatingSystem = $global:OSDCoreOperatingSystemCloudObject + +$operatingSystemName = if ($selectedOperatingSystem.OSName) { $selectedOperatingSystem.OSName } else { $selectedOperatingSystem.Version } +$operatingSystemVersion = if ($selectedOperatingSystem.OSVersion) { $selectedOperatingSystem.OSVersion } else { $selectedOperatingSystem.ReleaseID } +$operatingSystemArchitecture = if ($selectedOperatingSystem.OSArchitecture) { $selectedOperatingSystem.OSArchitecture } else { $selectedOperatingSystem.Architecture } +$operatingSystemBuildVersion = if ($selectedOperatingSystem.OSBuildVersion) { $selectedOperatingSystem.OSBuildVersion } else { $selectedOperatingSystem.Build } +$operatingSystemUrl = if ($selectedOperatingSystem.FilePath) { $selectedOperatingSystem.FilePath } else { $selectedOperatingSystem.Url } +``` + +Keep this adapter close to the consumer unless multiple consumers need it. If multiple consumers repeat the same mapping, add a private helper with comment-based help and `[CmdletBinding()]` following the repo PowerShell instructions. + +## Review Checklist + +- The function still supports both `OSD` and `OSDCloud` module contexts. +- It does not sort `OSDCloud` records only by `Build`, because that property belongs to the `OSD` shape. +- It does not use `.FilePath` for `OSD` objects or `.Url` for `OSDCloud` objects without a fallback. +- It does not overwrite `$global:OSDCoreOperatingSystemCloudObject` with a cross-module normalized object unless all callers have been reviewed. +- Error messages include the requested release, architecture, activation, language, and OS family/version. +- Any new PowerShell function follows the repo requirements: `[CmdletBinding()]`, comment-based help, `$Error.Clear()`, full cmdlet names, and the standard verbose timestamp pattern. diff --git a/CHANGELOG.md b/CHANGELOG.md index a65d64e..22272ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,78 @@ All notable changes to this project will be documented in this file. +## 26.9.8.1 - September 8, 2026 + +### Added + +- Added deployment disk selection and expanded deployment disk validation. +- Added OSDeploy license registration, license state management, and license help output. +- Added verbose workflow step diagnostics for deployment troubleshooting. +- Added WinPE startup profiles for restart and shutdown actions. +- Added a WinPEStartup guide and updated deployment, troubleshooting, and unattended USB documentation. + +### Changed + +- Module version bumped to `26.9.8.1`. +- Consolidated deployment, workflow, and device state objects used across deployment execution. +- Improved operating system and driver pack cache object handling, including deployment catalog state scoping and registered catalog refresh behavior. +- Preserved operating system language selections through deployment parameter resolution. +- Improved device identity handling and hashed the device identifier used for telemetry. +- Renamed device identity and license properties to use the current core naming conventions. +- Refreshed WinPEStartup initialization, command execution, module update, Wi-Fi, USB, and device error handling paths. +- Updated workflow step logging, status output, target disk checks, driver pack checks, and Windows image validation. +- Refactored driver pack catalog retrieval and update functions across Dell, HP, Lenovo, Panasonic, and Surface catalogs. +- Updated Windows 11 25H2 operating system catalog content to build `26200.9168`. +- Refreshed Dell and HP driver pack catalogs and Surface driver pack URLs. +- Updated deployment, feature, privacy, and workflow documentation and standardized Recast status messages. + +### Removed + +- Removed retired workflow assets and legacy workflow UI projects from unused channels. + +## 26.8.10.1 - August 10, 2026 + +### Added + +- Added `Initialize-DeployOSDCloud` as the new deployment initialization implementation with expanded deployment/device state handling and validation flow. +- Added cache and validation helpers across core systems: + - `Initialize-OSDCoreCache` + - `Get-OSDCoreDriverPackCacheObject` + - `Get-OSDCoreOperatingSystemCacheObject` + - `Test-OSDCoreDriverPackCloudObject` + - `Test-OSDCoreOperatingSystemCloudObject` +- Added workflow operating system helper functions: + - `Get-OSDCloudWorkflowSettingsOSFile` + - `Resolve-OSDCloudWorkflowOSActivation` + - `Test-OSDCloudWorkflowSettingsOS` +- Added deployment hardware override support for workflow-driven operating system selection constraints. +- Added deployment and device state snapshot exports for the revised deployment initialization flow. +- Added module driver pack catalog export support for temporary XML snapshots. +- Added repository documentation pages `docs/about_osdcorecache.md`, `docs/about_osdcoredevice.md`, and `docs/about_winpestartup.md`. +- Added the `osdcore-operating-system-cloud-object` Copilot skill for core operating system object mapping and maintenance. + +### Changed + +- Module version bumped to `26.8.10.1`. +- Refactored deployment initialization by replacing `Initialize-OSDCloudDeploy` usage with `Initialize-DeployOSDCloud` across deployment entry points (`Deploy-OSDCloud`, `Deploy-OSDCloudCLI`, and `Deploy-OSDCloudGUI`). +- Renamed module catalog initializer functions to align naming and intent: + - `Get-ModuleCoreDriverPacks` -> `Initialize-ModuleCoreDriverPacks` + - `Get-ModuleCoreOperatingSystems` -> `Initialize-ModuleCoreOperatingSystems` +- Centralized and reorganized cache handling by moving cache helpers from `private/core-device/` to `private/core-cache/` and improving USB cache object refresh behavior. +- Improved deployment startup behavior by continuing after initialization, removing unreachable initialization code, using resolved operating system cloud objects, and warning when custom workflow settings are supplied. +- Improved core operating system and driver pack selection reliability by validating cloud/cache objects, normalizing schema handling, and supporting file-path based operating system URL checks. +- Improved cache, operating system URL, device identity, and catalog initialization status logging for clearer troubleshooting. +- Improved workflow operating system resolution and parameter flow by centralizing OS settings selection and activation resolution logic. +- Updated workflow and task execution scripts with standardized informational logging markers and aligned step/test behavior for target disk, driver pack, and Windows image validation. +- Updated WinPEStartup components, including Wi-Fi and USB drive-letter initialization paths, to align with the revised deployment/core orchestration flow. +- Updated Microsoft Update Catalog save helpers and related driver workflow step behavior to match revised validation and logging patterns. +- Updated workflow UI `MainWindow` scripts across classic, default, dev, insiders, and vNext channels for consistency with the updated deployment flow. +- Updated repository guidance in Copilot instruction assets and catalog update instructions. + +### Removed + +- Removed legacy `Initialize-OSDCloudDeploy.ps1` in favor of `Initialize-DeployOSDCloud.ps1`. + ## 26.8.18.1 - August 18, 2026 ### Added @@ -68,7 +140,7 @@ All notable changes to this project will be documented in this file. ### Added -- Added WinPE startup profiles for `Deploy-OSDCloud` and `Show-OSDCloudDeviceInfo`. +- Added WinPEStartup profiles for `Deploy-OSDCloud` and `Show-OSDCloudDeviceInfo`. ### Changed @@ -262,7 +334,7 @@ All notable changes to this project will be documented in this file. add `INPUTS`/`OUTPUTS`/`NOTES` sections, and cross-link related pages. - Conceptual guides in `docs/`: - `getting-started.md` — installation, quick start, and cmdlet overview. - - `winpe-startup.md` — WinPE startup sequence, script hooks, USB profiles, + - `winpe-startup.md` — WinPEStartup sequence, script hooks, USB profiles, and `InvokeXxxCommand` behaviour. - `psoptions.md` — two-layer `PSDefaultParameterValues` system with full key reference table and override examples. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 950f791..4f1ac52 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -61,7 +61,7 @@ single-call and procedural. **WinPE-only code:** -- Guard any WinPE-only logic with `$env:SystemDrive -eq 'X:'` or `$global:IsWinPE`. +- Guard any WinPE-only logic with `$env:SystemDrive -eq 'X:'`. - Place WinPE-only exported functions in `public/WinPE/`. Functions in this directory are **not loaded** in a normal Windows session. diff --git a/FEATURES.md b/FEATURES.md index 2f59752..b5b10cb 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -6,7 +6,7 @@ --- -## WinPE Startup Orchestration +## WinPEStartup Orchestration `Invoke-WinPEStartup` automates everything between power-on and deployment — loading drivers, connecting to the network, and auto-updating OSDCloud — in a single command. Drop a JSON profile on a USB drive for site-specific settings without touching the boot image. Extend the sequence with custom PowerShell or a HTTPS URL at any phase. diff --git a/OSDCloud/OSDCloud.psd1 b/OSDCloud/OSDCloud.psd1 index da15c74..4aceae2 100644 --- a/OSDCloud/OSDCloud.psd1 +++ b/OSDCloud/OSDCloud.psd1 @@ -8,7 +8,7 @@ @{ # --- Identity --- RootModule = 'OSDCloud.psm1' - ModuleVersion = '26.8.18.1' + ModuleVersion = '26.9.8.1' CompatiblePSEditions = @('Core','Desktop') GUID = '2fbd5c65-79c7-4561-9a2e-c4a4eebc89c7' @@ -17,7 +17,7 @@ CompanyName = 'Recast Software' Copyright = '(c) 2026 Recast Software. All rights reserved.' Description = @' -PowerShell module for OSDCloud v2 deployment automation and WinPE Startup from recastsoftware.com. +PowerShell module for OSDCloud v2 deployment automation and WinPEStartup from recastsoftware.com. Includes operating system, driver pack, and device provisioning workflows. '@ diff --git a/OSDCloud/core/driverpacks/hp.xml b/OSDCloud/core/driverpacks/hp.xml index 6e1d847..4b209e3 100644 --- a/OSDCloud/core/driverpacks/hp.xml +++ b/OSDCloud/core/driverpacks/hp.xml @@ -97,7 +97,7 @@ - + Windows 11 64-bit, 25H2 @@ -221,4143 +221,4053 @@ - sp144691 - HP Engage Flex Mini IoT10 2019 Driver Pack + sp100259 + HP ProDesk 405 G4 SFF Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 1/24/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144691.exe - 435140224 - 7095772a9f53295b322ff87c89395448 - 8A1B384A3793530F87C1F6C55AC2A3314614CE0E03391C347748EDB3A255BC49 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144691.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144691.html - HP Engage Flex Mini IoT10 2019 Driver Pack + 11/26/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100259.exe + 847213848 + 7a126f3aea6f6736549fbf1510f8c41d + DB5E3C7888EA02183FC2EA8C1D249661CA269C710DD656FB15D9A7CCBEE438A8 + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100259.cva + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100259.html + HP ProDesk 405 G4 SFF Windows 10 x64 Driver Pack false - sp95271 - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - 7.00 A 1 + sp95547 + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 3/6/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95271.exe - 795097120 - 925a3f211818f60a4f459073cd903387 - 588ECE1E0863C8B0E44AE3D7DA6D46909A1DDEF5626CE4E2ABADFCF589D35683 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95271.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95271.html - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 4/5/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95547.exe + 808743040 + ad147a3345afc9357b8fd51f5e30440f + 6A712E6546150F21FCBF77235BB46152D82B3A49D754813071A2A44C29CC7C93 + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95547.cva + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95547.html + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack false - sp138786 - HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack - 4.00 A 1 + sp103616 + HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 3/10/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138786.exe - 821548608 - 2ab36aa22ead65c4294b69c625fe3a94 - D3F1252ECCB58A1510AC77D3653A5FD6F31881DD994A1CCC7A6401530E80F799 - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138786.cva - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138786.html - HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103616.exe + 759939728 + a8e48de3bb265a70be1655b2d8e42a69 + 4C2EBB7956A3FCEDBEFCDE10FBAC72CAC151FEEA2B26291612CA9AF6E6AB7168 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103616.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103616.html + HP Probook 6x0 G4 Windows 10 x64 Driver Pack false - sp112598 - HP RP9 G1 IoT10 2016 Driver Pack - 8.00 A 1 + sp99578 + HP Engage Flex Pro G1 Win10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 2/5/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112598.exe - 540807576 - fac67b5b2e4bec9734f0ad5633d7d321 - 1E75E8BEE4E3166BC7932A550C1CEAC40789E64ACC0F88B504978E600F5F9771 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112598.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112598.html - HP RP9 G1 IoT10 2016 Driver Pack + 10/15/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99578.exe + 818199480 + 529da75357d03befea35f3f9ad7c05dd + 1D09B21F3B45198C3A093A3D76A7CD95F7178985609FB45E8E1535A5130DB5E7 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99578.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99578.html + HP Engage Flex Pro G1 Win10 x64 Driver Pack false - sp106199 - HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack - 1.00 A 1 + sp138682 + HP ElitePro 6/800 G8 DM Win 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 7/16/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp106001-106500/sp106199.exe - 421442768 - b9e927408767eacaa1b9cda1060245c6 - 34F70C0BE2C147F4C4DB7A445EB5248D571EE70ACE4B37ABCD3C852E79BF5D27 - https://ftp.hp.com/pub/softpaq/sp106001-106500/sp106199.cva - https://ftp.hp.com/pub/softpaq/sp106001-106500/sp106199.html - HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack + 3/7/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138682.exe + 1449348440 + 8a5c35e715f8cbfa392d110a1f20f2c1 + 0FFF06ED333A11124C7F3CE1CDBCAACCAA2B6E2F4573861A1787316C92FD63D0 + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138682.cva + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138682.html + HP ElitePro 6/800 G8 DM Win 10 x64 Driver Pack false - sp174341 - HP ProBook/EliteBook 6 G1iR Windows 11 Driver Pack - 4.00 A 1 + sp79263 + HP Z1G3 Windows 10 x64 Driver Pack + 01.2017 A 2 Manageability - Driver Pack - 8/13/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174341.exe - 1434587368 - 9B1952FF6C336C880BBE15B2BD89A532 - 4BDFDB0182566F3F3409AAF424A062E7D24F76A66FAA0212CEB34E91F1A0BF0F - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174341.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174341.html - HP ProBook/EliteBook 6 G1iR Windows 11 Driver Pack - true + 3/7/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79263.exe + 500656024 + f148ce1463b6741be492a1669890bd1b + DEA59A9F36214900F4FDDAA513F9F78B89148F0E3A275F5CA4D2F0F8C0179773 + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79263.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79263.html + HP Z1G3 Windows 10 x64 Driver Pack + false - sp170009 - HP ZBook X G1i MWS Windows 11 Driver Pack - 3.00 A 1 + sp99581 + HP Engage One G1 Win10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 1/19/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170009.exe - 2525924968 - 5EEB27AE08F392FC85686285045DA288 - 9DA7474A6E02C2FD7275BAFF6DF57979E0E96CD75E84236B9B7A1A702EDEFB88 - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170009.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170009.html - HP ZBook X G1i MWS Windows 11 Driver Pack - true + 10/21/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99581.exe + 451078304 + 978bcc24ff84725dc82e7ca87d2f88a8 + 1817852E2588067F341525CAC5918D82361AF250F8E78864DAC2D37AAD7FB366 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99581.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99581.html + HP Engage One G1 Win10 x64 Driver Pack + false - sp173494 - HP EliteDesk 8 Mini G1a Windows 11 Driver Pack - 5.00 A 1 + sp158769 + HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/5/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173494.exe - 1118895672 - 21CEBCAA466D06C7D18F429C16D038FF - A97B3503E89EAEEBB0A8B816B9DDC452DB51B278F5E0AC1DDECEFD46A43CB138 - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173494.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173494.html - HP EliteDesk 8 Mini G1a Windows 11 Driver Pack + 5/12/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158769.exe + 1421640048 + 836D0323641908DA0CA6907840C91E05 + EA9FAF04936EE7047F2E5D572C56C507D89F11F3A11BE47E895792ADAABBBD86 + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158769.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158769.html + HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack true - sp113369 - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack - 3.00 A 1 + sp171406 + HP Z2G9 Windows 11 x64 Driver Pack + 12.00 A 2 Manageability - Driver Pack - 4/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113369.exe - 1689578152 - 01c0c133ecb0567e9cb3f2a057b0b573 - 42C2B0E53BB6D7F4ADE52ACCB770BDF3A0C34EFCBB53730C94888F4C8E551ABA - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113369.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113369.html - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack + 2/27/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp171001-171500/sp171406.exe + 3938258072 + 4793F51B5C459B85B4B37BC11EF8351D + 683282DB8B112C41E8FE1BA3FC305538AAD07494751F9686316DCB5C0222EE96 + https://ftp.hp.com/pub/softpaq/sp171001-171500/sp171406.cva + https://ftp.hp.com/pub/softpaq/sp171001-171500/sp171406.html + HP Z2G9 Windows 11 x64 Driver Pack false - sp144389 - HP ProBook x360 G5 Windows 11 Driver Pack + sp172541 + HP EB/ZB 8 G2i NB/MWS Next Gen Windows 11 Driver Pack 2.00 A 1 Manageability - Driver Pack - 1/20/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144001-144500/sp144389.exe - 829927528 - b2875cfafe0c19c00255f49886efe671 - 90DA21DA33EFDA8CF4841EF0637AD653E239EA0F8B7AB43685E3062DA39D20F0 - https://ftp.hp.com/pub/softpaq/sp144001-144500/sp144389.cva - https://ftp.hp.com/pub/softpaq/sp144001-144500/sp144389.html - HP ProBook x360 G5 Windows 11 Driver Pack + 4/22/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172541.exe + 2634191824 + AC411A848E1D8D1D72EAE70824114066 + EF3EB39A950040005158C04B7A78EB0637478817B970F7D520EA32095E968039 + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172541.cva + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172541.html + HP EB/ZB 8 G2i NB/MWS Next Gen Windows 11 Driver Pack true - sp110547 - HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack - 2.00 A 1 + sp101210 + HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 10/21/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110547.exe - 1812322360 - d9fe5fa66024448d8633b28e185fc664 - 94F8266B7D70927917134589456D9B6802C85C642A6C9592A7902CD2854CA139 - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110547.cva - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110547.html - HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack + 1/6/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101210.exe + 795385392 + 07f4c901060dd0f33df5b57ac0f16207 + F11CDFDA050B1F78268618E4C25AEBA8A1FC571B75D8A95F6D538084F360E7CE + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101210.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101210.html + HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack false - sp149061 - HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack - 2.00 A 1 + sp137144 + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 8/30/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149061.exe - 1577665768 - ab04b70048fd0db3e3dabbb36f4594c3 - BF88893BFA6CED2002893211C4201C317292F25A0FC4032046194227A3407774 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149061.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149061.html - HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack - true + 1/20/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp137001-137500/sp137144.exe + 1281754800 + 46ba0ae7ccc64215ff5f8a1bb102b86d + A2579561A34CE23D32238E79183B9047C0BA3360FA239FF96D665B2A09FA8667 + https://ftp.hp.com/pub/softpaq/sp137001-137500/sp137144.cva + https://ftp.hp.com/pub/softpaq/sp137001-137500/sp137144.html + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + false - sp138326 - HP Elite Dragonfly G2 Windows 10 x64 Driver Pack - 5.00 A 1 + sp158128 + HP Pro x360 Fortis G11 Windows 11 Driver Pack + 7.00 1 A Manageability - Driver Pack - 2/9/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138326.exe - 1274612680 - e1b8e5ca822cdb597fabebfe9de43c28 - 4E0309AFEF87951DFE4C06A0775BD906C0C005F92B7EA6916AA47BF5BF7187DD - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138326.cva - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138326.html - HP Elite Dragonfly G2 Windows 10 x64 Driver Pack + 4/27/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158128.exe + 1335778600 + F4DEB25B01F40C494592AF3FCD52F5F2 + 7F1C61FA4AC9BE444FC4066D9BB434669306E537A926B674E9FED97741CF0657 + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158128.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158128.html + HP Pro x360 Fortis G11 Windows 11 Driver Pack false - sp95002 - HP ProDesk 405 G4 DM Win 10 x64 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 4/2/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95002.exe - 361739704 - 7a59fa69de83fb3400867b04505074f8 - E633F403198406FAC3CE30D0D9C84AFF5EAFF94A29F106C013F757D1EABB9987 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95002.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95002.html - HP ProDesk 405 G4 DM Win 10 x64 Driver Pack - false + sp173432 + HP EliteDesk 8 SFF G2a Desktop Next Gen AI Windows 11 Driver Pack + 1.OO A 1 + Manageability - Driver Pack + 6/1/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173432.exe + 2321550896 + 9C14DBB8F858E992045139B6C6B248E8 + 2C7C9A697494FB3873B12DD3275390DD69908D4FB713006D4EE76C5450C665B1 + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173432.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173432.html + HP EliteDesk 8 SFF G2a Desktop Next Gen AI Windows 11 Driver Pack + true - sp135909 - HP Z2G8 Windows 10 x64 Driver Pack - 3.00 A 1 + sp72465 + HP Z230 Workstations Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 10/15/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135909.exe - 1665735408 - ce13a0061efd1271421288c8df95beb8 - 852B8842F8A51995A637CDF31EC9430FFA38B105D526E4B040393D67C2E4E23D - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135909.cva - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135909.html - HP Z2G8 Windows 10 x64 Driver Pack + 8/16/2015 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72465.exe + 764891304 + 0607fea96431a0d60f7c2a31b8009ae1 + 4A5B5610AEEBC7899E4AD475208C1C59068F8A94FFA97CA01A8B50859A67DDDB + https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72465.cva + https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72465.html + HP Z230 Workstations Windows 10 x64 Driver Pack false - sp103624 - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack - 9.00 A 1 + sp98435 + HP MP9 G4 Win10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103624.exe - 759900504 - b39131e66ad05419849a1d25b08f9ead - 3A2A578D1CAFFD075741D700E52F5DF4B7E3D16231D073404E6CB7A34E5A756D - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103624.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103624.html - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 7/16/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp98001-98500/sp98435.exe + 820782632 + 2b81ad0f12589ef1cca87f7ba03354f7 + 6511E9D92B8B6C3C2D3D44F2F3351BB46F8B7C80B5874403B3D7759421B7410E + https://ftp.hp.com/pub/softpaq/sp98001-98500/sp98435.cva + https://ftp.hp.com/pub/softpaq/sp98001-98500/sp98435.html + HP MP9 G4 Win10 x64 Driver Pack false - sp80306 - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + sp114213 + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack 7.00 A 1 Manageability - Driver Pack - 5/31/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80306.exe - 1036823336 - ee95f68769edede6533127b2e95e14bb - 2FE74B1F5D56DE2F500499D2AAC24FDBD4BA1EE3F4CCEB648265ED429AD9DFD7 - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80306.cva - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80306.html - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + 6/17/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114213.exe + 1113242904 + 59b37ee6bf217fdae0d4d0c795976f05 + F8E84CE2E77A86E307D22BF164A3731305F45A8CB572267503BD0CCDAC2D2394 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114213.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114213.html + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack false - sp114132 - HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack - 9.00 A 1 + sp113588 + HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/7/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114132.exe - 1138767664 - 9d73cd474f05105fbdc2eedcd85738d2 - 795AC31E48EDF3757492D818B4C1CE55A62A6596A67039995417840498466E8E - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114132.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114132.html - HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack + 5/3/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113588.exe + 1650063784 + c37bd28d8d7a4a7640f1fdb88d088994 + 72E198AD593A55A56E107758BF267C7C453BD6C08E37CFC90028D04752860B20 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113588.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113588.html + HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack false - sp101758 - HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack - 10.0 A 1 + sp114275 + HP EliteBook x360 830 G8 Windows 10 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/26/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101758.exe - 759805984 - 8c7326fafeb107739327e976cee2968a - 1AFAB335BD55BDFAECA44B8B9B20EA8D3677BC9438AB96B6532479F9E4A00CC1 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101758.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101758.html - HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack + 6/25/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114275.exe + 1347239392 + 788327148efa1b8f07877544afd4f6ad + FDEFC84DF08EF4E6FAAAA56DF3C7667741477473E2947EDBA0F52DAE499EDBD9 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114275.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114275.html + HP EliteBook x360 830 G8 Windows 10 Driver Pack false - sp155181 - HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack - 3.00 A 1 + sp84801 + HP Z6/Z8 Windows 10 x64 Driver Pack + 2.2018 C 1 Manageability - Driver Pack - 9/23/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155181.exe - 1577656864 - D0D5FBEF9B7FBC5AA347394809F2D9C9 - B85E4B20CBA381C042792A21CA6270DF5BC9968776A24785CAA4FF9112D9F9EC - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155181.cva - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155181.html - HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack - true + 2/21/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84801.exe + 1031299552 + 456884612f9f84472a05111b3e924b47 + 6E8125A71EE50DF5D5710FD895622E0966570DAD43FC049205F3E4062DC20251 + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84801.cva + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84801.html + HP Z6/Z8 Windows 10 x64 Driver Pack + false - sp84799 - HP Z240 Windows 10 x64 Driver Pack - 2.2018 H 1 + sp157679 + HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 2/21/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84799.exe - 1027075144 - bce3eb025575fab4f83e40af4b4e3a19 - E272426CC57083C8A710A5661443A8B9813301E3DF0E951BF686E724ED64BC22 - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84799.cva - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84799.html - HP Z240 Windows 10 x64 Driver Pack + 11/27/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157679.exe + 1998501448 + 4E4DACC2C9E69764B2747589933E8033 + 3F6F592F32D4FAC20B30C74D2E15FB074ABA0CAD5686278C33E7D311B06F088A + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157679.cva + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157679.html + HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack false - sp110182 - HP EliteBook x360 830 G7 Windows 10 Driver Pack - 2.00 A 1 + sp158332 + HP Z2 Mini G1i Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 9/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110182.exe - 1127346672 - af0356076745a11742dd9c7d1571a0da - BB2D9F7C3A25EAE28CD7B1842402B0F71331CFEC1DFC56C4A90E64644CE47DF2 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110182.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110182.html - HP EliteBook x360 830 G7 Windows 10 Driver Pack + 4/23/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158332.exe + 2143883344 + 89F44D2BE675C53C885A81B615D98258 + 9BCB77C3EDB5FF8B71BA849D8B3619561D99920856D8CDFDB6F8522E332ACFA0 + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158332.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158332.html + HP Z2 Mini G1i Windows 10 x64 Driver Pack false - sp114233 - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack - 11.00 A 1 + sp93539 + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 15.0 A 1 Manageability - Driver Pack - 6/21/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114233.exe - 1226433000 - dada9462e89814a6ab255bac48e2b52f - 460971C37A8613DD89F32028212F6FEF7B733A461049E92C80BC78FA8C3F2C47 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114233.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114233.html - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 1/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93539.exe + 1010426232 + 4b689f95c5a93c9179d183cb48cff59a + E086CE2C70E80709A018F0DFA9BB562FAE5E934C1CA0018BA2F25FFBC89F6683 + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93539.cva + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93539.html + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack false - sp136309 - HP ElitePro 4/805 G6 SFF Win 11 Driver Pack - 1.00 A 1 + sp110579 + HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 11/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136309.exe - 1544174872 - 6d207d56be308b7b70e919f28e4f1114 - 9569BB3EECE8C741005FAB46FC9A78981CEBA8D99976F48DBB7680C4B122F550 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136309.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136309.html - HP ElitePro 4/805 G6 SFF Win 11 Driver Pack + 10/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110579.exe + 1463645216 + 2fde37e930a800ef78b5c1903092a487 + E4814767EE35395B36C72B8A4F35F9DDD7ED1A683507926B528860B0AD803FCB + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110579.cva + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110579.html + HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack false - sp110346 - HP EliteDesk 705 G5 Windows 10 x64 Driver Pack - 9.00 A 1 + sp80906 + HP EliteDesk 705 G2 Win10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 10/5/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110346.exe - 1011446368 - 913c8e25162c9c2aad21a330bba5d467 - 4A3276F63972B491534B486B3908377B50CC39565942A6E5F3B8488583393D26 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110346.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110346.html - HP EliteDesk 705 G5 Windows 10 x64 Driver Pack + 6/23/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80906.exe + 790596096 + d24899cf28f23e2ff88cabc1b1f136a1 + B33CF9306110B32772A719D4E7960B6D8DAF3CA16741EBD4B6653CEF97BA4162 + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80906.cva + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80906.html + HP EliteDesk 705 G2 Win10 x64 Driver Pack false - sp158222 - HP ZBook Fury G10 MWS Windows 11 Driver Pack - 5.00 A 1 + sp173617 + HP Pro/EliteBook 4/6 G2i NB AI Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/1/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158222.exe - 2277479456 - 0E65A9C7D166D1B11520F53D960BAB82 - 094A9BABC63206108F3FA10903E92C24D7A3E8F0A7945991FAD2F8EB40AB9149 - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158222.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158222.html - HP ZBook Fury G10 MWS Windows 11 Driver Pack - false + 6/19/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173617.exe + 2531450008 + 14BAE94CE86A40D5685388F4DF6ADE16 + 73F36094F8E29A72C7DC3E6AF43ECC3EA1470993C5842A5EA07D2DD91ECC0468 + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173617.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173617.html + HP Pro/EliteBook 4/6 G2i NB AI Windows 11 Driver Pack + true - sp102120 - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack - 11.0 A 1 + sp142670 + HP Elite/ZBook 8x0 G8 Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 3/25/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102120.exe - 962462448 - 6a28d3a90fae65777553933955d2142a - 83E45B1A72B5E47A50E69667C59FA55820AC78E0419FE34EFB6B91B4F716BBCB - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102120.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102120.html - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + 9/27/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142670.exe + 1500744608 + a0f256cb8ac16a3f65117af20567c692 + C5EA48AFDA2C818E3A5E59734F0CE721F157D4C06622D98AB92CCB504DFABB87 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142670.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142670.html + HP Elite/ZBook 8x0 G8 Windows 11 Driver Pack false - sp103626 - HP Probook 6x5 G4 Windows 10 x64 Driver Pack - 8.00 A 1 + sp167303 + HP EliteBook 6 G1a Notebook Next Gen Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103626.exe - 939346512 - 02ee1fa293c350f855c7bc44d4d1680b - E36F888AFF06BEDF24BF965009F490E5A64543ADCB88DF000B227BDC28659285 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103626.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103626.html - HP Probook 6x5 G4 Windows 10 x64 Driver Pack - false + 12/11/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167303.exe + 1474404760 + 803AD603A93AF6BF93C9E76CE8D5900F + D401F1483BB0F6F7E225FCC957725CCE1FF3B5C7640B1E97C6518FBA5F038AEC + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167303.cva + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167303.html + HP EliteBook 6 G1a Notebook Next Gen Windows 11 Driver Pack + true - sp110267 - HP Probook 6x0 G8 Windows 10 x64 Driver Pack - 1.00 A 1 + sp158219 + HP Elite Dragonfly G4 Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 9/28/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110267.exe - 1618191344 - 88cf767acc51463efa897a6c41a15d72 - 57C0BBFE9EBC03E0F608833EDB7DF070BBCB58F08A663A0B4A562506994244B7 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110267.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110267.html - HP Probook 6x0 G8 Windows 10 x64 Driver Pack + 12/3/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158219.exe + 1541910056 + 9E95595BEA6A0AD09DCAD55333C16D86 + DC95398BC1C1BFACEFBB2133EB1600ED60286EB5D42EEA9B02F1815051FC047B + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158219.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158219.html + HP Elite Dragonfly G4 Windows 11 Driver Pack false - sp110181 - HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack - 3.00 A 1 + sp100851 + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + 14.0 A 1 Manageability - Driver Pack - 9/21/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110181.exe - 1570692072 - 1bd9927ccd69e31eff5edfe7b609f362 - C7600B7FFA34F56C480616D74B5DBF2CF6C0B7E36A592249467057BA2338E6E9 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110181.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110181.html - HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack + 12/19/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100851.exe + 842398592 + 1495117eec0ea56919ccca7b0f5beb65 + DA567C935024ACE46A30C0DB44ABAA17C70BBD4C8FDB696E284EF16B10E9BF30 + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100851.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100851.html + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack false - sp99588 - HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack - 3.00 A 1 + sp134540 + HP ProBook x360 11 G6 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 10/17/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99588.exe - 832327416 - a178e51dd931676497168a7014185bb1 - 8342C3984EDD09DB2D15FA81B640F4328FB243F0C59A83E56774F33420BEC45B - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99588.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99588.html - HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack + 9/15/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp134501-135000/sp134540.exe + 676683208 + d734e018d1bea77660962328670e0396 + 02F42AA7F681088123981CFB902DD00552F2A558CED69EBB292CD1DE30226E4C + https://ftp.hp.com/pub/softpaq/sp134501-135000/sp134540.cva + https://ftp.hp.com/pub/softpaq/sp134501-135000/sp134540.html + HP ProBook x360 11 G6 Windows 10 x64 Driver Pack false - sp168371 - HP Engage Flex Mini G2 Windows 11 IoT Driver Pack - 3.00 A 1 + sp143619 + HP Pro x360 435 G9 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/15/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168371.exe - 1331878392 - A2D486E818A52D07C8DFAA050C0327E6 - 851BC797348393405AF5272AEDC8CF0E5A45B9C56994C79BF8C238352229644C - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168371.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168371.html - HP Engage Flex Mini G2 Windows 11 IoT Driver Pack + 11/29/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143619.exe + 883740304 + f642220ff0feb254e0a41be48f6783df + 5CDF29AB7C04F6A9111114BD06BCDB213EA17D113AE6767BAEF2EABF6B08B133 + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143619.cva + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143619.html + HP Pro x360 435 G9 Windows 11 Driver Pack true - sp105836 - HP ElitePro 4/6/800 G6 DM/SFF Windows 10 x64 Driver Pack - 1.00 A 1 + sp142807 + HP ProBook 4x5 G7 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 7/3/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105836.exe - 409501336 - 35304ed331018a2639886ac40ef8edaa - 8E9B84FDCF6CAA7CBE7A843CAA22EA629C5FD6BB696325C6AD76B73669EE8060 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105836.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105836.html - HP ElitePro 4/6/800 G6 DM/SFF Windows 10 x64 Driver Pack + 10/6/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142807.exe + 644062008 + e8027001342276ac5f3be563c7c8ca72 + 89692D165C4A886BD4E23DA26A7739B21BE28A5DBDEBE06EAC46482B3797B31C + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142807.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142807.html + HP ProBook 4x5 G7 Windows 11 Driver Pack false - sp145103 - HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack - 4.00 A 1 + sp155663 + HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 3/8/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145103.exe - 989820328 - 1bbd521870e005a349315eaae345569f - 9AD96446F665C38F0889F2D9893C66F8663B57CA35E54D2D4D64E1E885C751D6 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145103.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145103.html - HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack + 11/21/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155663.exe + 1181325192 + BF66B1BF0295FBE7A21380FC631552FA + 35AD33E117AD6073B617229D3E790DF5E12839B184AC1E3A9F5948584F123148 + https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155663.cva + https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155663.html + HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack true - sp143133 - HP ElitePro 4/805 G8 SFF Windows 11 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 10/20/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143133.exe - 1573476968 - f27245d0c03725ecfb3689f5214a2cef - C9A6103A97299672488777EAAFBD770AF60B874AB86EAAD43FE454E9F7D55DA5 - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143133.cva - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143133.html - HP ElitePro 4/805 G8 SFF Windows 11 Driver Pack - false - - - sp144660 - HP Engage Flex Pro G1 IoT10 2019 Driver Pack - 9.00 A 1 + sp95328 + HP EliteDesk 705 G3 Win10 x64 Driver Pack + 15.0 A 1 Manageability - Driver Pack - 1/18/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144660.exe - 907224632 - 8b46ea12db57d46ce0a8a3c5775fb4bc - 89F575DC018D87496B1594F3561DC8710CE38249040BCE91C192D15C0B9F80D1 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144660.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144660.html - HP Engage Flex Pro G1 IoT10 2019 Driver Pack + 3/12/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95328.exe + 686161672 + dd0616bfbb4fa4b1daddd27e429bc05e + ED62A85FCF27140F7D2ACB2D1460CD54AF2440775D2F266CD39D0974F2D51BF2 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95328.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95328.html + HP EliteDesk 705 G3 Win10 x64 Driver Pack false - sp151314 - HP Engage Flex Pro G2 Win11 x64 Driver Pack + sp149192 + HP ZBook/EliteBook 8x5 G10/A Windows 10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 2/5/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151314.exe - 1619375560 - 6cd071f1478fdc646eb2519ff5a45939 - 6DE42741E2F6703C570E7B20D00E4A3A2E23411E5D5DCD0934EAD5E78818300B - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151314.cva - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151314.html - HP Engage Flex Pro G2 Win11 x64 Driver Pack + 9/7/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149192.exe + 1049260176 + 51787d5ae2f96ca2017ac22968e51092 + 128AACAF20939013665A2162427B13C21C3673EB74F73DD88D6170913781C383 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149192.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149192.html + HP ZBook/EliteBook 8x5 G10/A Windows 10 x64 Driver Pack true - sp110211 - HP Z6/Z8 Windows 10 x64 Driver Pack - 4.00 A 1 + sp173508 + HP Pro/Elite Mini 4/6/800 G9 Windows 11 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 9/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110211.exe - 994756712 - 094cc982c0d7d7db9fefcfe49a70a434 - ADE5A9CA98DEA30D015FEC4FB0F1C27D6DC075596925D1945677394D6248DEDE - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110211.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110211.html - HP Z6/Z8 Windows 10 x64 Driver Pack - false + 6/22/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173508.exe + 1249797176 + 91A0214A287E07915719D67A43CC482D + 97C7F622DF28276095EA455AACA124C6EF5671993BF32375C94603648D90CE1D + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173508.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173508.html + HP Pro/Elite Mini 4/6/800 G9 Windows 11 Driver Pack + true - sp138465 - HP Engage Flex Mini Win10 x64 Driver Pack - 3.00 A 1 + sp89032 + HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 2/18/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138465.exe - 1440739992 - 94510162af7be989394a7efabd05acfb - 686F0D4E7FC0373F4963D6A9513EA250F7FA62AFF71A138C2AC6E7D9D5AA6EAB - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138465.cva - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138465.html - HP Engage Flex Mini Win10 x64 Driver Pack + 7/17/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89032.exe + 606082768 + dafdd80b8072ac3e7b4cbe88708aba90 + 74F0276EC58B0943A3AC192B61DA90B73C1A146D7A81985611F2C0C664306388 + https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89032.cva + https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89032.html + HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack false - sp140725 - HP Probook 6x0 G7 Windows 11 Driver Pack - 1.00 A 1 + sp102088 + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 6/17/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140725.exe - 1220001096 - d007d400d2980eaac36bde0a8215a52b - A81DEC0B8D2E36FAC12C1124756FFCF3BFA0A5B00678C629B76D2E9D27E44630 - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140725.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140725.html - HP Probook 6x0 G7 Windows 11 Driver Pack + 3/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102088.exe + 712510408 + fcfed2f5e9fddf1be030e8ae57ada7c9 + 03DCCF436C08B4033338DE73DF1D857BE44F21761E67CF15AA2DA6F54C3C81E6 + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102088.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102088.html + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack false - sp110765 - HP EliteBook x360 830 G6 Windows 10 Driver Pack - 6.00 A 1 + sp154019 + HP Z2G9 Windows 11 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 10/28/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110765.exe - 997641944 - 1714a363f65b6f36d861074409e1e63a - E5DF6F2EA6219C8077A1661EFC0D157E1709E284A38F0F977EE79EFB0B0026F5 - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110765.cva - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110765.html - HP EliteBook x360 830 G6 Windows 10 Driver Pack + 8/5/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154019.exe + 3465271000 + 8C0779502CCD56E90325EB57726117B7 + AE1A58871B287DF7623A90CA8C3C355745443FAE567187C04F81E0E3BCC5F943 + https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154019.cva + https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154019.html + HP Z2G9 Windows 11 x64 Driver Pack false - sp151654 - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Win 11 Driver Pack - 7.00 A 1 - Manageability - Driver Pack - 3/12/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151654.exe - 3055277696 - 96a21c4aa6f99fe838a14d4bd6549773 - A5EB49BFD38D36243E9B978546E88625AD1D22E752680B2DE835C4A854D96AA8 - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151654.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151654.html - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Win 11 Driver Pack - true - - - sp88921 - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack - 2.00 A 1 + sp100225 + HP ZBook x2 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 7/16/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88921.exe - 1067495344 - 66f7abcc6339dda76e0e99bf2754841c - 5FD49C45687AB02B8E5B86CDC6DD1CDF2BEA99BC3357A757601E9E6EDA660478 - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88921.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88921.html - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 11/23/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100225.exe + 674157264 + 878b8920506b9f730ecbb0d5043df1b9 + 0131772000B50E8BD42CDD5696FC7A2A282B6C04DF41EB091A1E9021A1C3EAC8 + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100225.cva + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100225.html + HP ZBook x2 Windows 10 x64 Driver Pack false - sp144687 - HP Engage One Pro AIO Win10 x64 Driver Pack - 5.00 A 1 + sp158075 + HP Pro x360 Fortis 11 G10 Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 1/20/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144687.exe - 711633264 - 93bfd54100eb0626db69a6552bc317cf - 84C1C776D2EE369889584EEC917DACB322F91D20CF34941A88CD605555EC50FC - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144687.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144687.html - HP Engage One Pro AIO Win10 x64 Driver Pack - true + 4/25/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158075.exe + 1264115040 + 12E0F8BC460B216146899DB9378F985D + 1ABEA9DE6685B6E58A4065DBC5715058FC860F289F73233E48400BD87F8D0A70 + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158075.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158075.html + HP Pro x360 Fortis 11 G10 Windows 11 Driver Pack + false - sp145706 - HP ProOne 440 23.8 G9 AIO Windows 10 x64 Driver Pack + sp149134 + HP Elite x2 G8 Tablet Windows 11 Driver Pack 4.00 A 1 Manageability - Driver Pack - 6/15/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145706.exe - 1287486768 - 0085dd45b7e06cd65371e547d9f9bd4b - 5F72BDEF9ECC23F7F43D3A275B551578B3BE09CE95EA043F53C9CA63DD259ECE - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145706.cva - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145706.html - HP ProOne 440 23.8 G9 AIO Windows 10 x64 Driver Pack + 9/13/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149134.exe + 1081527392 + bb4747ebe3a27ecc6c52c5e70514ad90 + 36A268E638D45BC7A0C357330D23D94D492FB055AD0DCDD83D92C2C9F073D0DE + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149134.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149134.html + HP Elite x2 G8 Tablet Windows 11 Driver Pack true - sp95459 - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + sp95457 + HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95459.exe - 593979520 - a75c2aeadf5ad3d313515df990f6c279 - C4883B6BED20C4DD4DA7C6EFD5DE24176E24991BE2CC01B558830CD2681247E1 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95459.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95459.html - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95457.exe + 780404384 + e4854b947b8c1af474ddc4b5aa485288 + FF1ACFE395016AB8E9FAAAB95CBB0C9BB8171A718EC5F171E128B6C215E99514 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95457.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95457.html + HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack false - sp155186 - HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack - 7.00 A 1 + sp99723 + HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 11/27/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155186.exe - 2065787272 - DAF5D3EC0A949B6B146E57EFDFCD72DE - 651F166A6330053095F6AA07C200063B828714958EA79CD1412447D120E9B065 - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155186.cva - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155186.html - HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack - true + 10/21/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99723.exe + 816261432 + 57cca03f4faf25b7afcad951e8d332e5 + 7C5D2F26E57E6485C37A8E8CE3C967276FEE6CBDF062031D87ABE6DB161B7972 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99723.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99723.html + HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack + false - sp101326 - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - 10.0 A 1 + sp151268 + HP ProOne 440 23.8 G9 AIO Win 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 1/10/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101326.exe - 946233848 - 286b9226fc7ebc47d7d8bce9866239eb - 43F7DC8FE38BF4DB548509E637B85CFB7B1F3D3D933249FBC66EBB14B51D14C2 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101326.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101326.html - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - false + 2/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151268.exe + 1493086680 + e66290234a3acc517b1ccc831ad18a0c + 7A6AABBEF5697E20FC8F765E12C14FEC1B28215CFE5EB44BDA65238CD0595848 + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151268.cva + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151268.html + HP ProOne 440 23.8 G9 AIO Win 11 Driver Pack + true - sp139592 - HP Z2G8 Windows 11 x64 Driver Pack - 2.00 A 1 + sp110783 + HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 4/15/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139592.exe - 1732061872 - b7f5760af7ae4aad5b50e7798f94e135 - 9913C7C7237655F50F9025563CCCD0DD28AD65E6263BA5FE71B3240942E55656 - https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139592.cva - https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139592.html - HP Z2G8 Windows 11 x64 Driver Pack + 10/29/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110783.exe + 1021829216 + 3f9bfdea0b8faf7d0bf99cc6787197ea + 196D434378446EDF9846C9093C4E1255CA7687532F69D354CDDA27BB364C4479 + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110783.cva + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110783.html + HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack false - sp168855 - HP EliteBook 6 G1i AI Windows 11 Driver Pack - 4.00 A 1 + sp150831 + HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 1/8/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168855.exe - 2557857016 - 0592F4D9C0298BAD6C6640790946D85C - A12B857368391EABF02846F432FD6F39381F2F2E275BAFA6CE4B930371663442 - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168855.cva - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168855.html - HP EliteBook 6 G1i AI Windows 11 Driver Pack - false + 1/11/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150831.exe + 911332968 + c94752a75312694c7aa79dc1c2a2bad0 + 99483D4A9EB4CB709944B3B49618BC2F417CDEA408B4650B5A01C329E4868510 + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150831.cva + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150831.html + HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack + true - sp84802 - HP Z4G4 Windows 10 x64 Driver Pack - 2.2018 B 1 + sp172864 + HP Scuderia Ferrari NB Next Gen AI PC Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 2/21/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84802.exe - 1030908864 - 8685923519362c4b7505696fd3380ae7 - 6FE80BB751F41526B0C81C259A5A102F06B7FEC4593B4419A2DB009020A58586 - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84802.cva - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84802.html - HP Z4G4 Windows 10 x64 Driver Pack - false + 5/20/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172864.exe + 1408004216 + B09C45AD0583960339CFAE7FE2B9A0C1 + 1311F048FD61E73CC383B04DD0E66CE103C0A3BE5B76CD89671A63A3B6EFD222 + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172864.cva + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172864.html + HP Scuderia Ferrari NB Next Gen AI PC Windows 11 Driver Pack + true - sp150498 - HP Z4 G5, Z6 G5, Z8 G5 Windows 10 x64 Driver Pack - 4.00 A 1 + sp149065 + HP ZBook Fury G10 MWS Windows10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/5/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150498.exe - 2522646328 - 1111f091bf67ff5c5b061deff78c13fb - 95869E7F3601059F554D1FB38E92EDA12A6F3352BED23925DBEE85420AB98724 - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150498.cva - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150498.html - HP Z4 G5, Z6 G5, Z8 G5 Windows 10 x64 Driver Pack - false + 9/4/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149065.exe + 1681959424 + 74ece9572789a0e34ceb52306adc3028 + 4216C73A2ECF734103B95198FE7BA22308E771222D2B9A546C82241D39832710 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149065.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149065.html + HP ZBook Fury G10 MWS Windows10 x64 Driver Pack + true - sp160226 - HP ZBook Studio G11 MWS Windows 11 Driver Pack - 4.00 A 1 + sp123514 + HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/19/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160226.exe - 2206677856 - E2903F01B7A6B84D8C759BC7D09E8D2B - 966CA3110661F5C9B7BC34E9881BF31D62F2E260501137318E34A017AC7589ED - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160226.cva - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160226.html - HP ZBook Studio G11 MWS Windows 11 Driver Pack + 7/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123514.exe + 812811768 + 66c79b22329e3795c0c57037984fda43 + 34F1B96C534748BC91AA1568C215322979FF601CC7B4020327EE8A3F78F074CE + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123514.cva + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123514.html + HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack false - sp113465 - HP Probook 6x0 G7 Windows 10 x64 Driver Pack - 5.00 A 1 + sp147781 + HP Z4G4 Windows 10 x64 Driver Pack + 13.00 A 1 Manageability - Driver Pack - 5/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113465.exe - 1165238872 - 9b78d8323dd9a8addfdd5585f8200ad8 - 387D47CC0C6FFD9D5DE1AD4AC2D8EAA62F5488CE8FF90BD1B012A7F31C2BDC09 - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113465.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113465.html - HP Probook 6x0 G7 Windows 10 x64 Driver Pack + 6/12/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147781.exe + 1591369984 + b9e50e93f1d41eb41ccab8f72a4e92f0 + 755E19FB6DBF8FD2F78D36BC61D5F64AE80BF45464C76F9BA0201F35C6CF224E + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147781.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147781.html + HP Z4G4 Windows 10 x64 Driver Pack false - sp170248 - HP Engage One Pro AIO Windows 11 x64 Driver Pack - 8.00 A 1 + sp91837 + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 2/3/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170248.exe - 933360680 - 85803EC079DD89062CABD034B9D2D408 - 898FBBF3476D50F4ADABDDA31DC4192EFA1017D1F13684395AEFEEF35A32F3A5 - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170248.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170248.html - HP Engage One Pro AIO Windows 11 x64 Driver Pack - true + 9/6/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91837.exe + 797301624 + cc62781684ee19522a8e27ba40365671 + F5B6BD4F4FE9D5C269E08D4625E2BD71492A0B6F04EF25FE57CA8312AE6CCCFA + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91837.cva + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91837.html + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + false - sp94916 - HP RP5 5810 IoT10 2016 Driver Pack - 3.00 A 1 + sp114157 + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 5/7/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94916.exe - 1038883000 - b6aa4ef4b4f4063135b4563975b5373a - 6D3B83B3DFE6704C8847C45146D0AA6BBCC7E25D95ECE14DE5F970DE814D8482 - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94916.cva - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94916.html - HP RP5 5810 IoT10 2016 Driver Pack + 6/8/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114157.exe + 1595852160 + 87b1ab44ebeb5f74869da0287723bf96 + 1839E8553A381936F2665558D33F47DB9EFC22EF46AF5E01D4940294573A3A75 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114157.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114157.html + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack false - sp136311 - HP ElitePro 4/805 G6 DM Win 11 Driver Pack - 1.00 A 1 + sp113952 + HP ZBook Studio G7 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 11/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136311.exe - 1167991816 - b6bd5b004d21e57264bb5f9037c65cd0 - 145D773ACBDD6841C5C2BA46445D0B31C8E4D6034912C6B8AEABCB515998FA73 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136311.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136311.html - HP ElitePro 4/805 G6 DM Win 11 Driver Pack + 5/21/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113952.exe + 1300895432 + 966c14b2c40b86864e3669dd74e325b7 + 2583E977168F9FD8E31AB11DFFCAFD7ACAEA86DEB7A52E07C8D0BCE261DBA5F1 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113952.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113952.html + HP ZBook Studio G7 Windows 10 x64 Driver Pack false - sp145699 - HP Pro/Elite Mini 4/6/800 G9 Windows 10x64 Driver Pack - 5.00 A 1 + sp95330 + HP ElitePro 600/800 G2 PC Windows 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 4/5/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145699.exe - 1468090592 - 560fa9291fc20f76211194d24b414c66 - 6239A07C6A0DFF8B9848F5E189E65CA77486BA2506BD8A9EDE414612A004CD09 - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145699.cva - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145699.html - HP Pro/Elite Mini 4/6/800 G9 Windows 10x64 Driver Pack - true + 3/12/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95330.exe + 861386416 + ae6996f3d52ad51ebc31e00b1c706c94 + 2B4B7A06B38CD926F3344D6072B120DDECAC8BB1322EA9ABA565AD2666298FCE + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95330.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95330.html + HP ElitePro 600/800 G2 PC Windows 10 x64 Driver Pack + false - sp104424 - HP Probook 6x0 G7 Windows 10 x64 Driver Pack - 1.00 A 1 + sp133117 + HP MP9 G4 IoT10 2019 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 6/11/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104424.exe - 983657656 - e6a5de0e481fd6016fce4c1d872ae337 - DB6741926EFF1C010430629E6DE502F4978BA2C23B8E835DE9380061F2C21AAA - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104424.cva - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104424.html - HP Probook 6x0 G7 Windows 10 x64 Driver Pack + 8/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133117.exe + 453738432 + d44d29d7128509b6bad5ef9aeb8031c8 + 5A753BB55D2004CD3B14082B4B671EA8CC363FBF5A68DCD31AAE8481865520A2 + https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133117.cva + https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133117.html + HP MP9 G4 IoT10 2019 Driver Pack false - sp113445 - HP ProBook x360 435 G8 Windows 10 x64 Driver Pack + sp114138 + HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 4/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113445.exe - 1116679296 - 938ba1567f55d5256dcbe6f3b158cad9 - B169934D38791CECD45B064DF8A3F61C27E8EC65B1FD72A4EB4567E66E7E508D - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113445.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113445.html - HP ProBook x360 435 G8 Windows 10 x64 Driver Pack + 6/7/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114138.exe + 579407168 + efe2b1d944b2772b4b3a860d8362c477 + 4CCE7140F6DDF274498DFF7C3D69B6DCC58C1378862D7B18521A0EAA7694461A + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114138.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114138.html + HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack false - sp95450 - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack - 2.00 A 1 + sp94917 + HP RP5 5810 Win10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95450.exe - 795510296 - 3a3dd67a03998582635f4169e4eb66bf - 9BD456B79FBFA39430DAFF4F45D748FEDD894B0BF07848E6709E394D8F99A867 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95450.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95450.html - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack + 5/30/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94917.exe + 1048856184 + 6a134eb8ded8a5c225fe5343f2b6c1fd + 0B34BCD04E6681FB9E35FC9DA4BC37BD88F883F096678CDB38965B319F5736FE + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94917.cva + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94917.html + HP RP5 5810 Win10 x64 Driver Pack false - sp99766 - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack - 7.00 A 1 + sp132842 + HP Engage Flex Mini Win10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 11/6/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99766.exe - 1253226328 - 804d3ca0370f4425d656630fb008f6d1 - 9911A46F9742D9F1F6BD73554378945E58D44703085029C7A4D5FE4D2D689292 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99766.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99766.html - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + 8/11/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp132501-133000/sp132842.exe + 1230907184 + 880cf3447e8dc9150d812ba2e1d0dc5f + 4B6A6F7BF29E5FD37345E3A268EA8D454F59977A9F33F6033C55CB4D36C2D76D + https://ftp.hp.com/pub/softpaq/sp132501-133000/sp132842.cva + https://ftp.hp.com/pub/softpaq/sp132501-133000/sp132842.html + HP Engage Flex Mini Win10 x64 Driver Pack false - sp170014 - HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack - 7.00 A 1 + sp158188 + HP ZBook Power G10 MWS Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 1/19/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170014.exe - 2657464456 - B8C4F2B44E1E7EF676B63C1CACF66D90 - 2ACC37FD13A7DECE7748B26B6FFCA55B660C78DC0CF5290F7B95A7ED32DB74C7 - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170014.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170014.html - HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack - true + 11/26/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158188.exe + 2132532856 + 5EB4312855ED6B81418C6061686C6CCF + F619DE211FB11B1E0C52C161D991AF216AA77005DE96758EDFDDA2C5B81E7C6B + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158188.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158188.html + HP ZBook Power G10 MWS Windows 11 Driver Pack + false - sp143122 - HP ElitePro 4/600 G6/G7 SFF Windows 11 Driver Pack + sp161684 + HP EliteBook 6 G1i AI Windows 10 Driver Pack 2.00 A 1 Manageability - Driver Pack - 10/25/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143122.exe - 1081721896 - 118520e3a06e91ffeac7cc8ab527c64a - 7A3F73D4EC56799D2C356C82DF8E71F57E77100FB2804633991DDD4A06193C58 - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143122.cva - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143122.html - HP ElitePro 4/600 G6/G7 SFF Windows 11 Driver Pack + 7/29/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161684.exe + 2826610824 + B4F82B2E34569200A507EBEC5E033DD5 + 09FD404A5680242601C5DEC92CD66FCE66FD18D22B51F21D978D491C88FE13BC + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161684.cva + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161684.html + HP EliteBook 6 G1i AI Windows 10 Driver Pack false - sp96411 - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + sp158333 + HP Z2 TWR SFF G1i Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 6/4/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96411.exe - 480085128 - 21099eb3cfc8e883a3c71adb479664b0 - E01BF60B0BE6F5BBBF5F82E315345B43665D690DD40F42E5934713498A782910 - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96411.cva - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96411.html - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + 4/23/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158333.exe + 3643626704 + EB066E04309BC60BDA22EB679D2EED0B + 0CE47AE46F47BC5FDE3907A5B03D44811EC85A8C84934A95B71B61E6228C01EF + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158333.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158333.html + HP Z2 TWR SFF G1i Windows 10 x64 Driver Pack false - sp174056 - HP Pro/EliteBook 4/6 G2i NB Next Gen AI Windows 11 Driver Pack - 2.00 A 1 + sp138464 + HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 8/4/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174056.exe - 1712117128 - 54A4738AD6FA3758D352C94DCD5885F5 - A49582596637AD6F5DC0D12B652FBAA8871DE5631582BC83D9B0A7253FF732DC - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174056.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174056.html - HP Pro/EliteBook 4/6 G2i NB Next Gen AI Windows 11 Driver Pack - true + 2/18/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138464.exe + 1162157600 + 44aff550c6e2f95ad4ef0018cd18a08f + 15FDD2976A83E331A76A5B85BF161012B4CEA7E05844A79F9EFB5A88D90E6058 + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138464.cva + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138464.html + HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack + false - sp94920 - HP RP9 G1 Win10 x64 Driver Pack - 3.00 A 1 + sp99900 + HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 5/8/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94920.exe - 532136504 - 7b3465298ab51f9d97e704ba930716a7 - AA45B88B9915D7B2103CA35C7C980A563DC6015FDC84329179140D7CA1C34760 - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94920.cva - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94920.html - HP RP9 G1 Win10 x64 Driver Pack + 10/29/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99900.exe + 896436696 + 5b024ec9ef2f676b319256c7d248dcd8 + 5BE03B68148CD2653CC23AEF6433A177932B81EC7206CE33344B83B4B0E171D0 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99900.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99900.html + HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack false - sp114178 - HP ProBook 4x5R G6 Windows 10 x64 Driver Pack - 7.00 A 1 + sp140369 + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 6/11/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114178.exe - 1180251136 - 368875a4bb3da082b3c407baadc6d048 - F3652D585157E21439FF1D36DFC92B95EA4583D133D88B947F202FC235BFC6D7 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114178.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114178.html - HP ProBook 4x5R G6 Windows 10 x64 Driver Pack + 5/18/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140369.exe + 1022596336 + cc306e59ce18d2c5a2d9f91c220e7668 + EE0871E6C1B3C36A7C45D811F87AC6EDAEB735D26D881E44531F30B6099FBE08 + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140369.cva + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140369.html + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack false - sp114160 - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + sp168479 + HP Engage Flex Mini Windows 11 x64 Driver Pack 7.00 A 1 Manageability - Driver Pack - 6/9/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114160.exe - 694255464 - 1249a99e3ced0b0a7eabf03d8e898e6e - E6E7D51B155DC15BA97CB9CB384CEEA5BEDFA4FC3BF9AEF4D9E36060E93A2FFE - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114160.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114160.html - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack - false + 12/18/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168479.exe + 870498704 + 7CA641FE6A5F738A046AA511B38B794E + F6F9FC8234FBDB3A04728818D8F5F9C4E474037C4168F73C880E77F7596CFE48 + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168479.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168479.html + HP Engage Flex Mini Windows 11 x64 Driver Pack + true - sp95056 - HP Probook 6x0 G5 Windows 10 x64 Driver Pack - 1.00 A 1 + sp100849 + HP EliteDesk 705 G2 Win10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 5/15/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95056.exe - 670887624 - 65a96b8a7964604213afa65f033a8fc7 - 3ED92BA885A2A7CDE0832DAB5D49A97520FEA0FA3476889E3468671EBBC292E4 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95056.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95056.html - HP Probook 6x0 G5 Windows 10 x64 Driver Pack + 12/19/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100849.exe + 799176344 + 5b0e8d6e7916a0d4c0edec170fe10e52 + B88A990BF85CC47CA4DBCDB96E39A33811EBC831FB707213DEC1C77E952A77DB + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100849.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100849.html + HP EliteDesk 705 G2 Win10 x64 Driver Pack false - sp136262 - HP ElitePro 6/8x0 G8 PC Win 11 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 11/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136262.exe - 1523093560 - c8446958aae0fb26c76dfb8d806a9c50 - D63ECC1FE8658DFAD4DF8465DE193467A53283A1DF54DAB5A93B416225F3806D - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136262.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136262.html - HP ElitePro 6/8x0 G8 PC Win 11 Driver Pack - false - - - sp105743 - HP VR Backpack G2 Windows 10 x64 Driver Pack - 4.00 A 1 + sp95435 + HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 7/7/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105743.exe - 531217664 - 957aff2955653a95b96efd39cfb770d5 - 6E81712A966CEDD41BF9DD0871E5FF3351A52D1A68B41B0FD73400D905164A35 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105743.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105743.html - HP VR Backpack G2 Windows 10 x64 Driver Pack + 3/21/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95435.exe + 739890328 + 531180998fdd5c1c06027202e6692f25 + 7AA503B6C3F6E98CAB075D9C8522DDEDF75279D0B110962C08B31DD52BEE42EA + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95435.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95435.html + HP Probook 6x0 G4 Windows 10 x64 Driver Pack false - sp110626 - HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack - 1.00 A 2 + sp111812 + HP Elite Dragonfly G2 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 10/26/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110626.exe - 534725648 - d6fe0cacd7a6851b47a86a163583cadc - DB2ADEBDBD325A9DDB604A6B4400A19B3B6621A65E1A4778F06A3A02FBC0B40A - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110626.cva - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110626.html - HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack + 12/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111812.exe + 1212844304 + 037258fe0bd26f06879b16000b5c7b7e + 4686C8C18240D6305DDF468F0EC596281738F777506EA8E0F900E0A39C854134 + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111812.cva + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111812.html + HP Elite Dragonfly G2 Windows 10 x64 Driver Pack false - sp147883 - HP ZCentral 4R Windows 11 x64 Driver Pack - 5.00 A 1 + sp79039 + HP EliteDesk 705 G3 Win10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/22/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147883.exe - 1680815424 - b3a5e8340518e35721bb31bd4faae08f - 4D834CE3A44A783A169ABED680A76405909C17F83CBE9798B4F332CFF0D6E5E4 - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147883.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147883.html - HP ZCentral 4R Windows 11 x64 Driver Pack + 2/13/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79039.exe + 663908752 + d718ec20c2587c5ad68c7a81c3865c24 + 1A89A52DA3A1B1CB6F6F6D9ABE95554A05CBE49AF7B95BC344D87E51DDF17DD7 + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79039.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79039.html + HP EliteDesk 705 G3 Win10 x64 Driver Pack false - sp113954 - HP ZBook Power G8 Windows 10 x64 Driver Pack - 1.00 A 1 + sp142912 + HP Engage Go 10 Mobile System Win10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 5/21/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113954.exe - 1292091128 - 2c4ea89b1882e0c3bf3b8fa7d7a55ed8 - 6D3B2C72D16C76E94AF49264B0E0044C21A3032397F289DE6C94E40C02B31CA7 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113954.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113954.html - HP ZBook Power G8 Windows 10 x64 Driver Pack + 9/29/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142912.exe + 847136552 + 4b758e18092f4bce7206f0fcff85dfbc + 50E9FC2B79EB73226C11E0903F3C7C4291C28191F636B8C21A219FBACF8360D0 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142912.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142912.html + HP Engage Go 10 Mobile System Win10 x64 Driver Pack false - sp145122 - HP Pro x360 Fortis 11 G10 Windows 10 x64 Driver Pack + sp144691 + HP Engage Flex Mini IoT10 2019 Driver Pack 2.00 A 1 Manageability - Driver Pack - 3/10/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145122.exe - 962408496 - d715d09d422c2a1f0a153e905d25e299 - 3CDD38E49CFCF9DD18932296271F8D565494A25D4D382B0F13095BA80D19A157 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145122.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145122.html - HP Pro x360 Fortis 11 G10 Windows 10 x64 Driver Pack - true + 1/24/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144691.exe + 435140224 + 7095772a9f53295b322ff87c89395448 + 8A1B384A3793530F87C1F6C55AC2A3314614CE0E03391C347748EDB3A255BC49 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144691.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144691.html + HP Engage Flex Mini IoT10 2019 Driver Pack + false - sp99708 - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack - 10.0 A 1 + sp95271 + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 11/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99708.exe - 848397040 - df8cccdfae4ff9eba67364e050b5f204 - B52DF648A7C3F83DBA5142FE3D3F897A3258ADAAA0E4ACEE892D9476E16C0CA5 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99708.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99708.html - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + 3/6/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95271.exe + 795097120 + 925a3f211818f60a4f459073cd903387 + 588ECE1E0863C8B0E44AE3D7DA6D46909A1DDEF5626CE4E2ABADFCF589D35683 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95271.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95271.html + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack false - sp91854 - HP Probook 6x0 G4 Windows 10 x64 Driver Pack + sp138786 + HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 9/7/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91854.exe - 944813288 - 2c2148ea330186d0f5e4b08c3fa19fd8 - ABF7C59E8448911C04AC03FC01F1374A3F4AE4905BAFC56439788D07509A1B9A - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91854.cva - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91854.html - HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 3/10/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138786.exe + 821548608 + 2ab36aa22ead65c4294b69c625fe3a94 + D3F1252ECCB58A1510AC77D3653A5FD6F31881DD994A1CCC7A6401530E80F799 + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138786.cva + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138786.html + HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack false - sp83811 - HP Elite Slice Windows 10 x64 Driver Pack - 9.00 A 1 + sp112598 + HP RP9 G1 IoT10 2016 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 11/18/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83811.exe - 418721424 - 7225be26e16121b4e8bbe5d5241cdbae - 325ABFE820C8843C5F945D8442BBA71811F672EE82211CCA9CB70986ECBDCA97 - https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83811.cva - https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83811.html - HP Elite Slice Windows 10 x64 Driver Pack + 2/5/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112598.exe + 540807576 + fac67b5b2e4bec9734f0ad5633d7d321 + 1E75E8BEE4E3166BC7932A550C1CEAC40789E64ACC0F88B504978E600F5F9771 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112598.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112598.html + HP RP9 G1 IoT10 2016 Driver Pack false - sp110458 - HP MP9 G4 Win10 x64 Driver Pack - 8.00 A 1 + sp106199 + HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 10/19/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110458.exe - 420818960 - 3c292803c0c43d8167ea87e186f7fe24 - D8B5CCF70D85824F36EAC25FE0A1234640957BC7457DA3401DFC40567A5E9E47 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110458.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110458.html - HP MP9 G4 Win10 x64 Driver Pack + 7/16/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp106001-106500/sp106199.exe + 421442768 + b9e927408767eacaa1b9cda1060245c6 + 34F70C0BE2C147F4C4DB7A445EB5248D571EE70ACE4B37ABCD3C852E79BF5D27 + https://ftp.hp.com/pub/softpaq/sp106001-106500/sp106199.cva + https://ftp.hp.com/pub/softpaq/sp106001-106500/sp106199.html + HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack false - sp164412 - HP ZBook Fury G1i MWS Windows 10 Driver Pack - 2.00 A 1 + sp174341 + HP ProBook/EliteBook 6 G1iR Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 10/8/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164412.exe - 2634547432 - 23A8BAC75324280E85806EA4B12218A1 - CFB901F07A00E3411D7ADB13DCAC3C6016446175A5BEDFED0BEE45F114119C6A - https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164412.cva - https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164412.html - HP ZBook Fury G1i MWS Windows 10 Driver Pack + 8/13/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174341.exe + 1434587368 + 9B1952FF6C336C880BBE15B2BD89A532 + 4BDFDB0182566F3F3409AAF424A062E7D24F76A66FAA0212CEB34E91F1A0BF0F + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174341.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174341.html + HP ProBook/EliteBook 6 G1iR Windows 11 Driver Pack true - sp150286 - HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack - 5.00 A 1 + sp170009 + HP ZBook X G1i MWS Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 11/30/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150286.exe - 1039380912 - 769c2472dee3471a16f68804d4f4b432 - 0C46EFBA9DEA8CDC3A459C0732CD94AD7AB168D279B5349BAB251DB7E57B0757 - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150286.cva - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150286.html - HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack + 1/19/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170009.exe + 2525924968 + 5EEB27AE08F392FC85686285045DA288 + 9DA7474A6E02C2FD7275BAFF6DF57979E0E96CD75E84236B9B7A1A702EDEFB88 + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170009.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170009.html + HP ZBook X G1i MWS Windows 11 Driver Pack true - sp147939 - HP Pro x360 435 G10 Windows 10 x64 Driver Pack - 3.00 A 1 + sp173494 + HP EliteDesk 8 Mini G1a Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 7/6/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147939.exe - 852745128 - 5ebfcf74373c82722e70f424bd76ba69 - 069E6B7BEB6C92FDD1918E37715123F6FD365106EB528AAE538BA13908892122 - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147939.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147939.html - HP Pro x360 435 G10 Windows 10 x64 Driver Pack + 6/5/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173494.exe + 1118895672 + 21CEBCAA466D06C7D18F429C16D038FF + A97B3503E89EAEEBB0A8B816B9DDC452DB51B278F5E0AC1DDECEFD46A43CB138 + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173494.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173494.html + HP EliteDesk 8 Mini G1a Windows 11 Driver Pack true - sp95432 - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack - 4.00 A 1 + sp144389 + HP ProBook x360 G5 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/21/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95432.exe - 621437848 - f4993aef972c6f863cf3c7b205ba9d30 - EC7D45BC1F18061671C33047BE7B144F47DF73834F7F04D4BFCC0C0BC1D9DD2F - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95432.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95432.html - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack - false + 1/20/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144001-144500/sp144389.exe + 829927528 + b2875cfafe0c19c00255f49886efe671 + 90DA21DA33EFDA8CF4841EF0637AD653E239EA0F8B7AB43685E3062DA39D20F0 + https://ftp.hp.com/pub/softpaq/sp144001-144500/sp144389.cva + https://ftp.hp.com/pub/softpaq/sp144001-144500/sp144389.html + HP ProBook x360 G5 Windows 11 Driver Pack + true - sp111344 - HP EliteBook x360 1030 G4 Win 10 x64 Driver Pack - 8.00 A 1 + sp113369 + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 11/30/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111344.exe - 962796088 - 14f7a221f35943750daa1c9286e98b43 - E7426FF9EB5CECD87C1CB59BD4FD26E10FA87B93CDB68C715286A4EC53C83B5F - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111344.cva - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111344.html - HP EliteBook x360 1030 G4 Win 10 x64 Driver Pack + 4/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113369.exe + 1689578152 + 01c0c133ecb0567e9cb3f2a057b0b573 + 42C2B0E53BB6D7F4ADE52ACCB770BDF3A0C34EFCBB53730C94888F4C8E551ABA + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113369.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113369.html + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack false - sp140853 - HP EliteBook x360 830 G7 Windows 11 Driver Pack - 1.00 A 1 + sp110547 + HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 6/29/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140853.exe - 1214360280 - fdc5f719daeb69883bc222dafee809cd - D96A35890215007C872AA9A70D4967FFE6E09D452BEEC543271900457FB60865 - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140853.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140853.html - HP EliteBook x360 830 G7 Windows 11 Driver Pack + 10/21/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110547.exe + 1812322360 + d9fe5fa66024448d8633b28e185fc664 + 94F8266B7D70927917134589456D9B6802C85C642A6C9592A7902CD2854CA139 + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110547.cva + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110547.html + HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack false - sp153445 - HP ProBook/EliteBook 4/6x5 G11 Windows 10 Driver Pack + sp149061 + HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 6/25/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153445.exe - 982367240 - 7be949d3ad8feb9990f5a21f0f1b7e13 - 8E6C270835184C96076024D25642054DEF1FB1CEF204828EE3E61A977FA1E0DF - https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153445.cva - https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153445.html - HP ProBook/EliteBook 4/6x5 G11 Windows 10 Driver Pack + 8/30/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149061.exe + 1577665768 + ab04b70048fd0db3e3dabbb36f4594c3 + BF88893BFA6CED2002893211C4201C317292F25A0FC4032046194227A3407774 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149061.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149061.html + HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack true - sp110454 - HP RP9 G1 Win10 x64 Driver Pack - 8.00 A 1 + sp138326 + HP Elite Dragonfly G2 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 10/14/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110454.exe - 541804944 - c421facdd82918eb106426902672d881 - 576340A4729118739C9174BE9C7EA9FBC09A1DFA903A17AC9269A304D4E81B80 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110454.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110454.html - HP RP9 G1 Win10 x64 Driver Pack + 2/9/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138326.exe + 1274612680 + e1b8e5ca822cdb597fabebfe9de43c28 + 4E0309AFEF87951DFE4C06A0775BD906C0C005F92B7EA6916AA47BF5BF7187DD + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138326.cva + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138326.html + HP Elite Dragonfly G2 Windows 10 x64 Driver Pack false - sp103578 - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack - 5.00 A 1 + sp95002 + HP ProDesk 405 G4 DM Win 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103578.exe - 921618616 - 0c57909ca5e213dd03a4485d190fad87 - 7F54F3C5C9A2F82CAEE0CEB28AE4B8EE8DF0FF06FE9406E9B7CB85BEB121BDEA - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103578.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103578.html - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack + 4/2/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95002.exe + 361739704 + 7a59fa69de83fb3400867b04505074f8 + E633F403198406FAC3CE30D0D9C84AFF5EAFF94A29F106C013F757D1EABB9987 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95002.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95002.html + HP ProDesk 405 G4 DM Win 10 x64 Driver Pack false - sp101450 - HP ProDesk 405 G4 DM Windows 10 Driver Pack - 5.00 A 1 + sp135909 + HP Z2G8 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 1/27/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101450.exe - 358223976 - 91a260484af20c5ab32db3aab9acde89 - 5FCC2210E1E34AE44D45C9690763F46B62A19224BF2B29AD24ED1FE6FA0D7549 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101450.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101450.html - HP ProDesk 405 G4 DM Windows 10 Driver Pack + 10/15/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135909.exe + 1665735408 + ce13a0061efd1271421288c8df95beb8 + 852B8842F8A51995A637CDF31EC9430FFA38B105D526E4B040393D67C2E4E23D + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135909.cva + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135909.html + HP Z2G8 Windows 10 x64 Driver Pack false - sp151810 - HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack - 6.00 A 1 + sp103624 + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 3/27/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151810.exe - 1057437280 - b2ca4dcb1518501f341b60a206f4311a - 07327A7758F26562258B7B2C420E8005E99C354F8F07E8B00D0BF67B549248B4 - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151810.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151810.html - HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack - true + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103624.exe + 759900504 + b39131e66ad05419849a1d25b08f9ead + 3A2A578D1CAFFD075741D700E52F5DF4B7E3D16231D073404E6CB7A34E5A756D + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103624.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103624.html + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + false - sp114221 - HP EliteDesk 705 G5 DM Win10 x64 Driver Pack + sp80306 + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack 7.00 A 1 Manageability - Driver Pack - 6/17/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114221.exe - 410068800 - 2228f27d80819f2e8ffacccfcf9323c5 - 3E317EC7EDFFC5DBE4249C302B733222B44B0F6324129A7D4F6E83219047BC19 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114221.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114221.html - HP EliteDesk 705 G5 DM Win10 x64 Driver Pack + 5/31/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80306.exe + 1036823336 + ee95f68769edede6533127b2e95e14bb + 2FE74B1F5D56DE2F500499D2AAC24FDBD4BA1EE3F4CCEB648265ED429AD9DFD7 + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80306.cva + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80306.html + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack false - sp173588 - HP Engage Flex Pro G2 Windows 11 x64 Driver Pack + sp114132 + HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack 9.00 A 1 Manageability - Driver Pack - 6/15/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173588.exe - 2473983504 - FCF4361EA2F67CD1514E2BA34994818A - 22C72E3F2E22027464E064E312C28733990D80BA403C4C1C175485991EC1CB90 - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173588.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173588.html - HP Engage Flex Pro G2 Windows 11 x64 Driver Pack + 6/7/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114132.exe + 1138767664 + 9d73cd474f05105fbdc2eedcd85738d2 + 795AC31E48EDF3757492D818B4C1CE55A62A6596A67039995417840498466E8E + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114132.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114132.html + HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack false - sp145104 - HP ZBook Studio 16.0 G9 MWS Windows 10 x64 Driver Pack - 3.00 A 1 + sp158224 + HP ZBook Fury 16 G9 MWS Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/10/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145104.exe - 2119334360 - a933f42a9e5d89087c151c016f1348c1 - DCE2843483C333A474425FC1E1B8960A87B27BA181491F579879B45D38839B16 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145104.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145104.html - HP ZBook Studio 16.0 G9 MWS Windows 10 x64 Driver Pack - true - - - sp110038 - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - 13.0 A 1 - Manageability - Driver Pack - 9/11/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110038.exe - 1492441416 - a1bd3a212ad3af9af3351e206092f6a6 - 09D89240BE4848AF7536EEE779CCC66DDAD67B5B101062B7005A5DE5F91BACF6 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110038.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110038.html - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - false - - - sp154015 - HP Z6 G5 A Windows 11 - 5.00 A 1 - Manageability - Driver Pack - 8/5/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154015.exe - 1724761512 - 14CA513082FBB9DD6B693D7FCB4AA78B - 882389A5814299FFDFFE689E2923A90480B22D0301756EDD9F9977A1687AFBBC - https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154015.cva - https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154015.html - HP Z6 G5 A Windows 11 + 4/18/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158224.exe + 2452069104 + 2C5DA70495266A4D1FAF3DBB1578D9D4 + 0E74DDB34E0BC5491953C551980DFBC991744F1D29E2A5D00C5717CBB848B1F7 + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158224.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158224.html + HP ZBook Fury 16 G9 MWS Windows 11 Driver Pack false - sp173315 - HP EliteDesk 8 Mini G2i Windows 11 Driver Pack + sp104372 + HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 5/29/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173315.exe - 2408590592 - 111CF41D479EF8CF187AB83CBAA8190D - 6B098DA4C2F299590D488F5CD34EAF67E1DAE43A6160058602CBA84C66ECA064 - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173315.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173315.html - HP EliteDesk 8 Mini G2i Windows 11 Driver Pack - true + 6/10/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104372.exe + 923170296 + f1272586ef3b411140438d9b68e8b124 + F66195A052BEA023F9A7389986F8E694F24AC6F21E36A79FB0AB3AEAB895B4F1 + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104372.cva + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104372.html + HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack + false - sp144683 - HP Probook 6x0 G8 Windows 10 x64 Driver Pack - 7.00 A 1 + sp101896 + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 4.0 A 1 Manageability - Driver Pack - 2/2/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144683.exe - 1618021104 - 541bbe7479369db4c0e395194af29141 - FB98348B91BADC1BDD86080126E9361E8A624D9D2776E7489FE37CAF1C4765F5 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144683.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144683.html - HP Probook 6x0 G8 Windows 10 x64 Driver Pack + 3/6/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101896.exe + 859497104 + ad56be19a377bd8eb371b3e5b7ac2f26 + BC9D789488B3ACE02393C1F356B915A775F43757FAF91BE1804FCBA90361E000 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101896.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101896.html + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack false - sp103580 - HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack - 12.0 A 1 + sp99665 + HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103580.exe - 420116848 - fae470e85c868cdfc76138464e9acd02 - 6D7CD9F87434F6CA26452F7AE95E487C1C14263DC93781FD9DA0F5B9BB455FF9 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103580.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103580.html - HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack + 10/31/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99665.exe + 805421472 + f143f94b0ff730c898e6f48cd88ac78b + E918BE2767CE44B918CFEF6B4D1E6B5DD250DFB3334995A57F0A75FBB38845CE + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99665.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99665.html + HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack false - sp96760 - HP ZBook 15v G5 Windows 10 x64 Driver Pack - 3.00 A 1 + sp114207 + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + 12.00 A 1 Manageability - Driver Pack - 5/29/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96760.exe - 931778688 - 5c664d71495205cab3fdea6861fc1b65 - 0D0CFE088E4822F5267F6103F5DF5D4848FFF6D5E639D356AF703B02BF2431D1 - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96760.cva - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96760.html - HP ZBook 15v G5 Windows 10 x64 Driver Pack + 6/16/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114207.exe + 1328182936 + 8b26766c990119b0b6a7fce357d205b0 + AC153838425255BA36328D8FE8640A1182CDF985CC8EC89BB8F270ED906B5FD9 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114207.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114207.html + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack false - sp138876 - HP Presence Control Kit Windows 10 x64 Driver Pack + sp99557 + HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 3/15/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138876.exe - 805242392 - b58d2a70d18beca0cbdf4c33dbb2cbb5 - 28A034E7AA31C427BEF2B9854B4035804F33315C81A929B422CAD54DE9BCC30D - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138876.cva - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138876.html - HP Presence Control Kit Windows 10 x64 Driver Pack + 10/8/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99557.exe + 859617296 + 9c85663d2963aed5787996e530c7335e + 958A2F7ED4134E27154EA83FAB370EF8B97C592375E58E412F4ECC6D80EDC144 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99557.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99557.html + HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack false - sp100259 - HP ProDesk 405 G4 SFF Windows 10 x64 Driver Pack - 2.00 A 1 + sp112019 + HP Elite/ZBook 8x0 G4 Windows 10 x64 Driver Pack + 17.0 A 1 Manageability - Driver Pack - 11/26/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100259.exe - 847213848 - 7a126f3aea6f6736549fbf1510f8c41d - DB5E3C7888EA02183FC2EA8C1D249661CA269C710DD656FB15D9A7CCBEE438A8 - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100259.cva - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100259.html - HP ProDesk 405 G4 SFF Windows 10 x64 Driver Pack + 12/31/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112019.exe + 1249542424 + e84fbf6fade56908e18bf2812160455b + 6CE8818CA049C782F0F62E607243BD35CD1EA2AEE4CC90059CC615D03FF0F35E + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112019.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112019.html + HP Elite/ZBook 8x0 G4 Windows 10 x64 Driver Pack false - sp95547 - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack - 5.00 A 1 + sp149205 + HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 4/5/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95547.exe - 808743040 - ad147a3345afc9357b8fd51f5e30440f - 6A712E6546150F21FCBF77235BB46152D82B3A49D754813071A2A44C29CC7C93 - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95547.cva - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95547.html - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack - false + 9/14/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149205.exe + 913638064 + 401b5f6e454443b92a2388be94de6222 + 135A8B40D0CB8A0BE98F45A004E391DF0BC5FB95BCB91674AB33CA4BD929F531 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149205.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149205.html + HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + true - sp103616 - HP Probook 6x0 G4 Windows 10 x64 Driver Pack - 12.0 A 1 + sp151271 + HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103616.exe - 759939728 - a8e48de3bb265a70be1655b2d8e42a69 - 4C2EBB7956A3FCEDBEFCDE10FBAC72CAC151FEEA2B26291612CA9AF6E6AB7168 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103616.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103616.html - HP Probook 6x0 G4 Windows 10 x64 Driver Pack - false + 2/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151271.exe + 1584774432 + 12eafa0a2f6bcd90f0537868f99fa668 + BDC019F73C6C327B6A775569A60610ED23F6187E82E68B637D69BFDD68B04E00 + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151271.cva + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151271.html + HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack + true - sp99578 - HP Engage Flex Pro G1 Win10 x64 Driver Pack - 5.00 A 1 + sp105759 + HP ZBook x2 Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 10/15/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99578.exe - 818199480 - 529da75357d03befea35f3f9ad7c05dd - 1D09B21F3B45198C3A093A3D76A7CD95F7178985609FB45E8E1535A5130DB5E7 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99578.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99578.html - HP Engage Flex Pro G1 Win10 x64 Driver Pack + 6/24/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105759.exe + 674291760 + 9237de8aa86cb1aede85b4cf87bdced3 + 449DF4C22EA4A517A189BFFF1BD451F656E0CD96271679A65618A8C240169AFE + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105759.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105759.html + HP ZBook x2 Windows 10 x64 Driver Pack false - sp138682 - HP ElitePro 6/800 G8 DM Win 10 x64 Driver Pack + sp174204 + HP EliteBook X G2a NB Next Gen AI Windows 11 Driver Pack 3.00 A 1 Manageability - Driver Pack - 3/7/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138682.exe - 1449348440 - 8a5c35e715f8cbfa392d110a1f20f2c1 - 0FFF06ED333A11124C7F3CE1CDBCAACCAA2B6E2F4573861A1787316C92FD63D0 - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138682.cva - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138682.html - HP ElitePro 6/800 G8 DM Win 10 x64 Driver Pack - false + 8/5/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174204.exe + 986943616 + D25261F70B98FC3C067C8B7EDC57426D + 238BD489C26B55223679F6158F9B00E29BED33C30A00D24D84DA555115BB87E0 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174204.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174204.html + HP EliteBook X G2a NB Next Gen AI Windows 11 Driver Pack + true - sp79263 - HP Z1G3 Windows 10 x64 Driver Pack - 01.2017 A 2 + sp87289 + HP EliteDesk 705 G2 Win10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 3/7/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79263.exe - 500656024 - f148ce1463b6741be492a1669890bd1b - DEA59A9F36214900F4FDDAA513F9F78B89148F0E3A275F5CA4D2F0F8C0179773 - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79263.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79263.html - HP Z1G3 Windows 10 x64 Driver Pack + 4/12/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87289.exe + 758830152 + f4e28b4fb7f584a8971f9ef80dd3ef68 + 318B9E1697690959BB3673DEDC7150CC749ED7D5D8823618B46D431FF8FFC831 + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87289.cva + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87289.html + HP EliteDesk 705 G2 Win10 x64 Driver Pack false - sp99581 - HP Engage One G1 Win10 x64 Driver Pack - 5.00 A 1 + sp140701 + HP Elite/ZBook 8x0 G7 Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 10/21/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99581.exe - 451078304 - 978bcc24ff84725dc82e7ca87d2f88a8 - 1817852E2588067F341525CAC5918D82361AF250F8E78864DAC2D37AAD7FB366 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99581.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99581.html - HP Engage One G1 Win10 x64 Driver Pack + 6/15/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140701.exe + 1650155432 + 615a2b1dd28e281190bcc6fd27385ba2 + FF07329C68F004C2C6D82B85B820660A3AA991F2FBB478D6F170BD013D4C9D07 + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140701.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140701.html + HP Elite/ZBook 8x0 G7 Windows 11 Driver Pack false - sp158769 - HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack + sp138598 + HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack - 5/12/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158769.exe - 1421640048 - 836D0323641908DA0CA6907840C91E05 - EA9FAF04936EE7047F2E5D572C56C507D89F11F3A11BE47E895792ADAABBBD86 - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158769.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158769.html - HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack - true + 3/3/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138598.exe + 1499094112 + 6851b9c114af71b10e847ee229a667f1 + EF7B95EACA6AE14A014FA110B4D324C221E754CABC8A164F4057EC370724525B + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138598.cva + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138598.html + HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack + false - sp171406 - HP Z2G9 Windows 11 x64 Driver Pack - 12.00 A 2 + sp160200 + HP ProBook/EliteBook 4/6x5 G11 Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/27/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp171001-171500/sp171406.exe - 3938258072 - 4793F51B5C459B85B4B37BC11EF8351D - 683282DB8B112C41E8FE1BA3FC305538AAD07494751F9686316DCB5C0222EE96 - https://ftp.hp.com/pub/softpaq/sp171001-171500/sp171406.cva - https://ftp.hp.com/pub/softpaq/sp171001-171500/sp171406.html - HP Z2G9 Windows 11 x64 Driver Pack + 12/1/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160200.exe + 1277070824 + B00E02FBF0FF91A27BB4BB4E97DEC9E6 + 7780ED24D46B2DC9AC3A22711B6F135284BA6ADF8D29BCEDDA8A9EE476E61426 + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160200.cva + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160200.html + HP ProBook/EliteBook 4/6x5 G11 Windows 11 Driver Pack false - sp101210 - HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack - 3.00 A 1 + sp101988 + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 1/6/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101210.exe - 795385392 - 07f4c901060dd0f33df5b57ac0f16207 - F11CDFDA050B1F78268618E4C25AEBA8A1FC571B75D8A95F6D538084F360E7CE - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101210.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101210.html - HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack + 3/14/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101988.exe + 869151912 + 76c5d25198d8e37688fd8bde29b3effe + A6F90EF65956F993E7A28769B211BE13861BAA468E59D17F1FA94F73C4D21590 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101988.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101988.html + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack false - sp172541 - HP EB/ZB 8 G2i NB/MWS Next Gen Windows 11 Driver Pack - 2.00 A 1 + sp107518 + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 4/22/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172541.exe - 2634191824 - AC411A848E1D8D1D72EAE70824114066 - EF3EB39A950040005158C04B7A78EB0637478817B970F7D520EA32095E968039 - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172541.cva - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172541.html - HP EB/ZB 8 G2i NB/MWS Next Gen Windows 11 Driver Pack - true + 8/6/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107518.exe + 596431360 + f0e7cb892a392e1e35bf050c838c4682 + 0BEE3F35FBB79B0405F3877B5106AB15F069ACF0D70A52CFF372A49EF5C3D74D + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107518.cva + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107518.html + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + false - sp137144 - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack - 6.00 A 1 + sp114256 + HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack + 14.00 A 1 Manageability - Driver Pack - 1/20/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp137001-137500/sp137144.exe - 1281754800 - 46ba0ae7ccc64215ff5f8a1bb102b86d - A2579561A34CE23D32238E79183B9047C0BA3360FA239FF96D665B2A09FA8667 - https://ftp.hp.com/pub/softpaq/sp137001-137500/sp137144.cva - https://ftp.hp.com/pub/softpaq/sp137001-137500/sp137144.html - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + 6/24/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114256.exe + 1086987800 + b9491bbd00fd641ae63da5e1e1769b14 + 1422087DFE8A45EC90CB09FD62A86B255933068CBA8EEE000AA1D96CA56CEE90 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114256.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114256.html + HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack false - sp158128 - HP Pro x360 Fortis G11 Windows 11 Driver Pack - 7.00 1 A + sp100647 + HP VR Backpack G2 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 4/27/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158128.exe - 1335778600 - F4DEB25B01F40C494592AF3FCD52F5F2 - 7F1C61FA4AC9BE444FC4066D9BB434669306E537A926B674E9FED97741CF0657 - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158128.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158128.html - HP Pro x360 Fortis G11 Windows 11 Driver Pack + 12/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100647.exe + 1048514384 + 8c6fb2f0d08bb797b8acb896906154d2 + 408A1CFD4E6E8A71C37B0099B05F4F993A52F74EA2B54D3E2A787813F07140AF + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100647.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100647.html + HP VR Backpack G2 Windows 10 x64 Driver Pack false - sp72465 - HP Z230 Workstations Windows 10 x64 Driver Pack - 1.00 A 1 + sp133116 + HP MP9 G4 IoT10 2016 Driver Pack + 10.00 A 1 Manageability - Driver Pack - 8/16/2015 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72465.exe - 764891304 - 0607fea96431a0d60f7c2a31b8009ae1 - 4A5B5610AEEBC7899E4AD475208C1C59068F8A94FFA97CA01A8B50859A67DDDB - https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72465.cva - https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72465.html - HP Z230 Workstations Windows 10 x64 Driver Pack + 8/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133116.exe + 570410880 + 3d388fdcf449a4e2a661936c700f2373 + A21ED6CF13C52398BB920B7CFCA0E91296C7AC1936F91F8A1838DED9CC29DF4A + https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133116.cva + https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133116.html + HP MP9 G4 IoT10 2016 Driver Pack false - sp98435 - HP MP9 G4 Win10 x64 Driver Pack - 5.00 A 1 + sp144615 + HP ElitePro 4/6/800 G6 Desktop Mini Win 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 7/16/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp98001-98500/sp98435.exe - 820782632 - 2b81ad0f12589ef1cca87f7ba03354f7 - 6511E9D92B8B6C3C2D3D44F2F3351BB46F8B7C80B5874403B3D7759421B7410E - https://ftp.hp.com/pub/softpaq/sp98001-98500/sp98435.cva - https://ftp.hp.com/pub/softpaq/sp98001-98500/sp98435.html - HP MP9 G4 Win10 x64 Driver Pack - false + 2/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144615.exe + 1420438408 + a46b65335542b7f32bb28a36ca5e2690 + 76A3777E28BECBACC31E053DC2CA166F2F5809ACFD4E54141C753681873F64BC + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144615.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144615.html + HP ElitePro 4/6/800 G6 Desktop Mini Win 10 x64 Driver Pack + true - sp114213 - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack - 7.00 A 1 + sp99725 + HP EliteOne 1000 G2 AiO Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 6/17/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114213.exe - 1113242904 - 59b37ee6bf217fdae0d4d0c795976f05 - F8E84CE2E77A86E307D22BF164A3731305F45A8CB572267503BD0CCDAC2D2394 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114213.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114213.html - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + 10/23/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99725.exe + 848635704 + 8eae45ccaa86c634bca168a0803e8424 + FC536097B268946BF27F89B96D5D5A07312D5000EA3DBE7253952E84BE99A601 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99725.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99725.html + HP EliteOne 1000 G2 AiO Windows 10 x64 Driver Pack false - sp113588 - HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack - 6.00 A 1 + sp143119 + HP ElitePro 4/805 G8 DM Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 5/3/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113588.exe - 1650063784 - c37bd28d8d7a4a7640f1fdb88d088994 - 72E198AD593A55A56E107758BF267C7C453BD6C08E37CFC90028D04752860B20 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113588.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113588.html - HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack + 10/19/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143119.exe + 1208364592 + 4499a4e1066126f71ba210f58e004868 + 994509AE0DA0AEB61E17A79A2E0E848FB7B2845455F5337ADE5A48286101B8B7 + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143119.cva + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143119.html + HP ElitePro 4/805 G8 DM Windows 11 Driver Pack false - sp158618 - HP Pro x360 435 G10 Windows 11 x64 Driver Pack - 2.00 A 1 + sp95452 + HP ZBook x2 G4 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 12/2/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158618.exe - 1238094712 - CF386D7743DBCC8EFE1CDFB3798FA629 - 356CB3CDA1FDADE967E473C11574F5E31570B4448F9F937C37A8FE7634A03AA1 - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158618.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158618.html - HP Pro x360 435 G10 Windows 11 x64 Driver Pack + 3/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95452.exe + 1012767032 + 5ac5aa8b771c6c80351ce074546839df + 89AE3D472F1FA1058526BBB57837DC1FA756CD6508DE101130D12040FF9E5900 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95452.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95452.html + HP ZBook x2 G4 Windows 10 x64 Driver Pack false - sp174423 - HP EliteDesk 8 SFF G2a Desktop Next Gen AI Windows 11 Driver Pack - 2.00 A 1 + sp112129 + HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 8/21/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174423.exe - 2270032280 - 2D0ED9BC793DC8071E7EAE459E99E4C9 - 2DB6131A3AED11A0FBB207FFC8F156566D075C0DED2937F40432270C047F5221 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174423.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174423.html - HP EliteDesk 8 SFF G2a Desktop Next Gen AI Windows 11 Driver Pack - true + 1/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112129.exe + 1064009408 + 95291c693da65c8fd16c2b3dc2a84cba + 413D9E25F978EB5C741C0A94DE5CE0FAEDD1DBE5C930ED1A61EF899B632A5714 + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112129.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112129.html + HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + false - sp99589 - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack - 2.00 A 1 + sp113140 + HP VR Backpack G2 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 10/16/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99589.exe - 772852928 - 3f736a6f5889beeac649c0e14040f7be - 1300B46BD15DC8A76BFF89E89B743BB24401F6FE512F34999CAB5D398BBBFB4E - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99589.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99589.html - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + 3/9/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113140.exe + 534713784 + 98cee5426349b5334cea02b1d5de6d25 + 188DAEA4D5CAEA9EBC3FF122356346B33378BD6B8566316E00C83B38D0F569AF + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113140.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113140.html + HP VR Backpack G2 Windows 10 x64 Driver Pack false - sp144983 - HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack - 5.00 A 1 + sp110080 + HP Probook 6x0 G5 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 2/27/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144983.exe - 1256124400 - 4e3c965b0845a220dfcb69988712e8bf - C4C9D1EE7C835D1B90C0AC899E376EA373E922A49EAEC3C0D2EB8323F3577582 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144983.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144983.html - HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack - true + 9/15/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110080.exe + 1329343424 + 4bac59b75c0d9178e871fbf7135b524e + 83516C44A568239B63274D1FD5E27D344A550E8187D233FFC42B854C6D51532C + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110080.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110080.html + HP Probook 6x0 G5 Windows 10 x64 Driver Pack + false - sp110037 - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack - 6.00 A 1 + sp142746 + HP ZBook Studio/Create G8 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 9/11/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110037.exe - 1282268904 - e8c202b7b5673020103235ab00f5507e - 454E06B0F9C80FBCCCFA7C18BA8945E5B15FCB7402ED8AB672DA3E666CBFD095 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110037.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110037.html - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 9/28/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142746.exe + 1227660712 + a9c652027da2890291cb2bbae79b2dbd + EA425FF7F9D831A2F2971DBDB041A5550123542B3E47E383CC66282B745B5C6C + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142746.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142746.html + HP ZBook Studio/Create G8 Windows 11 Driver Pack false - sp99707 - HP Probook 6x0 G4 Windows 10 x64 Driver Pack - 10.0 A 1 + sp114232 + HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 12.00 A 1 Manageability - Driver Pack - 11/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99707.exe - 808122336 - 0b4452549fe4c7b4215b690aa240223c - 0E1D703291E73450602301625ADD9B8B66894C5AAF7E5A50FA4F3D7EBC9A8C91 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99707.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99707.html - HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 6/21/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114232.exe + 1089467888 + d47974dc27704b5dcc746782432bd758 + 3D151C3C968C9B9CF5AE33C089439D59B8E6314EE74E6C43088C546575F1E45D + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114232.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114232.html + HP EliteBook 840r G4 Windows 10 x64 Driver Pack false - sp152762 - HP ZBook Fury G11 MWS PC Windows 10 Driver Pack - 1.00 A 1 + sp145912 + HP Engage One Essential AIO IoT10 2019 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 5/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152762.exe - 1719203528 - cf9002247b6c41d40a74f6eab6a14f34 - 009267DF73E0285AD43151B28633093A7004D6ADB7FB8DC94E2C9701AB0762A5 - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152762.cva - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152762.html - HP ZBook Fury G11 MWS PC Windows 10 Driver Pack - true + 4/10/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145912.exe + 498657520 + 82f3ff95a5ff8e9e635956e1ac71e572 + 5CFC1290A1A1E6912484CC0132EAAF2A882D0A7D4B4270F243298983FBD68991 + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145912.cva + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145912.html + HP Engage One Essential AIO IoT10 2019 Driver Pack + false - sp149193 - HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack + sp92293 + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 9/7/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149193.exe - 1049234280 - b6cfb74eb9b177a8b9fe0388b80403f2 - 98125E4171C552F27C8B9B3FFD818ED8F6A7BD6E800BCC3EF69E53E5EE975342 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149193.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149193.html - HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack - true + 10/16/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92293.exe + 1114825176 + 3b999ae6fd705a1427fe9b6ff91bfe82 + C50B5629FCE1D4583E24C24E78170E7CAEE9B764C3C516748BFCFD849030232A + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92293.cva + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92293.html + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + false - sp149191 - HP Pro x360 4x5 G10 Windows 11 Driver Pack - 4.00 A 1 + sp172341 + HP Pro/EliteBook 4/6 G2iR NB Next Gen AI Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 9/7/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149191.exe - 854414552 - f178c07b34eb3f435cd10a8b0b7212cc - 35EB33FA2169ABE0B8A21C310740C26FFD640DD67D74C915F81AE71E61037148 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149191.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149191.html - HP Pro x360 4x5 G10 Windows 11 Driver Pack + 4/9/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172341.exe + 1594785904 + BFF4FB9A0FE805A99689F7F21F1BEEEE + C32C40BCAE310972AA8119F8C933BF8CC0DEB71FCD679E4876E4E02CB63EAAB2 + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172341.cva + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172341.html + HP Pro/EliteBook 4/6 G2iR NB Next Gen AI Windows 11 Driver Pack true - sp173559 - HP EliteStudio 8 AIO G1i AI PC Windows 11 Driver Pack + sp95451 + HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 3/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95451.exe + 832862712 + 60679540cb4d2ca62001fb4e5fb7b32f + AED1AEF83C131B774BFE9EE827654C23FB010D42E2E7A92C530233FA1A551BC3 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95451.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95451.html + HP EliteBook 840r G4 Windows 10 x64 Driver Pack + false + + + sp150834 + HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack 6.00 A 1 Manageability - Driver Pack - 6/11/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173559.exe - 3039755024 - FD859AA1F19782EEF090DFC8F5D60AFB - 94E9CB723A270CDE56BAD6A90C9D43AA32302723A31CF12D5D976647886C9FF1 - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173559.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173559.html - HP EliteStudio 8 AIO G1i AI PC Windows 11 Driver Pack + 1/15/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150834.exe + 1602532416 + 18a815ee31e9e64be60c02fa7f699e9a + 966CB23483874BDE29410B6E8E01BBB9D40FC0A8B88C0E95CFC02459186D4FE1 + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150834.cva + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150834.html + HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack true - sp90334 - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack - 2.00 A 1 + sp102064 + HP EliteBook x360 830 G6 Windows 10 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 8/3/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90334.exe - 572595576 - 41cd0ea71984888812365d37386026b4 - C6AF2DA530AD2A35B16FF0553115007046029BF6212DAB5B48E480E202BC692E - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90334.cva - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90334.html - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 3/19/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102064.exe + 849883344 + c01fb97bcb29dc5c3d9276cf410c8097 + 827700C8DD416BD05F8963AB1280E4D0C2D3172C36A08D5F5EA498A53A2C1E4C + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102064.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102064.html + HP EliteBook x360 830 G6 Windows 10 Driver Pack false - sp114134 - HP EliteBook x360 1040 G6 Windows 10 Driver Pack - 9.00 A 1 + sp169014 + HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/7/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114134.exe - 1086996520 - ef6633ce6de3f7b6674236cf0c7112aa - 93841ADEF37811C3910955E2FBE4F84DFAFB9D2ACDEA2E849440DAE42D33AEAE - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114134.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114134.html - HP EliteBook x360 1040 G6 Windows 10 Driver Pack - false + 1/16/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169014.exe + 1229907968 + 8A6076DF8BAEE80F44E09B704DE1CB68 + 31D85F2F68B684FEAF959008E6EDE90B0E9746B780CF8F0D0670A68BD7BB94EE + https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169014.cva + https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169014.html + HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + true - sp173775 - HP Z8 Fury G6i and Z4 G6i Windows 11 x64 Driver Pack - 1.00 A 1 + sp142669 + HP ZBook Fury G8 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 7/15/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173775.exe - 1630448200 - E211DE819F34D9A065DB622BA5C7D44C - 0CE17A42C492CBF63FAC4BC7FAB63BA1184B50E88D884C9AC28D9F7DC6AC5D07 - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173775.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173775.html - HP Z8 Fury G6i and Z4 G6i Windows 11 x64 Driver Pack + 9/27/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142669.exe + 1473515488 + 1d565a29733724a7db7d348f67b48bb9 + ECBC5B9E9687B18DE329537A5DD1EE3EBCCDFD189412C30CAD640455EF08D863 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142669.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142669.html + HP ZBook Fury G8 Windows 11 Driver Pack false - sp92268 - HP MP9 G4 Win10 x64 Driver Pack - 2.00 A 1 + sp123511 + HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 11/27/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92268.exe - 618624376 - 29f28aff981f560e21479bc34533d2e2 - A4714D94B2DA56D1ED03D480FE0689E05665CEC4E59553578E1B6B5BEC694A6F - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92268.cva - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92268.html - HP MP9 G4 Win10 x64 Driver Pack + 7/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123511.exe + 1101662408 + 34f0008ff8463377b25c1dae29c55916 + 3B6081BE06035AD875A46EDF1A2402632352F405C1C9BDC16D2C9DE44269C6E5 + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123511.cva + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123511.html + HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack false - sp150537 - HP Z6 G5 A Windows 10 - 1.00 A 1 + sp104128 + HP Engage One G1 Win10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 12/8/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150537.exe - 1728155528 - a1bbf8f91c1548d64a3fbf17b6c11085 - 4466F6FD583F39E1F7C8C9123887212B030D7AD8AC3C5F6AE6AB373185375A82 - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150537.cva - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150537.html - HP Z6 G5 A Windows 10 + 5/27/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104128.exe + 420578528 + 59556f5fed973e3136bf22e4f9efad3e + 28563E773AB11DCAD0FEED0B7D1CAD4D903DCA26A0FB8B10F227699829F09A9A + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104128.cva + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104128.html + HP Engage One G1 Win10 x64 Driver Pack false - sp144688 - HP Engage One Pro AIO IoT10 2021 Driver Pack - 3.00 A 1 + sp160042 + HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 1/23/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144688.exe - 600490288 - 0a36c3740779f8fd383bdea31e25284e - ABF07E771CB0593501B6DD259E7C85DB6E05FE837D9BAAE0BA9A6F3B6D17AF9E - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144688.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144688.html - HP Engage One Pro AIO IoT10 2021 Driver Pack - true + 5/29/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160042.exe + 2240136064 + B3C46E1E5771D4682EF4960D6105F463 + CA47DA0BC785D393E224091AF79F7B70EF8A1AEDBA84EEA22284233F0FE73044 + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160042.cva + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160042.html + HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack + false - sp140741 - HP Elite Dragonfly Windows 11 Driver Pack - 1.0 A 1 + sp99541 + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 6/20/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140741.exe - 1076950784 - 06d2d5dd1cffc8d9d0a3c63d4bff77e7 - 2D6D7C8FD2C74A909C742BC9B9B07652F775C7319CC5FF726863B325847F8274 - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140741.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140741.html - HP Elite Dragonfly Windows 11 Driver Pack + 10/7/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99541.exe + 734282928 + 9ef2f20d87a22afc739b42588d61dd2c + A83F5A8F0A2011EF54219D201832B93B92EFC4E788E3371ECC71CCA905B03A53 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99541.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99541.html + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack false - sp142690 - HP ZBook Power G9 Mobile Workstation PC Windows 11 Driver Pack - 2.00 A 1 + sp80493 + HP Elite Slice Windows 10 x64 Driver Pack + 3.10 A 1 Manageability - Driver Pack - 9/27/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142690.exe - 1218887736 - 6b014af4edd72a68350f6327597b5df5 - 7AA2DA93FD71B11AC95BC46B5750F895C28B4603024DFA3280A2C017891DE17D - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142690.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142690.html - HP ZBook Power G9 Mobile Workstation PC Windows 11 Driver Pack + 5/23/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80493.exe + 347993592 + 3bfd1457398b17eac59ba21338cd8f3c + 2A6CEAC21D3AB9D43014273EB780E5A18C1645ED3B6DCDFABAFB9BE1277B23A5 + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80493.cva + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80493.html + HP Elite Slice Windows 10 x64 Driver Pack false - sp142802 - HP Elite Dragonfly G3 Windows 11 Driver Pack - 4.00 A 1 + sp158929 + HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack + 12.00 A 1 Manageability - Driver Pack - 9/29/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142802.exe - 1319553824 - 23de4c2c0cb09798802569c28e59185a - A5DB6B7C3198CA7F5F63BC5EF67C613E348A4D03D8E603BC629D1327D65F9E51 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142802.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142802.html - HP Elite Dragonfly G3 Windows 11 Driver Pack + 5/20/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158929.exe + 2904660640 + 185BC1A7E9032FA2E8431433B2DB2296 + 99B9B38708DB9CE9144BA610A47F7797A8FB5E8225DB2D48FA36B8622A6BB897 + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158929.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158929.html + HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack false - sp112432 - HP Engage Go G1 Win10 x64 Driver Pack - 6.00 A 1 + sp114248 + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 1/29/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112432.exe - 1023454232 - a05f332dc156943eadb845167bd70403 - FDC8F6BB6A7A5C3EB76DEB95B821C6719618C52FA0B4A767AB85957E527C8F92 - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112432.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112432.html - HP Engage Go G1 Win10 x64 Driver Pack + 6/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114248.exe + 886134344 + 8b54cafe69710ecdb74024ed18c700a8 + A31A7DF53553329BDCF9C4C454694BA7B836E3A611AE52E77C1FD3AEB6D08E1E + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114248.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114248.html + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack false - sp168419 - HP Engage Flex Pro G2 Windows 11 IoT Driver Pack - 3.00 A 1 + sp145052 + HP EB 4/6x0 G9 ZHAN Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 12/16/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168419.exe - 2490588560 - E82FB5C0D4429E616B530409F470A734 - CC0716CE465219810514BC5589F21A574035308BD3FF50AD66977E74868AEA2D - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168419.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168419.html - HP Engage Flex Pro G2 Windows 11 IoT Driver Pack + 3/1/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145052.exe + 1804608680 + aa59f9836bfec14884aef18d2ce87f10 + 8F682852B3CF6AEC2736F1B180BD5FDEC7B33FF5AB6F232B2AE49C46E412A319 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145052.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145052.html + HP EB 4/6x0 G9 ZHAN Windows 10 x64 Driver Pack true - sp97069 - HP MP9 G4 Win10 x64 Driver Pack + sp112356 + HP Engage Go G1 IoT10 2019 Driver Pack 4.00 A 1 Manageability - Driver Pack - 6/14/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97069.exe - 774963712 - 3e0a16208de1c99b235bdd714a270492 - CB3AD8CC01E4A7A540C5AA1248BBC4A73762CB595E0787C369E3C0841E3C39AF - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97069.cva - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97069.html - HP MP9 G4 Win10 x64 Driver Pack + 1/27/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112356.exe + 1024691080 + 6f081e16b4047f979e9aa997a0051401 + 8EE50B7AD709F70E412F7628BF616625C1A6131A10E3863280E6ECDA4AB9B2AF + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112356.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112356.html + HP Engage Go G1 IoT10 2019 Driver Pack false - sp158202 - HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 11/26/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158202.exe - 2173984456 - B167126113B86ACF2AA68C18E74C05A4 - EE5B8D4919B889BD7118F70F34DF1D49CD0DA9019B879DE0A00ECA14E3209535 - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158202.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158202.html - HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack - false - - - sp147159 - HP EB/ZB/x360 8x0/1040/FF G10 Windows 10 x64 Driver Pack + sp172023 + HP ZBook X G2i MWS Windows11 DriverPack 2.00 A 1 Manageability - Driver Pack - 5/24/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147159.exe - 1809359408 - 7994dd38a25c5afdad805d088b374f96 - 2090C9CBFFFFE10BA73189DA485A8060D9BB492D03C59D79099D89E667E896D8 - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147159.cva - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147159.html - HP EB/ZB/x360 8x0/1040/FF G10 Windows 10 x64 Driver Pack + 3/24/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172023.exe + 2976519528 + 1C12DFA28C839DADC3D005EA7D5AF7B2 + 8D05387BFE211095B96B05B059DD57B2733656FDB06B98ED5AEA540C6F0D81BE + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172023.cva + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172023.html + HP ZBook X G2i MWS Windows11 DriverPack true - sp144919 - HP Engage Go 13.5 inch Mobile System IoT10 2021 Driver Pack - 2.00 A 1 + sp144685 + HP Engage One G1 IoT10 2019 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 2/16/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144919.exe - 927566696 - d247c75756a49bca2513b6965c5687be - C459FCAF821C62B5803C245D39CCD3E6BF53E3C528B30451F39C23A8F9218C49 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144919.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144919.html - HP Engage Go 13.5 inch Mobile System IoT10 2021 Driver Pack + 1/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144685.exe + 292392480 + 743dd634df05ac604b05d7f9fe6d341c + 30C9871BC3A31E5832B2F534FC904257C428873853C7CBF77CC2507983053249 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144685.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144685.html + HP Engage One G1 IoT10 2019 Driver Pack false - sp103617 - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack - 11.0 A 1 + sp172736 + HP EliteBook G2i Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103617.exe - 799062248 - 679e310b408a495306674ad48a1f1a94 - AEDEF116AFC5CCA1220602D338A36FB8474D6B45A539D42EF5F084B9144BCD14 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103617.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103617.html - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack - false + 8/17/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172736.exe + 1219676576 + 8AE93F5F3D51452357FDEFFD7B9C9CEE + 184537E7A9B043CBC8850889C0917AD5AB23F9EE3B7C72FF3E64B195D31F376E + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172736.cva + https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172736.html + HP EliteBook G2i Windows 11 Driver Pack + true - sp102099 - HP EliteBook 840r G4 Windows 10 x64 Driver Pack - 10.0 A 1 + sp80155 + HP Sprout Pro Windows 10 x64 Driver Pack + 10.2017 B 1 Manageability - Driver Pack - 3/24/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102099.exe - 879458096 - 5457e310c6cd9316013bf80ddd25417f - A32168314CBAD9FB8DE88AE0F9BB77FC9FA7ABDB41FD610C0E7B6E224E6753C4 - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102099.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102099.html - HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 10/20/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80155.exe + 667714744 + baf56432ed603e1c4ebdd9cbc5ed5eb5 + FA21369C114C1EBA8F0912D6836138D50A4F087D22E20434E69F76DF6C9198AA + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80155.cva + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80155.html + HP Sprout Pro Windows 10 x64 Driver Pack false - sp114062 - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack - 4.00 A 1 + sp152773 + HP ZBook Power G11A Mobile Workstation PC Windows 10 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 5/31/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114062.exe - 1371475104 - c0ce6bc542a8a2c926f4312554d0fade - D4D9B229DB17C2552AB0287B8A90413B05FE2073DAA13A0F3D4EBF5CE1FFE2FA - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114062.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114062.html - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack - false + 5/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152773.exe + 1867146048 + 4dfc752aee7208c406c4fb4ad6ef0983 + 8FB4561DE7A321F800C221A6AEC55D7A63E7D5318CE915AC04F476F2E49AD17A + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152773.cva + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152773.html + HP ZBook Power G11A Mobile Workstation PC Windows 10 Driver Pack + true - sp93254 - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack - 1.00 A 1 + sp114270 + HP EliteDesk 705 G4 Win10 x64 Driver Pack + 12.00 A 1 Manageability - Driver Pack - 1/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93254.exe - 544581088 - b8ede917f55ce515cee4a566668d6106 - 3E1BA22B123C244FA16855246F264C15CA4D1911D706EB9CB36EDA2ED5769F8A - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93254.cva - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93254.html - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack + 6/25/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114270.exe + 1112316872 + e6100925e9153b5fe0055de4d681841a + 6AC16CD38A295C87E7A03357FB747399E0AFB7B022BF6176BA47460FA30372EB + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114270.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114270.html + HP EliteDesk 705 G4 Win10 x64 Driver Pack false - sp110180 - HP EliteBook x360 1040 G6 Windows 10 Driver Pack - 7.00 A 1 + sp112035 + HP ZBook x2 Windows 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 9/21/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110180.exe - 968659664 - 208a9b2f45d0f302b16f767780d37fa6 - 67497E537D2473CD7F9E28274FA9C85D324F35438570CF6251B5509C370EAA98 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110180.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110180.html - HP EliteBook x360 1040 G6 Windows 10 Driver Pack + 1/3/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112035.exe + 1156880080 + de952008c56f106c1fca639690b2ea56 + 6CB4D4F2249E38FDA9113700FE714308730436E7ACF8E85D7B0283E9398AE859 + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112035.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112035.html + HP ZBook x2 Windows 10 x64 Driver Pack false - sp92272 - HP RP9 G1 Win10 x64 Driver Pack - 2.00 A 1 + sp145105 + HP EliteBook x360 830 G8 Windows 10 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 10/22/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92272.exe - 479951248 - 9e73c039c6b1ec9ac4445c7933acefb4 - 4FE477607A3FB55A0CA691F3F8483265D6B4F468F0CE080EFCD09C79B0A9326C - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92272.cva - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92272.html - HP RP9 G1 Win10 x64 Driver Pack - false + 3/8/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145105.exe + 1259928568 + 9a4ff6630ce3c9977397010c31a442b3 + E5D1E45138AE669AE0BD3828174402F1B1C126A8F784B1200B13EF31B58DC165 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145105.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145105.html + HP EliteBook x360 830 G8 Windows 10 Driver Pack + true - sp108840 - HP Z2G4 Windows 10 x64 Driver Pack - 3.00 A 2 + sp142806 + HP ProBook 4x5 G7 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 8/31/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108840.exe - 1374088344 - a8678cfcff4ec3ce48eb0bcc8a439a4c - B1FF45F812B1ACE143CFF464F7B033B6042DD489681798FD7B1CE9F08572CE1F - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108840.cva - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108840.html - HP Z2G4 Windows 10 x64 Driver Pack + 10/6/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142806.exe + 1004011288 + 3df4d1b4ec940629cda209d5944a8c02 + D1583BC49BAD1B5F0D4A21C1A22BBDC1C999A3F53B58719BBC6580298E268DD3 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142806.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142806.html + HP ProBook 4x5 G7 Windows 10 x64 Driver Pack false - sp168949 - HP ZBook Studio G11 MWS Windows 11 Driver Pack - 5.00 A 1 + sp170007 + HP ZBook Power G11 MWS Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 1/13/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168949.exe - 2567603704 - 4AE833641CB8860ADB9AAB5BCCF6654B - D634A2C324B84C5C8448431E40808B9443458990F1F5A640A0A9B5D18C502903 - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168949.cva - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168949.html - HP ZBook Studio G11 MWS Windows 11 Driver Pack + 1/19/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170007.exe + 2606280304 + F75F8409E7284CB7911483CC80C14F30 + A9AEC451CF4EA211BE776B0C5598789F64DEE4164080D4C029A3B87E231FDE0F + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170007.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170007.html + HP ZBook Power G11 MWS Windows 11 Driver Pack true - sp135910 - HP Z2G5 Windows 10 x64 Driver Pack - 5.00 A 1 + sp114245 + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 10/15/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135910.exe - 1499518472 - 2225fefc94e3dd69e7531d4513737728 - CFDC1182F8138F18771251F0A7B4D8AED30527F937A1611C03098AFF7F5CEB3B - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135910.cva - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135910.html - HP Z2G5 Windows 10 x64 Driver Pack + 6/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114245.exe + 1407982088 + 604f0b0389475e404fa351eef3247053 + C16A6A4C3EDC8CD22DF1E3C04983072D20C911861AFAD4339A32F4124204A6AF + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114245.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114245.html + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack false - sp101080 - HP Folio 1040 G3 Windows 10 x64 Driver Pack - 16.0 A 1 + sp112643 + HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 12/30/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101080.exe - 512101680 - 5d40e0ff97a88ad562c900c4a7ee85e6 - 3D93BD654713CBA820A73E0EFAC9EF68104C01129A1BD2E477B702821B1C6463 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101080.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101080.html - HP Folio 1040 G3 Windows 10 x64 Driver Pack + 2/8/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112643.exe + 1827974072 + 168774fa8d395090920a8d4fc1bdc57a + ABCBEA08C1C5AF3586E68A1422CFA0FED8C01710EFF67FC8D5432FFA3BE25E14 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112643.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112643.html + HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack false - sp95314 - HP Folio 1040 G3 Windows 10 x64 Driver Pack - 14.0 A 1 + sp114195 + HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 14.00 A 1 Manageability - Driver Pack - 3/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95314.exe - 590992608 - a5cfcac810f39cff133afe30e7b87d6b - 76DD3BFD35D43575858D2474029B3F2E56D1848CC5011FF01760E8B3F78A6330 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95314.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95314.html - HP Folio 1040 G3 Windows 10 x64 Driver Pack + 6/15/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114195.exe + 1604021320 + b517449ad3c4dc3210c5a8387d2bb6a1 + 2A4798EA976990C6CD4B5FD8C41D74C44BDE93EBD18E5A0145234FE06AF3E696 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114195.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114195.html + HP Probook 6x0 G4 Windows 10 x64 Driver Pack false - sp79057 - HP ZBook x2 Windows 10 x64 Driver Pack - 1.00 A 1 + sp91842 + HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 11/27/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79057.exe - 987922272 - f75337b31c8a660e5220b59b6e3495e9 - ACEBAC2DB99ECDB46396E8A70063185A2522E346BE2F9EF844033C9B4AFD8F37 - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79057.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79057.html - HP ZBook x2 Windows 10 x64 Driver Pack + 9/6/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91842.exe + 783728224 + a9f65026d0475891fc3997d3df26aff7 + 8371916D197F837F261FBCEC600EB08E560972DF4D7F8B505FD850D309309438 + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91842.cva + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91842.html + HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack false - sp144948 - HP Engage Go 10 Mobile System IoT10 2019 Driver Pack - 4.00 A 1 + sp84353 + HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 2/17/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144948.exe - 606096616 - 85cd81ec8dbd229d1d05ad5b2a3d0407 - D3708D370C1DEC77D3F7CFB4F8CA7009717FDF9DE5F3607BCEFC06C82750F9F9 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144948.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144948.html - HP Engage Go 10 Mobile System IoT10 2019 Driver Pack + 2/1/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84353.exe + 742422856 + 907ee23581cd42d8df33286d249bcd3b + 5C4766BCE4A5F490AF23D59697FEFC39F33C9164B0E5867C17E75C59F2A2C0CC + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84353.cva + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84353.html + HP EliteBook 840r G4 Windows 10 x64 Driver Pack false - sp109005 - HP EliteOne 800 G6 AiO Windows 10 x64 Driver Pack - 1.00 A 1 + sp144693 + HP Engage Flex Mini IoT10 2021 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 9/9/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109005.exe - 1453587648 - 9943bb1ecfd77becd41e25a0edbe6385 - 8E77D36F746276C09EC289966FF4562B2E651AEB9AB22A33B941CA85BA21C7D6 - https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109005.cva - https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109005.html - HP EliteOne 800 G6 AiO Windows 10 x64 Driver Pack + 1/24/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144693.exe + 615904704 + e38439d99221fa3b9bd1674ab9fcf708 + 71117E82D7A44EE44168F2FFF53C33C402404994A1ADCADB271EFCB4DD6AA669 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144693.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144693.html + HP Engage Flex Mini IoT10 2021 Driver Pack false - sp95338 - HP Z6/Z8 Windows 10 x64 Driver Pack - 4.2019 H 1 + sp96781 + HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 4/10/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95338.exe - 699438296 - 1e2cb670af29571751d69f837969a413 - EFE7EEDA2629F1792DAA00450D279A91E00430BC62C68B5ADFB624921043B4D5 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95338.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95338.html - HP Z6/Z8 Windows 10 x64 Driver Pack + 5/30/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96781.exe + 812260784 + a9f98a759828fe824747bc966afb4c22 + 23EE32166C64E850BD567A7C1EA71ABDFA96A59D6A738035AC8E170EB3F0E362 + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96781.cva + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96781.html + HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack false - sp88986 - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + sp157058 + HP EliteBook G1i Notebook AI Windows 10 Driver Pack 2.00 A 1 Manageability - Driver Pack - 7/20/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88986.exe - 612931656 - 6aecc113dc9b34fcea39f0f46bfd0d46 - 75923BF65AEDCCFB74A77C013D69CF3CE8A83235BE3055E88A01D2756AD7BB80 - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88986.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88986.html - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack - false + 2/12/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp157001-157500/sp157058.exe + 1439851768 + A0B548D00EEF936C62DC282749AEAB32 + 229EC3C5FEFB88D320598043D22DB93D0B3E0C1E1EF79D6BDF6C8645F2CD32A7 + https://ftp.hp.com/pub/softpaq/sp157001-157500/sp157058.cva + https://ftp.hp.com/pub/softpaq/sp157001-157500/sp157058.html + HP EliteBook G1i Notebook AI Windows 10 Driver Pack + true - sp91840 - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - 3.00 A 1 + sp168373 + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack + 10.00 A 1 Manageability - Driver Pack - 11/1/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91840.exe - 803440328 - 44419c4c513a2444be6c9d35e475e083 - 877D8E75B0BD83EF4E8F64C2FFDC9EF7121D6C4658134B17E51F6DDA15CB70D8 - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91840.cva - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91840.html - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - false + 12/15/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168373.exe + 2659303112 + DB26EB32ACCEC11846431E3A5CF83D20 + 62D4AA01B4CAE28352C0EC887242A29620F06901E853ABB3818D73CC09359F81 + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168373.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168373.html + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack + true - sp93501 - HP ZBook 15v G5 Windows 10 x64 Driver Pack + sp96974 + HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 1/10/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93501.exe - 945372984 - 1188da4dcfe172dcd516e12100052ba2 - D5AEB548A73DC0E233DCC68C9A5811985EF00A13DCFD75CA76461926F3A55B94 - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93501.cva - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93501.html - HP ZBook 15v G5 Windows 10 x64 Driver Pack + 6/10/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96974.exe + 799163936 + c35413e055cd8f55929d0189b996f043 + 64602B88D3EB990B76B2854AE81EE14FD4EE8CD8F440DC19E1F99F142284A446 + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96974.cva + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96974.html + HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack false - sp168372 - HP Engage Flex Mini G2 Windows 11 x64 Driver Pack - 3.00 A 1 + sp96289 + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 12/15/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168372.exe - 1331878384 - 52C879481617640C1296D66DB509BE4D - 4DCDB4A558151AF364270291F621BEB1AB55DAD8CC646CB9C28FA3B342B5DF24 - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168372.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168372.html - HP Engage Flex Mini G2 Windows 11 x64 Driver Pack - true + 5/13/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96289.exe + 809115856 + 0142a2335f69e31ed3e6d0790e94dee0 + 1BF3851A3FB28E48647C41FCF8CA1202E60F78E98A84734C5D2C0E47B1E00635 + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96289.cva + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96289.html + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + false - sp150284 - HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack - 5.00 A 1 + sp158770 + HP Engage Go 10 Mobile System Win11 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 11/30/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150284.exe - 1010952464 - f780baec3e403c50368e65aab899bade - 7B58A53739B5F1B82DE1310F2F0892EC9EA115AEC0549FED641A2364C1BEE5FF - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150284.cva - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150284.html - HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack + 5/12/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158770.exe + 1421640136 + D2D52CCFCDCDBB7A41CA2B49A1E1D414 + BC65BE2A54224135B163410D77D14464035ABE459E1E6466B9C5A5E066A079CB + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158770.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158770.html + HP Engage Go 10 Mobile System Win11 x64 Driver Pack true - sp99401 - HP Z240 Windows 10 x64 Driver Pack - 2.2019 N 3 + sp108773 + HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 9/26/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99401.exe - 824912944 - 3acee6fd73900c1c713e7524619ea776 - A1ECD3882018ADEEA239A10B50508A0DCD480B7762A0C4C722801CEE5FF3BC97 - https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99401.cva - https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99401.html - HP Z240 Windows 10 x64 Driver Pack + 8/26/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108773.exe + 1855793760 + 66ac048befae72bd59d7728f3eee69f4 + 4F94429B5EF5741C8A1B4EA0FC67CFE296E5D75156C102FE9CF205F03722EF48 + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108773.cva + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108773.html + HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack false - sp142910 - HP Elite Dragonfly G2 Windows 11 Driver Pack + sp99461 + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 10/6/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142910.exe - 1291829184 - a822888dc9d0f30f1d532766a32390c8 - 64442DB15391BFFB05C2E90CE34FA7EECBD706A9ABC5FF1D69D5D98165AFF296 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142910.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142910.html - HP Elite Dragonfly G2 Windows 11 Driver Pack + 9/30/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99461.exe + 704514272 + 0bd09714dc4dce2b72162937b9a403cc + 589FFA7164D273EC0894C521A2B4B3DFD7D89A91F391F084D40724A0B8560A50 + https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99461.cva + https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99461.html + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack false - sp152820 - HP ZBook/EliteBook 8x5 G11/A Windows 10 Driver Pack + sp79219 + HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 2/24/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79219.exe + 478142592 + 50d6be9aa5c6fcea64b8da3a6eb09dbf + 54E2CC4433CC7ED8570057DD4801BFA9B484361780D4280C080E412CCFC28F51 + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79219.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79219.html + HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack + false + + + sp88652 + HP Z240 Windows 10 x64 Driver Pack + 7.2018 K 1 + Manageability - Driver Pack + 7/5/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88652.exe + 1031327096 + 5ffe3cb3596c619d1f72581bcc5b6956 + 88222F1CD6541067E958245DAAF7105AEAFCCD12CE8F9C604BBFABB6BF0A384B + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88652.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88652.html + HP Z240 Windows 10 x64 Driver Pack + false + + + sp111578 + HP Engage One Pro AIO Win10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 5/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152820.exe - 1110797232 - a4277ca2b663aae649670ba822a48bb5 - C090837A4CB740BC38019005E9A58B41D052469BC6F757D942A25F156DEBDC43 - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152820.cva - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152820.html - HP ZBook/EliteBook 8x5 G11/A Windows 10 Driver Pack - true + 12/10/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111578.exe + 468544152 + 1f78693d332a00b0d99bfe4bd9717fc6 + 16FE3130489B622CF58ABD665FB83AAEF11580624975AFD9C28399FA8F9CBC62 + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111578.cva + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111578.html + HP Engage One Pro AIO Win10 x64 Driver Pack + false - sp100045 - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + sp112656 + HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack 7.00 A 1 Manageability - Driver Pack - 11/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100045.exe - 917714784 - d00fa2991d7a3f6ce975f2efa94c9bf1 - 8F17D64C88D1DD43F3B02677A2EB48BC3BD305FC2FB02D0B324DD08224294A08 - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100045.cva - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100045.html - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 2/12/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112656.exe + 1394309288 + c3e063689f647aeb2282b83a25210ad0 + A03917092BB67ABD2FCE38D0488F889C6BAA7BDA3F8EA11E837B9743AD254E7A + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112656.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112656.html + HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack false - sp168972 - HP EB/ZB 8 G1a/ak AI NB/MWS Windows 11 Driver Pack - 4.00 A 1 + sp149056 + HP ZBook Power G10 MWS Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 1/14/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168972.exe - 1105828520 - 9D26FA58816A1188367ADB8D73251328 - 0872662ED208835CE41BDF295AC02B852F1627B7488510DAD08221A2BBAC7941 - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168972.cva - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168972.html - HP EB/ZB 8 G1a/ak AI NB/MWS Windows 11 Driver Pack + 8/31/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149056.exe + 1545743760 + 0cde0adf1d2876e8458ba27ff7b9b10f + F9EAE24F296EB878AE3B999086DED42DD05E429885124DD87AD4E52CC64071CA + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149056.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149056.html + HP ZBook Power G10 MWS Windows 11 Driver Pack true - sp99584 - HP RP9 G1 IoT10 2019 Driver Pack - 2.00 A 1 + sp158206 + HP ZBook Power G11 MWS Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 10/23/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99584.exe - 544839200 - 9cfdf4c12f8b12a71453ef23fea401d7 - 8017508469EE9C3B727F820C440B4FF7D8805E46A54EABFC43C4A62565C416A5 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99584.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99584.html - HP RP9 G1 IoT10 2019 Driver Pack + 5/5/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158206.exe + 2272805152 + A27DDD48D9704E4FF843539B043B2532 + 1AE84AABB43CC880E2CC3EAD5B7D5687681FC9E821B9A625D478B47FDD8A4348 + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158206.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158206.html + HP ZBook Power G11 MWS Windows 11 Driver Pack false - sp99864 - HP Elite Slice G2 Windows 10 x64 Driver Pack - 9.00 A 1 + sp144620 + HP ProOne 4/600 G6 AiO Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 10/28/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99864.exe - 512118576 - 4A73FAA3CACE6E4126BD4A4E288E6834 - 39F4D9BDC693E75CC98BEE75823EE18FB2E006FABB65D13E0D13A73978843833 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99864.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99864.html - HP Elite Slice G2 Windows 10 x64 Driver Pack - false + 2/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144620.exe + 1323202872 + 04ca1e17a96442ee64166685a4e6f158 + 74FAE81CB34E176E5A978970FA88274A63FB40C773CE115C5A07C84D0CE86BF2 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144620.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144620.html + HP ProOne 4/600 G6 AiO Windows 11 Driver Pack + true - sp148713 - HP Engage Flex Pro G1 Win11 x64 Driver Pack + sp151305 + HP Engage Flex Mini Win11 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 8/8/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp148501-149000/sp148713.exe - 1163946824 - 1a21a374cdbecb0ec683885d7df767d1 - 5E234950C8A313D5F19135D57BD754EB8CF62307F82A38D74AF2F3CAF852B60E - https://ftp.hp.com/pub/softpaq/sp148501-149000/sp148713.cva - https://ftp.hp.com/pub/softpaq/sp148501-149000/sp148713.html - HP Engage Flex Pro G1 Win11 x64 Driver Pack + 2/5/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151305.exe + 731305656 + 38bcc1a905ede977c5911d5b610d45c1 + DFC9C9FBE634DA9259EB16245425E7D06C123CB0B9AB83D731E3A273DC3E7698 + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151305.cva + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151305.html + HP Engage Flex Mini Win11 x64 Driver Pack true - sp91405 - HP ZBook x2 Windows 10 x64 Driver Pack + sp93537 + HP Probook 6x5 G4 Windows 10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 8/7/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91405.exe - 1016387224 - 474262205c25c6a50d5d245f42c62a77 - BE0C83CD57E77D419EA2C2EEE6FC4B638C5F1505CA5BFA8EF99C263C97401217 - https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91405.cva - https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91405.html - HP ZBook x2 Windows 10 x64 Driver Pack + 1/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93537.exe + 725158808 + 3b2acf9e07a8b4d6c6ce485623ff1e7a + 111ACAFEFE08B74343E878166A6CF7BE5E7697DE180B876DA6B779235F34E0E6 + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93537.cva + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93537.html + HP Probook 6x5 G4 Windows 10 x64 Driver Pack false - sp103620 - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack - 10.0 A 1 + sp78583 + HP Z1G3 Windows 10 x64 Driver Pack + 01.2017 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103620.exe - 834431352 - 4387d1574719dd1d1208c541b9bd4b44 - 430B381D162EE15F05B3056DB395F498DD803BAB828DD8F38E2D1DDB0CCB9C5C - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103620.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103620.html - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + 1/11/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78583.exe + 500654016 + 3d4c980bfdb74957fcf9b2e7930bac51 + 3BB5EB770E0D8A7D74E9053C8BB4049D3BF735564BD8D9E2521F91C50FE89AF8 + https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78583.cva + https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78583.html + HP Z1G3 Windows 10 x64 Driver Pack false - sp88880 - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack - 2.00 A 1 + sp103588 + HP ProBook x360 11 G3 Windows 10 x64 Driver Pack + 6.0 A 1 Manageability - Driver Pack - 7/6/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88880.exe - 716498704 - dc9a712e5a3104981e18e2a8acf8bc1d - 013231C5A92CE9DB5ECB38C9C4853F315080D92ADDDF14FE19F3E4D1F267BE1F - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88880.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88880.html - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103588.exe + 802354288 + 1d00764ad1974da3e78e526b5d60fc10 + 120BA7916560CA8A5540865054FB1BB9F8A1D36D1ADA3EA7E731529D2851A11A + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103588.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103588.html + HP ProBook x360 11 G3 Windows 10 x64 Driver Pack false - sp151779 - HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack - 4.00 A 1 + sp113360 + HP EliteBook x360 830 G8 Windows 10 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 3/15/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151779.exe - 1040300624 - 594d9c6ae46304f0416396f99f5a2317 - BE9BDB46276DF66967D1E64289E201B06D42F00AC99529297E2244E165E71158 - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151779.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151779.html - HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack - true + 4/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113360.exe + 1239240392 + dc6109678762337d1b46c91157859fd9 + 3B0A7FC6658554F688A84E63B13945521006BBE3894D2643CA18617350573C0A + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113360.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113360.html + HP EliteBook x360 830 G8 Windows 10 Driver Pack + false - sp100592 - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack - 8.00 A 1 + sp84657 + HP ElitePro 400/600/800 G4 PC Win10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 12/9/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100592.exe - 807097888 - c233f6f5d79ec06f9191e3b4f92d6a72 - 6394E192E49205C83CC6A789F4F00633D49FDB9BA4FC297F4AFECD67040CB173 - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100592.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100592.html - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + 1/10/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84657.exe + 920095384 + c7102ab053dae3b762d1e2878547194b + 1608EFB8B70ABB9216E4A765BAA16B002A32879B05C7D9989B4C34211B942437 + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84657.cva + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84657.html + HP ElitePro 400/600/800 G4 PC Win10 x64 Driver Pack false - sp113980 - HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack - 5.00 A 1 + sp140788 + HP ZBook Studio G7 Window 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 5/25/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113980.exe - 1336715096 - 0856d43f2e70fa9500d2cf594a7fee6c - 0354C74DAB93B43349D57D37FEF38230C334BA39C63A694984FA0F87F40325A6 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113980.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113980.html - HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack + 6/23/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140788.exe + 1300909400 + d26561df11c6310be35bbebb9af93a49 + DB2A962877BD4FF4A832580453EC992DEAB6EA6485C5C7DD6EA4AC86EFC44D77 + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140788.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140788.html + HP ZBook Studio G7 Window 11 Driver Pack false - sp170064 - HP Fortis Flip G1i Windows 11 Driver Pack - 3.00 A 1 + sp85545 + HP Elite Slice G2 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 1/22/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170064.exe - 1307607424 - B09328C223C1CCF282E0FEB9150D332B - 96F6B5D6DCD7FF4A758DDA35D00B8590F0B8878591C96D161A5933A557A8BD14 - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170064.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170064.html - HP Fortis Flip G1i Windows 11 Driver Pack - true + 7/24/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp85501-86000/sp85545.exe + 550020784 + e0839d8aeb4b914c70872fdfca06e27f + 5456E35886510B1E52E39D0FAC34721CFE25FFBF62E8645AA299F2BA55D6009E + https://ftp.hp.com/pub/softpaq/sp85501-86000/sp85545.cva + https://ftp.hp.com/pub/softpaq/sp85501-86000/sp85545.html + HP Elite Slice G2 Windows 10 x64 Driver Pack + false - sp114120 - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack - 8.00 A 1 + sp113276 + HP Z2G8 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/4/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114120.exe - 1435067520 - 7e8428673dab1880c2f3bba19f9fa209 - A66BB6A4ADFD2EE588EF73205527626426EE4E26BCBA8A03539BDF418347C472 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114120.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114120.html - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 4/30/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113276.exe + 1478598768 + f6058cabad4c5eceae6ec926e53fa8aa + 79D8CC26284A3E7BEC20A0C13C95F6EB3489B8AA41E168769DBF406849C41443 + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113276.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113276.html + HP Z2G8 Windows 10 x64 Driver Pack false - sp91373 - HP Engage Flex Pro G1 Win10 x64 Driver Pack - 1.00 A 1 + sp136488 + HP ZBook Studio/Create G8 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 9/13/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91373.exe - 1069692464 - afa9171e79f40a34c154047fed7c509d - D20ACFAA834D06517EB4A756936AC7F2F2F62E23EFD6AC4F66CFFFEE636DD636 - https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91373.cva - https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91373.html - HP Engage Flex Pro G1 Win10 x64 Driver Pack + 12/2/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136488.exe + 1265001808 + 4c894d6c9037f8efcb14111db9017de0 + 90511340AE468EBED4218426269BC19581077275A4A3BA01ACBC0819D9F8CFE2 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136488.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136488.html + HP ZBook Studio/Create G8 Windows 10 x64 Driver Pack false - sp168962 - HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack - 10.00 A 1 + sp99891 + HP Elite Slice Windows 10 x64 Driver Pack + 17.0 A 1 Manageability - Driver Pack - 1/13/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168962.exe - 2597799912 - 3DA636CBF1ECA15A5ED1D8F527BBF24B - 66C05D5CD25D3ED3198696E5501BE392D478964BA052151B7021374D4AF8C0D2 - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168962.cva - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168962.html - HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack - true + 10/28/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99891.exe + 507055712 + d7ad7eeae18506a7988eeab50227c828 + F21C02513B31E24E73D642C5E0D1A0C1702DC8C72E3915B2F9C37B676F3C1135 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99891.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99891.html + HP Elite Slice Windows 10 x64 Driver Pack + false - sp83810 - HP EliteDesk 705 G3 Win10 x64 Driver Pack - 10.0 A 1 + sp112348 + HP Engage Go G1 IoT10 2016 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 11/18/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83810.exe - 752907528 - 5fb9dfede8aafb05a89a5ce2e5563067 - 3E6AE2A134C3EC5F6F0191886C732421244037C9FDD6F120B5E0FA5588D56E99 - https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83810.cva - https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83810.html - HP EliteDesk 705 G3 Win10 x64 Driver Pack + 1/26/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112348.exe + 688882368 + 2589637ca89344878e770d46471f9a2e + D7FF9F4E024FFD6CCAB4E47911C095A385FAFD45241167E8BAD686363802EB01 + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112348.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112348.html + HP Engage Go G1 IoT10 2016 Driver Pack false - sp114269 - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack - 14.00 A 1 + sp79089 + HP Z2 Mini G3 Windows 10 x64 Driver Pack + 02.2017 A 1 Manageability - Driver Pack - 6/25/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114269.exe - 1672904048 - 014d2020fccb4e2d9c44133aa8798425 - 2145E0F5C436AACC45A32DCD186DDC195F3B8F4A62B1FB6D5D1C17687DB1ACB7 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114269.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114269.html - HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + 2/21/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79089.exe + 711472096 + 2f765f5c8887db0824d4d8b4392e3f4c + AE55497DB6D853D2AFB7811650F16384205953D8E4D8070538701512166B06B4 + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79089.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79089.html + HP Z2 Mini G3 Windows 10 x64 Driver Pack false - sp168731 - HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack - 10.00 A 1 + sp113701 + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 1/5/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168731.exe - 2004336480 - 0720C9D06586E3254DBB33115DB001BD - C109B2BEABF3A20600828A8493733315FE9C4E2702E6EED51098A8AA04620E6B - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168731.cva - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168731.html - HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack - true + 6/9/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113701.exe + 1396861184 + 53887496f63b248979a92f6735a1b89c + 3CD9ABFE56268408BA593635518B96A5EFCE652D24BF964C99225367B3880CAC + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113701.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113701.html + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack + false - sp142908 - HP ProBook 4x0 G8/ZHAN G4 Windows 11 Driver Pack - 2.00 A 1 + sp101475 + HP ProBook x360 11 G6 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 10/7/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142908.exe - 1298060736 - 4d3a123d8205f7fd5a669a50677e8c96 - 65A55D5DB573679D0FCE48B5CF2BEA68B08A15B9CDD78D8CBF2CF4CF5EC6225F - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142908.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142908.html - HP ProBook 4x0 G8/ZHAN G4 Windows 11 Driver Pack + 1/28/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101475.exe + 601203584 + af79b3796784cd7df292840377ef75b0 + 53CBDE4F1ECFF7FD221DEB034D0501E85392D700E9138C7644BE884A613BBE6D + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101475.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101475.html + HP ProBook x360 11 G6 Windows 10 x64 Driver Pack false - sp146391 - HP Z2G9 Windows 10 x64 Driver Pack - 6.00 A 1 + sp158931 + HP Z4 Rack G5 Windows 11 + 8.00 A 1 Manageability - Driver Pack - 4/18/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp146001-146500/sp146391.exe - 3162207144 - e79bf077ae14a93672cd076a689407a1 - 228228B34C4372E1884BA03BCAB328D1C30D4B5CCA4BC4FB9620BF3F8BDA8211 - https://ftp.hp.com/pub/softpaq/sp146001-146500/sp146391.cva - https://ftp.hp.com/pub/softpaq/sp146001-146500/sp146391.html - HP Z2G9 Windows 10 x64 Driver Pack + 5/20/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158931.exe + 2125733072 + 2963845C319F41F5D5800C462A55C319 + 55C82AF61126C55FAFA996EFB14CB8D53C1A5AE0F90471F15C485DEC8B5981DB + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158931.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158931.html + HP Z4 Rack G5 Windows 11 false - sp114275 - HP EliteBook x360 830 G8 Windows 10 Driver Pack - 4.00 A 1 + sp170006 + HP Pro x360 435 G10 Windows 11 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/25/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114275.exe - 1347239392 - 788327148efa1b8f07877544afd4f6ad - FDEFC84DF08EF4E6FAAAA56DF3C7667741477473E2947EDBA0F52DAE499EDBD9 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114275.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114275.html - HP EliteBook x360 830 G8 Windows 10 Driver Pack - false + 1/19/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170006.exe + 1285483152 + 1578439B057EF0B5EA43095EBE7A4DD7 + 77D04DD322DB25B1D75F76CD7DB37BEA9748C59162945E15F5156E0AC117DFE3 + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170006.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170006.html + HP Pro x360 435 G10 Windows 11 x64 Driver Pack + true - sp84801 - HP Z6/Z8 Windows 10 x64 Driver Pack - 2.2018 C 1 + sp101208 + HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/21/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84801.exe - 1031299552 - 456884612f9f84472a05111b3e924b47 - 6E8125A71EE50DF5D5710FD895622E0966570DAD43FC049205F3E4062DC20251 - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84801.cva - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84801.html - HP Z6/Z8 Windows 10 x64 Driver Pack + 1/27/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101208.exe + 412295160 + 6d52b617ed0c0ac6933414ff760d6545 + 075533D1CB237F87F63E34F3360C504F8A41ADD188A8F2E9A891DC509193B39A + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101208.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101208.html + HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack false - sp157679 - HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack - 9.00 A 1 + sp149062 + HP ZBook Studio G10 MWS Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 11/27/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157679.exe - 1998501448 - 4E4DACC2C9E69764B2747589933E8033 - 3F6F592F32D4FAC20B30C74D2E15FB074ABA0CAD5686278C33E7D311B06F088A - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157679.cva - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157679.html - HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack - false + 8/30/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149062.exe + 1534508960 + 89e8fbeba3d62a21366bc3c0a0ac73ab + E1B8BEE9A709DB556EE8E99371E47C68C70A8ABF053F264207C6BB43AF522906 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149062.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149062.html + HP ZBook Studio G10 MWS Windows 11 Driver Pack + true - sp158332 - HP Z2 Mini G1i Windows 10 x64 Driver Pack - 1.00 A 1 + sp147695 + HP Elite Dragonfly G4 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 4/23/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158332.exe - 2143883344 - 89F44D2BE675C53C885A81B615D98258 - 9BCB77C3EDB5FF8B71BA849D8B3619561D99920856D8CDFDB6F8522E332ACFA0 - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158332.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158332.html - HP Z2 Mini G1i Windows 10 x64 Driver Pack - false + 6/8/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147695.exe + 1075721664 + 754e1c7446bcc15818864b2b04b0f100 + F1E3BB80E7C87162FE8CACCA4EFA83D33814735C9E89EB828400075DBCFEED73 + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147695.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147695.html + HP Elite Dragonfly G4 Windows 10 x64 Driver Pack + true - sp93539 - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - 15.0 A 1 + sp144947 + HP Engage Go 10 Mobile System IoT10 2021 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 1/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93539.exe - 1010426232 - 4b689f95c5a93c9179d183cb48cff59a - E086CE2C70E80709A018F0DFA9BB562FAE5E934C1CA0018BA2F25FFBC89F6683 - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93539.cva - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93539.html - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - false + 2/17/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144947.exe + 927566720 + 710a8fe021e0cd30af131520a677f5a4 + F5AF87D5375A4AEDA1813050C42BBE5427CA62B2E51DC68253A78FBAAC724977 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144947.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144947.html + HP Engage Go 10 Mobile System IoT10 2021 Driver Pack + true - sp110579 - HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack - 5.00 A 1 + sp111234 + HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 10/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110579.exe - 1463645216 - 2fde37e930a800ef78b5c1903092a487 - E4814767EE35395B36C72B8A4F35F9DDD7ED1A683507926B528860B0AD803FCB - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110579.cva - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110579.html - HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack + 11/24/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111234.exe + 1366595384 + 03f574fd356d9460c0bd61c714e7e023 + E32F93E10619D69D9A5267CA8E005470BA2CC5F8E143930FB50C172B2D036759 + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111234.cva + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111234.html + HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack false - sp80906 + sp96058 HP EliteDesk 705 G2 Win10 x64 Driver Pack - 7.00 A 1 + 11.0 A 1 Manageability - Driver Pack - 6/23/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80906.exe - 790596096 - d24899cf28f23e2ff88cabc1b1f136a1 - B33CF9306110B32772A719D4E7960B6D8DAF3CA16741EBD4B6653CEF97BA4162 - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80906.cva - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80906.html + 5/2/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96058.exe + 827904560 + f57a54c15d5ec79ff844bca19c79980d + 465D8C982BBC2569ECF7B516EAE57128B225117414A0099BA26DD5286FB50F1F + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96058.cva + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96058.html HP EliteDesk 705 G2 Win10 x64 Driver Pack false - sp173617 - HP Pro/EliteBook 4/6 G2i NB AI Windows 11 Driver Pack - 2.00 A 1 + sp87003 + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/19/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173617.exe - 2531450008 - 14BAE94CE86A40D5685388F4DF6ADE16 - 73F36094F8E29A72C7DC3E6AF43ECC3EA1470993C5842A5EA07D2DD91ECC0468 - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173617.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173617.html - HP Pro/EliteBook 4/6 G2i NB AI Windows 11 Driver Pack - true + 3/27/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87003.exe + 818808928 + 1ead9209e149bef01f626a170c050d4e + A0FC4A842B48AE20961BFEA524AFB39FDA0D1BF69B8FF6A05A47CAF5AF13FBF2 + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87003.cva + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87003.html + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + false - sp142670 - HP Elite/ZBook 8x0 G8 Windows 11 Driver Pack - 3.00 A 1 + sp80814 + HP Z1G3 Windows 10 x64 Driver Pack + 07.2017 B 1 Manageability - Driver Pack - 9/27/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142670.exe - 1500744608 - a0f256cb8ac16a3f65117af20567c692 - C5EA48AFDA2C818E3A5E59734F0CE721F157D4C06622D98AB92CCB504DFABB87 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142670.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142670.html - HP Elite/ZBook 8x0 G8 Windows 11 Driver Pack + 7/11/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80814.exe + 556709816 + 9d5ec732d153effd993e29c54432cb87 + A54E495C2FF33770CA906423FA6488D18466BD285D980B21D5E5F00CF627AC25 + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80814.cva + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80814.html + HP Z1G3 Windows 10 x64 Driver Pack false - sp158219 - HP Elite Dragonfly G4 Windows 11 Driver Pack - 6.00 A 1 + sp161705 + HP Pro4 AIO G1i AI PC Windows 10 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/3/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158219.exe - 1541910056 - 9E95595BEA6A0AD09DCAD55333C16D86 - DC95398BC1C1BFACEFBB2133EB1600ED60286EB5D42EEA9B02F1815051FC047B - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158219.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158219.html - HP Elite Dragonfly G4 Windows 11 Driver Pack + 7/31/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161705.exe + 2716246000 + 5E91E152A2EFE5B49C85FB869FC3E2BE + 3BDBF9141FBE776512879C50372C099D28EDC5258E60DA91F7BBA3F92AD70D31 + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161705.cva + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161705.html + HP Pro4 AIO G1i AI PC Windows 10 Driver Pack false - sp167303 - HP EliteBook 6 G1a Notebook Next Gen Windows 11 Driver Pack - 3.00 A 1 + sp145152 + HP ProBook x360 Fortis 11 G9 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 12/11/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167303.exe - 1474404760 - 803AD603A93AF6BF93C9E76CE8D5900F - D401F1483BB0F6F7E225FCC957725CCE1FF3B5C7640B1E97C6518FBA5F038AEC - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167303.cva - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167303.html - HP EliteBook 6 G1a Notebook Next Gen Windows 11 Driver Pack + 4/20/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145152.exe + 862814264 + cbde15f1e9ecca0f9876ab4cadce0537 + 6E96C8E1B1AF19052DAC700CBE1BCEC72478BEF64B8D26BC08BC7E8AD3323FF4 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145152.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145152.html + HP ProBook x360 Fortis 11 G9 Windows 10 x64 Driver Pack true - sp100851 - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack - 14.0 A 1 + sp105919 + HP EliteDesk 705 G2 Win10 x64 Driver Pack + 13.0 A 1 Manageability - Driver Pack - 12/19/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100851.exe - 842398592 - 1495117eec0ea56919ccca7b0f5beb65 - DA567C935024ACE46A30C0DB44ABAA17C70BBD4C8FDB696E284EF16B10E9BF30 - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100851.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100851.html - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + 7/3/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105919.exe + 872694152 + 1d14df74418b4276a2016db847b6a618 + ED2C99F44E40033C1BFC902E1C5C8258985F3B252F47D98AB65040BCDB66B2B8 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105919.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105919.html + HP EliteDesk 705 G2 Win10 x64 Driver Pack false - sp134540 - HP ProBook x360 11 G6 Windows 10 x64 Driver Pack + sp142776 + HP EliteBook x360 830 G8 Windows 11 Driver Pack + 3.00 A 1 + Manageability - Driver Pack + 9/28/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142776.exe + 1307930616 + d50caf78a496602cc92a4ffbbf27554a + 3DB06E297C6789BF4C8F11E4113D15B2A1F05B269EEAB2225EB5CFBF942F8B4A + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142776.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142776.html + HP EliteBook x360 830 G8 Windows 11 Driver Pack + false + + + sp96751 + HP Pro x2 612 G1 Tablet Windows 10 x64 Driver Pack 7.00 A 1 Manageability - Driver Pack - 9/15/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp134501-135000/sp134540.exe - 676683208 - d734e018d1bea77660962328670e0396 - 02F42AA7F681088123981CFB902DD00552F2A558CED69EBB292CD1DE30226E4C - https://ftp.hp.com/pub/softpaq/sp134501-135000/sp134540.cva - https://ftp.hp.com/pub/softpaq/sp134501-135000/sp134540.html - HP ProBook x360 11 G6 Windows 10 x64 Driver Pack + 5/29/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96751.exe + 497582144 + db45156232e6eeccbe5388b397d9eb35 + A1C55F6964A27B609869A81A98EE92E2AD06829980403D910BFEB9695A6AAF42 + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96751.cva + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96751.html + HP Pro x2 612 G1 Tablet Windows 10 x64 Driver Pack false - sp143619 - HP Pro x360 435 G9 Windows 11 Driver Pack - 2.00 A 1 + sp160214 + HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 11/29/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143619.exe - 883740304 - f642220ff0feb254e0a41be48f6783df - 5CDF29AB7C04F6A9111114BD06BCDB213EA17D113AE6767BAEF2EABF6B08B133 - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143619.cva - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143619.html - HP Pro x360 435 G9 Windows 11 Driver Pack - true + 6/23/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160214.exe + 2096138248 + 6024288BC3F6785C77CA49ABBB82FF10 + 3C43B4372D2BCC7A61F29F599CFF262CEA609CE10C61F7442236DECB5133010A + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160214.cva + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160214.html + HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack + false - sp142807 - HP ProBook 4x5 G7 Windows 11 Driver Pack - 2.00 A 1 + sp101758 + HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 10/6/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142807.exe - 644062008 - e8027001342276ac5f3be563c7c8ca72 - 89692D165C4A886BD4E23DA26A7739B21BE28A5DBDEBE06EAC46482B3797B31C - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142807.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142807.html - HP ProBook 4x5 G7 Windows 11 Driver Pack + 2/26/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101758.exe + 759805984 + 8c7326fafeb107739327e976cee2968a + 1AFAB335BD55BDFAECA44B8B9B20EA8D3677BC9438AB96B6532479F9E4A00CC1 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101758.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101758.html + HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack false - sp155663 - HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack - 7.00 A 1 + sp155181 + HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 11/21/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155663.exe - 1181325192 - BF66B1BF0295FBE7A21380FC631552FA - 35AD33E117AD6073B617229D3E790DF5E12839B184AC1E3A9F5948584F123148 - https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155663.cva - https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155663.html - HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack + 9/23/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155181.exe + 1577656864 + D0D5FBEF9B7FBC5AA347394809F2D9C9 + B85E4B20CBA381C042792A21CA6270DF5BC9968776A24785CAA4FF9112D9F9EC + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155181.cva + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155181.html + HP ZBook Studio G10 MWS Windows 10 x64 Driver Pack true - sp95328 - HP EliteDesk 705 G3 Win10 x64 Driver Pack - 15.0 A 1 + sp84799 + HP Z240 Windows 10 x64 Driver Pack + 2.2018 H 1 Manageability - Driver Pack - 3/12/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95328.exe - 686161672 - dd0616bfbb4fa4b1daddd27e429bc05e - ED62A85FCF27140F7D2ACB2D1460CD54AF2440775D2F266CD39D0974F2D51BF2 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95328.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95328.html - HP EliteDesk 705 G3 Win10 x64 Driver Pack + 2/21/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84799.exe + 1027075144 + bce3eb025575fab4f83e40af4b4e3a19 + E272426CC57083C8A710A5661443A8B9813301E3DF0E951BF686E724ED64BC22 + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84799.cva + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84799.html + HP Z240 Windows 10 x64 Driver Pack false - sp149192 - HP ZBook/EliteBook 8x5 G10/A Windows 10 x64 Driver Pack - 3.00 A 1 + sp110182 + HP EliteBook x360 830 G7 Windows 10 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 9/7/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149192.exe - 1049260176 - 51787d5ae2f96ca2017ac22968e51092 - 128AACAF20939013665A2162427B13C21C3673EB74F73DD88D6170913781C383 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149192.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149192.html - HP ZBook/EliteBook 8x5 G10/A Windows 10 x64 Driver Pack - true + 9/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110182.exe + 1127346672 + af0356076745a11742dd9c7d1571a0da + BB2D9F7C3A25EAE28CD7B1842402B0F71331CFEC1DFC56C4A90E64644CE47DF2 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110182.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110182.html + HP EliteBook x360 830 G7 Windows 10 Driver Pack + false - sp100647 - HP VR Backpack G2 Windows 10 x64 Driver Pack - 3.00 A 1 + sp114233 + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 12/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100647.exe - 1048514384 - 8c6fb2f0d08bb797b8acb896906154d2 - 408A1CFD4E6E8A71C37B0099B05F4F993A52F74EA2B54D3E2A787813F07140AF - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100647.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100647.html - HP VR Backpack G2 Windows 10 x64 Driver Pack + 6/21/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114233.exe + 1226433000 + dada9462e89814a6ab255bac48e2b52f + 460971C37A8613DD89F32028212F6FEF7B733A461049E92C80BC78FA8C3F2C47 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114233.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114233.html + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack false - sp133116 - HP MP9 G4 IoT10 2016 Driver Pack - 10.00 A 1 + sp136309 + HP ElitePro 4/805 G6 SFF Win 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 8/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133116.exe - 570410880 - 3d388fdcf449a4e2a661936c700f2373 - A21ED6CF13C52398BB920B7CFCA0E91296C7AC1936F91F8A1838DED9CC29DF4A - https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133116.cva - https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133116.html - HP MP9 G4 IoT10 2016 Driver Pack + 11/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136309.exe + 1544174872 + 6d207d56be308b7b70e919f28e4f1114 + 9569BB3EECE8C741005FAB46FC9A78981CEBA8D99976F48DBB7680C4B122F550 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136309.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136309.html + HP ElitePro 4/805 G6 SFF Win 11 Driver Pack false - sp99725 - HP EliteOne 1000 G2 AiO Windows 10 x64 Driver Pack + sp110346 + HP EliteDesk 705 G5 Windows 10 x64 Driver Pack 9.00 A 1 Manageability - Driver Pack - 10/23/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99725.exe - 848635704 - 8eae45ccaa86c634bca168a0803e8424 - FC536097B268946BF27F89B96D5D5A07312D5000EA3DBE7253952E84BE99A601 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99725.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99725.html - HP EliteOne 1000 G2 AiO Windows 10 x64 Driver Pack + 10/5/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110346.exe + 1011446368 + 913c8e25162c9c2aad21a330bba5d467 + 4A3276F63972B491534B486B3908377B50CC39565942A6E5F3B8488583393D26 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110346.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110346.html + HP EliteDesk 705 G5 Windows 10 x64 Driver Pack false - sp144615 - HP ElitePro 4/6/800 G6 Desktop Mini Win 10 x64 Driver Pack - 2.00 A 1 + sp158222 + HP ZBook Fury G10 MWS Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 2/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144615.exe - 1420438408 - a46b65335542b7f32bb28a36ca5e2690 - 76A3777E28BECBACC31E053DC2CA166F2F5809ACFD4E54141C753681873F64BC - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144615.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144615.html - HP ElitePro 4/6/800 G6 Desktop Mini Win 10 x64 Driver Pack - true + 12/1/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158222.exe + 2277479456 + 0E65A9C7D166D1B11520F53D960BAB82 + 094A9BABC63206108F3FA10903E92C24D7A3E8F0A7945991FAD2F8EB40AB9149 + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158222.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158222.html + HP ZBook Fury G10 MWS Windows 11 Driver Pack + false - sp143119 - HP ElitePro 4/805 G8 DM Windows 11 Driver Pack - 4.00 A 1 + sp103626 + HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 10/19/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143119.exe - 1208364592 - 4499a4e1066126f71ba210f58e004868 - 994509AE0DA0AEB61E17A79A2E0E848FB7B2845455F5337ADE5A48286101B8B7 - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143119.cva - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143119.html - HP ElitePro 4/805 G8 DM Windows 11 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103626.exe + 939346512 + 02ee1fa293c350f855c7bc44d4d1680b + E36F888AFF06BEDF24BF965009F490E5A64543ADCB88DF000B227BDC28659285 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103626.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103626.html + HP Probook 6x5 G4 Windows 10 x64 Driver Pack false - sp95452 - HP ZBook x2 G4 Windows 10 x64 Driver Pack - 7.00 A 1 + sp102120 + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95452.exe - 1012767032 - 5ac5aa8b771c6c80351ce074546839df - 89AE3D472F1FA1058526BBB57837DC1FA756CD6508DE101130D12040FF9E5900 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95452.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95452.html - HP ZBook x2 G4 Windows 10 x64 Driver Pack + 3/25/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102120.exe + 962462448 + 6a28d3a90fae65777553933955d2142a + 83E45B1A72B5E47A50E69667C59FA55820AC78E0419FE34EFB6B91B4F716BBCB + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102120.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102120.html + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack false - sp112129 - HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + sp110267 + HP Probook 6x0 G8 Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 1/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112129.exe - 1064009408 - 95291c693da65c8fd16c2b3dc2a84cba - 413D9E25F978EB5C741C0A94DE5CE0FAEDD1DBE5C930ED1A61EF899B632A5714 - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112129.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112129.html - HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + 9/28/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110267.exe + 1618191344 + 88cf767acc51463efa897a6c41a15d72 + 57C0BBFE9EBC03E0F608833EDB7DF070BBCB58F08A663A0B4A562506994244B7 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110267.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110267.html + HP Probook 6x0 G8 Windows 10 x64 Driver Pack false - sp113140 - HP VR Backpack G2 Windows 10 x64 Driver Pack - 5.00 A 1 + sp110181 + HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 3/9/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113140.exe - 534713784 - 98cee5426349b5334cea02b1d5de6d25 - 188DAEA4D5CAEA9EBC3FF122356346B33378BD6B8566316E00C83B38D0F569AF - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113140.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113140.html - HP VR Backpack G2 Windows 10 x64 Driver Pack + 9/21/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110181.exe + 1570692072 + 1bd9927ccd69e31eff5edfe7b609f362 + C7600B7FFA34F56C480616D74B5DBF2CF6C0B7E36A592249467057BA2338E6E9 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110181.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110181.html + HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack false - sp110080 - HP Probook 6x0 G5 Windows 10 x64 Driver Pack - 6.00 A 1 + sp168371 + HP Engage Flex Mini G2 Windows 11 IoT Driver Pack + 3.00 A 1 Manageability - Driver Pack - 9/15/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110080.exe - 1329343424 - 4bac59b75c0d9178e871fbf7135b524e - 83516C44A568239B63274D1FD5E27D344A550E8187D233FFC42B854C6D51532C - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110080.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110080.html - HP Probook 6x0 G5 Windows 10 x64 Driver Pack - false + 12/15/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168371.exe + 1331878392 + A2D486E818A52D07C8DFAA050C0327E6 + 851BC797348393405AF5272AEDC8CF0E5A45B9C56994C79BF8C238352229644C + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168371.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168371.html + HP Engage Flex Mini G2 Windows 11 IoT Driver Pack + true - sp142746 - HP ZBook Studio/Create G8 Windows 11 Driver Pack - 2.00 A 1 + sp99588 + HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 9/28/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142746.exe - 1227660712 - a9c652027da2890291cb2bbae79b2dbd - EA425FF7F9D831A2F2971DBDB041A5550123542B3E47E383CC66282B745B5C6C - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142746.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142746.html - HP ZBook Studio/Create G8 Windows 11 Driver Pack + 10/17/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99588.exe + 832327416 + a178e51dd931676497168a7014185bb1 + 8342C3984EDD09DB2D15FA81B640F4328FB243F0C59A83E56774F33420BEC45B + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99588.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99588.html + HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack false - sp114232 - HP EliteBook 840r G4 Windows 10 x64 Driver Pack - 12.00 A 1 + sp105836 + HP ElitePro 4/6/800 G6 DM/SFF Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/21/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114232.exe - 1089467888 - d47974dc27704b5dcc746782432bd758 - 3D151C3C968C9B9CF5AE33C089439D59B8E6314EE74E6C43088C546575F1E45D - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114232.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114232.html - HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 7/3/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105836.exe + 409501336 + 35304ed331018a2639886ac40ef8edaa + 8E9B84FDCF6CAA7CBE7A843CAA22EA629C5FD6BB696325C6AD76B73669EE8060 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105836.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105836.html + HP ElitePro 4/6/800 G6 DM/SFF Windows 10 x64 Driver Pack false - sp145912 - HP Engage One Essential AIO IoT10 2019 Driver Pack - 3.00 A 1 + sp145103 + HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 4/10/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145912.exe - 498657520 - 82f3ff95a5ff8e9e635956e1ac71e572 - 5CFC1290A1A1E6912484CC0132EAAF2A882D0A7D4B4270F243298983FBD68991 - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145912.cva - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145912.html - HP Engage One Essential AIO IoT10 2019 Driver Pack - false + 3/8/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145103.exe + 989820328 + 1bbd521870e005a349315eaae345569f + 9AD96446F665C38F0889F2D9893C66F8663B57CA35E54D2D4D64E1E885C751D6 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145103.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145103.html + HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack + true - sp92293 - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + sp143133 + HP ElitePro 4/805 G8 SFF Windows 11 Driver Pack 3.00 A 1 Manageability - Driver Pack - 10/16/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92293.exe - 1114825176 - 3b999ae6fd705a1427fe9b6ff91bfe82 - C50B5629FCE1D4583E24C24E78170E7CAEE9B764C3C516748BFCFD849030232A - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92293.cva - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92293.html - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + 10/20/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143133.exe + 1573476968 + f27245d0c03725ecfb3689f5214a2cef + C9A6103A97299672488777EAAFBD770AF60B874AB86EAAD43FE454E9F7D55DA5 + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143133.cva + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143133.html + HP ElitePro 4/805 G8 SFF Windows 11 Driver Pack false - sp172341 - HP Pro/EliteBook 4/6 G2iR NB Next Gen AI Windows 11 Driver Pack - 1.00 A 1 + sp144660 + HP Engage Flex Pro G1 IoT10 2019 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 4/9/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172341.exe - 1594785904 - BFF4FB9A0FE805A99689F7F21F1BEEEE - C32C40BCAE310972AA8119F8C933BF8CC0DEB71FCD679E4876E4E02CB63EAAB2 - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172341.cva - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172341.html - HP Pro/EliteBook 4/6 G2iR NB Next Gen AI Windows 11 Driver Pack - true + 1/18/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144660.exe + 907224632 + 8b46ea12db57d46ce0a8a3c5775fb4bc + 89F575DC018D87496B1594F3561DC8710CE38249040BCE91C192D15C0B9F80D1 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144660.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144660.html + HP Engage Flex Pro G1 IoT10 2019 Driver Pack + false - sp95451 - HP EliteBook 840r G4 Windows 10 x64 Driver Pack - 5.00 A 1 + sp158618 + HP Pro x360 435 G10 Windows 11 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95451.exe - 832862712 - 60679540cb4d2ca62001fb4e5fb7b32f - AED1AEF83C131B774BFE9EE827654C23FB010D42E2E7A92C530233FA1A551BC3 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95451.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95451.html - HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 12/2/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158618.exe + 1238094712 + CF386D7743DBCC8EFE1CDFB3798FA629 + 356CB3CDA1FDADE967E473C11574F5E31570B4448F9F937C37A8FE7634A03AA1 + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158618.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158618.html + HP Pro x360 435 G10 Windows 11 x64 Driver Pack false - sp150834 - HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack - 6.00 A 1 + sp99589 + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 1/15/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150834.exe - 1602532416 - 18a815ee31e9e64be60c02fa7f699e9a - 966CB23483874BDE29410B6E8E01BBB9D40FC0A8B88C0E95CFC02459186D4FE1 - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150834.cva - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150834.html - HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack - true + 10/16/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99589.exe + 772852928 + 3f736a6f5889beeac649c0e14040f7be + 1300B46BD15DC8A76BFF89E89B743BB24401F6FE512F34999CAB5D398BBBFB4E + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99589.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99589.html + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + false - sp102064 - HP EliteBook x360 830 G6 Windows 10 Driver Pack - 4.00 A 1 + sp144983 + HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 3/19/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102064.exe - 849883344 - c01fb97bcb29dc5c3d9276cf410c8097 - 827700C8DD416BD05F8963AB1280E4D0C2D3172C36A08D5F5EA498A53A2C1E4C - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102064.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102064.html - HP EliteBook x360 830 G6 Windows 10 Driver Pack - false + 2/27/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144983.exe + 1256124400 + 4e3c965b0845a220dfcb69988712e8bf + C4C9D1EE7C835D1B90C0AC899E376EA373E922A49EAEC3C0D2EB8323F3577582 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144983.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144983.html + HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack + true - sp169014 - HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + sp110037 + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack - 1/16/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169014.exe - 1229907968 - 8A6076DF8BAEE80F44E09B704DE1CB68 - 31D85F2F68B684FEAF959008E6EDE90B0E9746B780CF8F0D0670A68BD7BB94EE - https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169014.cva - https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169014.html - HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack - true + 9/11/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110037.exe + 1282268904 + e8c202b7b5673020103235ab00f5507e + 454E06B0F9C80FBCCCFA7C18BA8945E5B15FCB7402ED8AB672DA3E666CBFD095 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110037.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110037.html + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + false - sp142669 - HP ZBook Fury G8 Windows 11 Driver Pack - 2.00 A 1 + sp99707 + HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 9/27/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142669.exe - 1473515488 - 1d565a29733724a7db7d348f67b48bb9 - ECBC5B9E9687B18DE329537A5DD1EE3EBCCDFD189412C30CAD640455EF08D863 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142669.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142669.html - HP ZBook Fury G8 Windows 11 Driver Pack + 11/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99707.exe + 808122336 + 0b4452549fe4c7b4215b690aa240223c + 0E1D703291E73450602301625ADD9B8B66894C5AAF7E5A50FA4F3D7EBC9A8C91 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99707.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99707.html + HP Probook 6x0 G4 Windows 10 x64 Driver Pack false - sp123511 - HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack - 5.00 A 1 + sp152762 + HP ZBook Fury G11 MWS PC Windows 10 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 7/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123511.exe - 1101662408 - 34f0008ff8463377b25c1dae29c55916 - 3B6081BE06035AD875A46EDF1A2402632352F405C1C9BDC16D2C9DE44269C6E5 - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123511.cva - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123511.html - HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack - false + 5/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152762.exe + 1719203528 + cf9002247b6c41d40a74f6eab6a14f34 + 009267DF73E0285AD43151B28633093A7004D6ADB7FB8DC94E2C9701AB0762A5 + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152762.cva + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152762.html + HP ZBook Fury G11 MWS PC Windows 10 Driver Pack + true - sp104128 - HP Engage One G1 Win10 x64 Driver Pack - 7.00 A 1 + sp149193 + HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 5/27/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104128.exe - 420578528 - 59556f5fed973e3136bf22e4f9efad3e - 28563E773AB11DCAD0FEED0B7D1CAD4D903DCA26A0FB8B10F227699829F09A9A - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104128.cva - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104128.html - HP Engage One G1 Win10 x64 Driver Pack - false + 9/7/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149193.exe + 1049234280 + b6cfb74eb9b177a8b9fe0388b80403f2 + 98125E4171C552F27C8B9B3FFD818ED8F6A7BD6E800BCC3EF69E53E5EE975342 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149193.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149193.html + HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack + true - sp160042 - HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack - 7.00 A 1 + sp149191 + HP Pro x360 4x5 G10 Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 5/29/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160042.exe - 2240136064 - B3C46E1E5771D4682EF4960D6105F463 - CA47DA0BC785D393E224091AF79F7B70EF8A1AEDBA84EEA22284233F0FE73044 - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160042.cva - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160042.html - HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack - false + 9/7/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149191.exe + 854414552 + f178c07b34eb3f435cd10a8b0b7212cc + 35EB33FA2169ABE0B8A21C310740C26FFD640DD67D74C915F81AE71E61037148 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149191.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149191.html + HP Pro x360 4x5 G10 Windows 11 Driver Pack + true - sp80493 - HP Elite Slice Windows 10 x64 Driver Pack - 3.10 A 1 + sp173559 + HP EliteStudio 8 AIO G1i AI PC Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 5/23/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80493.exe - 347993592 - 3bfd1457398b17eac59ba21338cd8f3c - 2A6CEAC21D3AB9D43014273EB780E5A18C1645ED3B6DCDFABAFB9BE1277B23A5 - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80493.cva - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80493.html - HP Elite Slice Windows 10 x64 Driver Pack - false + 6/11/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173559.exe + 3039755024 + FD859AA1F19782EEF090DFC8F5D60AFB + 94E9CB723A270CDE56BAD6A90C9D43AA32302723A31CF12D5D976647886C9FF1 + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173559.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173559.html + HP EliteStudio 8 AIO G1i AI PC Windows 11 Driver Pack + true - sp99541 - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - 9.00 A 1 + sp90334 + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 10/7/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99541.exe - 734282928 - 9ef2f20d87a22afc739b42588d61dd2c - A83F5A8F0A2011EF54219D201832B93B92EFC4E788E3371ECC71CCA905B03A53 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99541.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99541.html - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 8/3/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90334.exe + 572595576 + 41cd0ea71984888812365d37386026b4 + C6AF2DA530AD2A35B16FF0553115007046029BF6212DAB5B48E480E202BC692E + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90334.cva + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90334.html + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack false - sp158929 - HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack - 12.00 A 1 + sp114134 + HP EliteBook x360 1040 G6 Windows 10 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 5/20/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158929.exe - 2904660640 - 185BC1A7E9032FA2E8431433B2DB2296 - 99B9B38708DB9CE9144BA610A47F7797A8FB5E8225DB2D48FA36B8622A6BB897 - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158929.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158929.html - HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack + 6/7/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114134.exe + 1086996520 + ef6633ce6de3f7b6674236cf0c7112aa + 93841ADEF37811C3910955E2FBE4F84DFAFB9D2ACDEA2E849440DAE42D33AEAE + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114134.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114134.html + HP EliteBook x360 1040 G6 Windows 10 Driver Pack false - sp114248 - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack - 8.00 A 1 + sp173775 + HP Z8 Fury G6i and Z4 G6i Windows 11 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114248.exe - 886134344 - 8b54cafe69710ecdb74024ed18c700a8 - A31A7DF53553329BDCF9C4C454694BA7B836E3A611AE52E77C1FD3AEB6D08E1E - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114248.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114248.html - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + 7/15/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173775.exe + 1630448200 + E211DE819F34D9A065DB622BA5C7D44C + 0CE17A42C492CBF63FAC4BC7FAB63BA1184B50E88D884C9AC28D9F7DC6AC5D07 + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173775.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173775.html + HP Z8 Fury G6i and Z4 G6i Windows 11 x64 Driver Pack false - sp145052 - HP EB 4/6x0 G9 ZHAN Windows 10 x64 Driver Pack - 4.00 A 1 + sp92268 + HP MP9 G4 Win10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/1/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145052.exe - 1804608680 - aa59f9836bfec14884aef18d2ce87f10 - 8F682852B3CF6AEC2736F1B180BD5FDEC7B33FF5AB6F232B2AE49C46E412A319 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145052.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145052.html - HP EB 4/6x0 G9 ZHAN Windows 10 x64 Driver Pack + 11/27/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92268.exe + 618624376 + 29f28aff981f560e21479bc34533d2e2 + A4714D94B2DA56D1ED03D480FE0689E05665CEC4E59553578E1B6B5BEC694A6F + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92268.cva + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92268.html + HP MP9 G4 Win10 x64 Driver Pack + false + + + sp150537 + HP Z6 G5 A Windows 10 + 1.00 A 1 + Manageability - Driver Pack + 12/8/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150537.exe + 1728155528 + a1bbf8f91c1548d64a3fbf17b6c11085 + 4466F6FD583F39E1F7C8C9123887212B030D7AD8AC3C5F6AE6AB373185375A82 + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150537.cva + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150537.html + HP Z6 G5 A Windows 10 + false + + + sp144688 + HP Engage One Pro AIO IoT10 2021 Driver Pack + 3.00 A 1 + Manageability - Driver Pack + 1/23/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144688.exe + 600490288 + 0a36c3740779f8fd383bdea31e25284e + ABF07E771CB0593501B6DD259E7C85DB6E05FE837D9BAAE0BA9A6F3B6D17AF9E + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144688.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144688.html + HP Engage One Pro AIO IoT10 2021 Driver Pack true - sp112356 - HP Engage Go G1 IoT10 2019 Driver Pack - 4.00 A 1 + sp140741 + HP Elite Dragonfly Windows 11 Driver Pack + 1.0 A 1 Manageability - Driver Pack - 1/27/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112356.exe - 1024691080 - 6f081e16b4047f979e9aa997a0051401 - 8EE50B7AD709F70E412F7628BF616625C1A6131A10E3863280E6ECDA4AB9B2AF - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112356.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112356.html - HP Engage Go G1 IoT10 2019 Driver Pack + 6/20/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140741.exe + 1076950784 + 06d2d5dd1cffc8d9d0a3c63d4bff77e7 + 2D6D7C8FD2C74A909C742BC9B9B07652F775C7319CC5FF726863B325847F8274 + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140741.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140741.html + HP Elite Dragonfly Windows 11 Driver Pack false - sp172023 - HP ZBook X G2i MWS Windows11 DriverPack + sp142690 + HP ZBook Power G9 Mobile Workstation PC Windows 11 Driver Pack 2.00 A 1 Manageability - Driver Pack - 3/24/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172023.exe - 2976519528 - 1C12DFA28C839DADC3D005EA7D5AF7B2 - 8D05387BFE211095B96B05B059DD57B2733656FDB06B98ED5AEA540C6F0D81BE - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172023.cva - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172023.html - HP ZBook X G2i MWS Windows11 DriverPack - true + 9/27/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142690.exe + 1218887736 + 6b014af4edd72a68350f6327597b5df5 + 7AA2DA93FD71B11AC95BC46B5750F895C28B4603024DFA3280A2C017891DE17D + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142690.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142690.html + HP ZBook Power G9 Mobile Workstation PC Windows 11 Driver Pack + false - sp144685 - HP Engage One G1 IoT10 2019 Driver Pack - 7.00 A 1 + sp142802 + HP Elite Dragonfly G3 Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 1/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144685.exe - 292392480 - 743dd634df05ac604b05d7f9fe6d341c - 30C9871BC3A31E5832B2F534FC904257C428873853C7CBF77CC2507983053249 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144685.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144685.html - HP Engage One G1 IoT10 2019 Driver Pack + 9/29/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142802.exe + 1319553824 + 23de4c2c0cb09798802569c28e59185a + A5DB6B7C3198CA7F5F63BC5EF67C613E348A4D03D8E603BC629D1327D65F9E51 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142802.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142802.html + HP Elite Dragonfly G3 Windows 11 Driver Pack false - sp172736 - HP EliteBook G2i Windows 11 Driver Pack + sp169015 + HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack 4.00 A 1 Manageability - Driver Pack - 8/17/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172736.exe - 1219676576 - 8AE93F5F3D51452357FDEFFD7B9C9CEE - 184537E7A9B043CBC8850889C0917AD5AB23F9EE3B7C72FF3E64B195D31F376E - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172736.cva - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172736.html - HP EliteBook G2i Windows 11 Driver Pack + 1/16/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169015.exe + 2396144760 + FF5F740D5D7F1AA73ADFC6C61E25FC5B + C2429F52DF394AFEE500C13E9F0B613A1060DA51C9F903757B4943540AF2E811 + https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169015.cva + https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169015.html + HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack true - sp80155 - HP Sprout Pro Windows 10 x64 Driver Pack - 10.2017 B 1 + sp112022 + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 10/20/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80155.exe - 667714744 - baf56432ed603e1c4ebdd9cbc5ed5eb5 - FA21369C114C1EBA8F0912D6836138D50A4F087D22E20434E69F76DF6C9198AA - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80155.cva - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80155.html - HP Sprout Pro Windows 10 x64 Driver Pack + 12/31/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112022.exe + 734029488 + af1ab9f7ad24c8d6e974a0e8fa15caa7 + 75180396A6B200AFCBCB10EAF08983DFFF75EB49EB848AACD75431939907FECF + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112022.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112022.html + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack false - sp152773 - HP ZBook Power G11A Mobile Workstation PC Windows 10 Driver Pack - 1.00 A 1 + sp110397 + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 5/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152773.exe - 1867146048 - 4dfc752aee7208c406c4fb4ad6ef0983 - 8FB4561DE7A321F800C221A6AEC55D7A63E7D5318CE915AC04F476F2E49AD17A - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152773.cva - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152773.html - HP ZBook Power G11A Mobile Workstation PC Windows 10 Driver Pack - true + 10/9/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110397.exe + 980671896 + 4ef919e0fd17a129bf42df6225d712be + 122C28EAE9A65116347998B2B116300F9780C6C848CA11CB692CEE4ACD8759AD + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110397.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110397.html + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + false - sp114270 - HP EliteDesk 705 G4 Win10 x64 Driver Pack - 12.00 A 1 + sp123510 + HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/25/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114270.exe - 1112316872 - e6100925e9153b5fe0055de4d681841a - 6AC16CD38A295C87E7A03357FB747399E0AFB7B022BF6176BA47460FA30372EB - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114270.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114270.html - HP EliteDesk 705 G4 Win10 x64 Driver Pack + 7/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123510.exe + 1429883248 + 6af906210e52487ca7481c5148fc7c13 + 9DD1CE173F395C525021D65178A71F7C9378B0EBD9CAC442594CB40955D470CF + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123510.cva + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123510.html + HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack false - sp112035 - HP ZBook x2 Windows 10 x64 Driver Pack - 12.0 A 1 + sp110423 + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 1/3/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112035.exe - 1156880080 - de952008c56f106c1fca639690b2ea56 - 6CB4D4F2249E38FDA9113700FE714308730436E7ACF8E85D7B0283E9398AE859 - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112035.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112035.html - HP ZBook x2 Windows 10 x64 Driver Pack + 10/12/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110423.exe + 1626029912 + eac4fa200e17e9aff2d36fd44f5b851d + 0B0AD0DA1D1E6C4B8DE341F19B8F36A358A7265456B6804A01A9526DE4365B75 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110423.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110423.html + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack false - sp145105 - HP EliteBook x360 830 G8 Windows 10 Driver Pack - 6.00 A 1 + sp142965 + HP Engage One G1 IoT10 2016 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 3/8/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145105.exe - 1259928568 - 9a4ff6630ce3c9977397010c31a442b3 - E5D1E45138AE669AE0BD3828174402F1B1C126A8F784B1200B13EF31B58DC165 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145105.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145105.html - HP EliteBook x360 830 G8 Windows 10 Driver Pack - true + 10/3/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142965.exe + 403110288 + 1ed0e3673d7a47354526ab78acb84080 + 90CCF5FF7CDEED85CCC503F46D0C2CC2A766E955A0461E1AE2122CC2456475EB + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142965.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142965.html + HP Engage One G1 IoT10 2016 Driver Pack + false - sp142806 - HP ProBook 4x5 G7 Windows 10 x64 Driver Pack + sp99710 + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack - 10/6/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142806.exe - 1004011288 - 3df4d1b4ec940629cda209d5944a8c02 - D1583BC49BAD1B5F0D4A21C1A22BBDC1C999A3F53B58719BBC6580298E268DD3 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142806.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142806.html - HP ProBook 4x5 G7 Windows 10 x64 Driver Pack + 11/19/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99710.exe + 847736304 + c39164173a122c5d0250a93bc441f2b0 + 0781CA872AE46B90F58839C2BB52DEA86EB5811FE08A442B6C47F12FC37933D8 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99710.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99710.html + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack false - sp170007 - HP ZBook Power G11 MWS Windows 11 Driver Pack + sp145158 + HP Elite Dragonfly G2 Windows 10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack - 1/19/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170007.exe - 2606280304 - F75F8409E7284CB7911483CC80C14F30 - A9AEC451CF4EA211BE776B0C5598789F64DEE4164080D4C029A3B87E231FDE0F - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170007.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170007.html - HP ZBook Power G11 MWS Windows 11 Driver Pack + 3/15/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145158.exe + 1191290704 + 9f168b413647abb1316c34960876763e + 62C663FA36E8A7E6CE45ACC2990DABCC444BD40085DF6233FD403B0B06C333B2 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145158.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145158.html + HP Elite Dragonfly G2 Windows 10 x64 Driver Pack true - sp114245 - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack - 11.00 A 1 + sp149194 + HP ZBook Power G10A MWS Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114245.exe - 1407982088 - 604f0b0389475e404fa351eef3247053 - C16A6A4C3EDC8CD22DF1E3C04983072D20C911861AFAD4339A32F4124204A6AF - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114245.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114245.html - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + 9/7/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149194.exe + 1669874344 + a35bfebb016fd043d410f321fd38bb20 + 7A53136FF62D6A6DBE9D46C3ED27DF0926550B680FD7861495A3DF40CC9F94D4 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149194.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149194.html + HP ZBook Power G10A MWS Windows 10 x64 Driver Pack + true + + + sp101913 + HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 3/16/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101913.exe + 820863664 + dbe2140c2a7b0fed1c5aa2446e10c464 + 8C101FAB3B02CF8A4E18A0640DE4C226B9C83AB120EAA30C567E36E76D599F23 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101913.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101913.html + HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack false - sp112643 - HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack - 8.00 A 1 + sp109028 + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 2/8/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112643.exe - 1827974072 - 168774fa8d395090920a8d4fc1bdc57a - ABCBEA08C1C5AF3586E68A1422CFA0FED8C01710EFF67FC8D5432FFA3BE25E14 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112643.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112643.html - HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack + 9/10/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109028.exe + 909840496 + 00f2a25d0bc94daf90556d89bd634fbe + 5B3E255B5FBA49C4B2561B3DB399D121771E43D0027249AC54DEEC5658C857FE + https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109028.cva + https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109028.html + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack false - sp114195 - HP Probook 6x0 G4 Windows 10 x64 Driver Pack - 14.00 A 1 + sp101775 + HP ElitePro 400/600/800 G4 AiO Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 6/15/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114195.exe - 1604021320 - b517449ad3c4dc3210c5a8387d2bb6a1 - 2A4798EA976990C6CD4B5FD8C41D74C44BDE93EBD18E5A0145234FE06AF3E696 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114195.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114195.html - HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 2/27/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101775.exe + 413851664 + 9a7e6f3ec48a96aeb2de40b659b307a8 + 19E38C1B5CC8FBBDDC133DEA23C278BE1A095D9BAF83E6059DB6AEEFD884B3BF + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101775.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101775.html + HP ElitePro 400/600/800 G4 AiO Windows 10 x64 Driver Pack false - sp91842 - HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack - 3.00 A 1 + sp114135 + HP Probook 6x0 G5 Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 9/6/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91842.exe - 783728224 - a9f65026d0475891fc3997d3df26aff7 - 8371916D197F837F261FBCEC600EB08E560972DF4D7F8B505FD850D309309438 - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91842.cva - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91842.html - HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack + 6/7/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114135.exe + 1524828880 + 76c3f5eb2f4fefb336a708a4f860e011 + 38DABC6EA2C4D4058350E06F580A3CBA99F7B8C88BED7933805F352EF5441E07 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114135.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114135.html + HP Probook 6x0 G5 Windows 10 x64 Driver Pack false - sp84353 - HP EliteBook 840r G4 Windows 10 x64 Driver Pack - 1.00 A 1 + sp135797 + HP ZBook 15v G5 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 2/1/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84353.exe - 742422856 - 907ee23581cd42d8df33286d249bcd3b - 5C4766BCE4A5F490AF23D59697FEFC39F33C9164B0E5867C17E75C59F2A2C0CC - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84353.cva - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84353.html - HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 10/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135797.exe + 1005138856 + a1463fceeefefbcaf8c589013b166d5f + 83F05B1348B1DE97E9C3C9CB3F6BB2121B98ABF706E624B15D319D4A5EC5500B + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135797.cva + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135797.html + HP ZBook 15v G5 Windows 10 x64 Driver Pack false - sp144693 - HP Engage Flex Mini IoT10 2021 Driver Pack - 2.00 A 1 + sp111437 + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 1/24/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144693.exe - 615904704 - e38439d99221fa3b9bd1674ab9fcf708 - 71117E82D7A44EE44168F2FFF53C33C402404994A1ADCADB271EFCB4DD6AA669 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144693.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144693.html - HP Engage Flex Mini IoT10 2021 Driver Pack + 12/3/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111437.exe + 970378096 + dd3d41abcc4f0e674ba12e9c2d0acf04 + 21FC219B79780139799A50340A581E2CC95ABA8B85D972043ABD81F15FAFD688 + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111437.cva + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111437.html + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack false - sp96781 - HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack - 1.00 A 1 + sp101288 + HP Engage One G1 Win10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 5/30/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96781.exe - 812260784 - a9f98a759828fe824747bc966afb4c22 - 23EE32166C64E850BD567A7C1EA71ABDFA96A59D6A738035AC8E170EB3F0E362 - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96781.cva - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96781.html - HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack + 1/14/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101288.exe + 413196288 + 4dc0c29b00e00d07c8873c7ca8e2d81d + F99AAA08859449CCB38DDB33F31571501A73A3782AC77A13105EB1438D91A332 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101288.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101288.html + HP Engage One G1 Win10 x64 Driver Pack false - sp157058 - HP EliteBook G1i Notebook AI Windows 10 Driver Pack - 2.00 A 1 + sp168480 + HP Engage Flex Mini Windows 11 IoT Driver Pack + 1.00 A 1 Manageability - Driver Pack - 2/12/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp157001-157500/sp157058.exe - 1439851768 - A0B548D00EEF936C62DC282749AEAB32 - 229EC3C5FEFB88D320598043D22DB93D0B3E0C1E1EF79D6BDF6C8645F2CD32A7 - https://ftp.hp.com/pub/softpaq/sp157001-157500/sp157058.cva - https://ftp.hp.com/pub/softpaq/sp157001-157500/sp157058.html - HP EliteBook G1i Notebook AI Windows 10 Driver Pack + 12/18/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168480.exe + 942928528 + 384437B38EBB0D94543D001EA4059044 + FD914D91FA901934A791B8FC9FE81A39F1BC98BF23AE5637E480230A0D444225 + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168480.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168480.html + HP Engage Flex Mini Windows 11 IoT Driver Pack true - sp168373 - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack - 10.00 A 1 + sp160149 + HP Engage Go 13.5 inch Mobile System IoT11 2024 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 12/15/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168373.exe - 2659303112 - DB26EB32ACCEC11846431E3A5CF83D20 - 62D4AA01B4CAE28352C0EC887242A29620F06901E853ABB3818D73CC09359F81 - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168373.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168373.html - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack + 6/10/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160149.exe + 1368960152 + A5280CDF8BC28DE5AC13544C2258743F + B16EE1C08EFA34516B0D420A1772248C91E4487E6660318BF0FCFE448918D1B8 + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160149.cva + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160149.html + HP Engage Go 13.5 inch Mobile System IoT11 2024 Driver Pack true - sp96289 - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack - 7.00 A 1 + sp100638 + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 5/13/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96289.exe - 809115856 - 0142a2335f69e31ed3e6d0790e94dee0 - 1BF3851A3FB28E48647C41FCF8CA1202E60F78E98A84734C5D2C0E47B1E00635 - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96289.cva - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96289.html - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack - false - - - sp96974 - HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 6/10/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96974.exe - 799163936 - c35413e055cd8f55929d0189b996f043 - 64602B88D3EB990B76B2854AE81EE14FD4EE8CD8F440DC19E1F99F142284A446 - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96974.cva - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96974.html - HP ElitePro 4/6/800 G5 PC Win 10 x64 Driver Pack - false - - - sp158770 - HP Engage Go 10 Mobile System Win11 x64 Driver Pack - 7.00 A 1 - Manageability - Driver Pack - 5/12/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158770.exe - 1421640136 - D2D52CCFCDCDBB7A41CA2B49A1E1D414 - BC65BE2A54224135B163410D77D14464035ABE459E1E6466B9C5A5E066A079CB - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158770.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158770.html - HP Engage Go 10 Mobile System Win11 x64 Driver Pack - true - - - sp108773 - HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 8/26/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108773.exe - 1855793760 - 66ac048befae72bd59d7728f3eee69f4 - 4F94429B5EF5741C8A1B4EA0FC67CFE296E5D75156C102FE9CF205F03722EF48 - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108773.cva - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108773.html - HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack - false - - - sp99461 - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 9/30/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99461.exe - 704514272 - 0bd09714dc4dce2b72162937b9a403cc - 589FFA7164D273EC0894C521A2B4B3DFD7D89A91F391F084D40724A0B8560A50 - https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99461.cva - https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99461.html - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack - false - - - sp79219 - HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack - 5.00 A 1 - Manageability - Driver Pack - 2/24/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79219.exe - 478142592 - 50d6be9aa5c6fcea64b8da3a6eb09dbf - 54E2CC4433CC7ED8570057DD4801BFA9B484361780D4280C080E412CCFC28F51 - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79219.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79219.html - HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack + 12/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100638.exe + 857206720 + c0856a1bcd5884f70843149d297f7f01 + 7F43066335BABC5112F281EB64D39D389E09A20923F3C4DF25EE28E2818A08F8 + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100638.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100638.html + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack false - sp88652 - HP Z240 Windows 10 x64 Driver Pack - 7.2018 K 1 + sp87513 + HP Z440/Z640/Z840 Windows 10 x64 Driver Pack + 5.2018 J 1 Manageability - Driver Pack - 7/5/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88652.exe - 1031327096 - 5ffe3cb3596c619d1f72581bcc5b6956 - 88222F1CD6541067E958245DAAF7105AEAFCCD12CE8F9C604BBFABB6BF0A384B - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88652.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88652.html - HP Z240 Windows 10 x64 Driver Pack + 5/9/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87513.exe + 729843336 + b20f57da46d2612be620414dc9cafa1b + EF6B17B561F3D29DB1A96067BE3268F6B3F8E2C94DC5C5EBECAA832FD8B4D9B8 + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87513.cva + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87513.html + HP Z440/Z640/Z840 Windows 10 x64 Driver Pack false - sp134315 - HP Elite Slice G2 Windows 10 x64 Driver Pack - 17.00 A 1 + sp80904 + HP Folio 1040 G3 Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 9/2/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp134001-134500/sp134315.exe - 691266928 - 8550f2fcf7fec13fd2df56c74e8cd868 - 2A7E6921AFCA6087D7BD4C3992BD005A5B1B2B0616B9D1AE31AF40018F1DB60E - https://ftp.hp.com/pub/softpaq/sp134001-134500/sp134315.cva - https://ftp.hp.com/pub/softpaq/sp134001-134500/sp134315.html - HP Elite Slice G2 Windows 10 x64 Driver Pack + 6/23/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80904.exe + 420414032 + 99f44b012491bf3ae6747c10b907311b + 420B90437740763A4BB00FDBAE1C2737DB6D57EC37B7C14511154A4E9C21C7DB + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80904.cva + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80904.html + HP Folio 1040 G3 Windows 10 x64 Driver Pack false - sp114219 - HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack + sp147284 + HP Pro/EliteBook 4/6x5 G10 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 6/17/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114219.exe - 1299708424 - 4678f0fc0c704f138ff90cdfcbe09d8e - 166BC3E5679731D9B9B87F8E133C84BA2E23483D7753E0D7E26C99743D054116 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114219.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114219.html - HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack - false + 5/22/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147284.exe + 872470216 + 4e9162ac83649b6ce51f6ab47a2dfb61 + 32771130739BC51470B6FB301817C7F26591517451FE2F16C7543CA700A226F9 + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147284.cva + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147284.html + HP Pro/EliteBook 4/6x5 G10 Windows 10 x64 Driver Pack + true - sp80239 - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - 2.00 A 1 + sp168524 + HP Engage One Pro AIO Windows 11 IoT Driver Pack + 1.00 A 1 Manageability - Driver Pack - 9/24/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80239.exe - 622432336 - d6ef123f632a52aa520ef62fff45e596 - 608F2A191701229B8A18F8572BEACA3DBF0B8846BFF0909F92D9E545A48226FE - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80239.cva - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80239.html - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - false + 12/19/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168524.exe + 933359904 + 62637A592B7E89F5AA35669CB532D08A + EABA823D9370A9AB27EC95F2963C25BAE2F99FC6F5C91B8ED198604B9C5C290F + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168524.cva + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168524.html + HP Engage One Pro AIO Windows 11 IoT Driver Pack + true - sp172351 - HP Z2 Mini G1i Windows 11 x64 Driver Pack - 3.00 A 1 + sp155856 + HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 4/16/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172351.zip - 3410103342 - A74A91E836191CDD08A801673E226638 - 7C2E130CDF2C2ECF07BE36288D782F54C4DAF56D75789AA582DBEF4665D8CAAC - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172351.zip - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172351.html - HP Z2 Mini G1i Windows 11 x64 Driver Pack + 11/21/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155856.exe + 2680757000 + 2482E22E21471F2409E74C1BB9684946 + 58F4CA20825F1E7A208E0AF03FAABFE668E822DBC637D38040C1129CB1575095 + https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155856.cva + https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155856.html + HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack false - sp142803 - HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack - 5.00 A 1 + sp99651 + HP ProDesk 680 G4 MT Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 10/11/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142803.exe - 741029256 - a5e6c97904bee8c966843dc797cea21a - 68BB8DC6A3CCA38B1DCDCE234E3005A1A1681079993C85920201C18801146145 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142803.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142803.html - HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack + 10/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99651.exe + 817336008 + 6ee749d402f24d47a45ff5c74e95d4b5 + DECE7CE4D745EB7A8F60DEE4D83C6C2DE58A5D726E3160E1B522E4484355154F + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99651.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99651.html + HP ProDesk 680 G4 MT Windows 10 x64 Driver Pack false - sp97017 - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + sp136330 + HP ElitePro 4/6/8x0 G6/7 PC Win 11 Driver Pack 1.00 A 1 Manageability - Driver Pack - 7/16/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97017.exe - 703717080 - 3ba4b65502ff8b2217079f5b2c556869 - D59100DFE0B31FD3187A9E6EAD7B7E522D0F6C3FF8FD0CE3A6CB2C51DA21E5BA - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97017.cva - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97017.html - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 11/24/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136330.exe + 1075315208 + 1e9252df81b94d657e476ca306d3d8f2 + FE0B9D2562C98272F397C876EFB22ADCC35D2D100D6C5B97984619FF0CC870C4 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136330.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136330.html + HP ElitePro 4/6/8x0 G6/7 PC Win 11 Driver Pack false - sp157866 - HP EliteBook Ultra G1i Next Gen AI Windows 11 Driver Pack + sp112839 + HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 4/2/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157866.exe - 1635244360 - 4F65CBD6C49B5C2F74EEB4B4B5F325C7 - BF5C2CABB84288D73995588B04F2D8EC0A69105D3544653D7E20AF4FDDF69DD1 - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157866.cva - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157866.html - HP EliteBook Ultra G1i Next Gen AI Windows 11 Driver Pack + 3/2/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112839.exe + 554155496 + c600882fb59124d28d81e5dc78079dc9 + 91381776716EBFC03B49638CD527415461D312691B1D54BB5E984BC00EDA9E0F + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112839.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112839.html + HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack false - sp114196 - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack - 13.00 A 1 + sp113468 + HP ElitePro 4/6/800 G6 DM Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 6/15/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114196.exe - 1724599040 - 74cb20fa15d30ecf76419310f41e270e - F79241321A19CC235552C618923CDFB55384E4D5C207F8D4330F8BF0E7406001 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114196.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114196.html - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + 4/26/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113468.exe + 1536814072 + 0258a9a34f05197b2a69a83437123612 + C92F4302D48A011B8F44DDB65CAC95AC10A722F02AEEFC841D512F26075723D1 + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113468.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113468.html + HP ElitePro 4/6/800 G6 DM Windows 10 x64 Driver Pack false - sp95455 - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + sp95456 + HP ElitePro 4/6/800 G4 AiO Win10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95455.exe - 722719408 - 9428c86bea02237c1784186e0bb5be2a - 5981B3F7CD9B52DA16EE568BD274943D9B2A6C5419ECE817A510ACE98664BF92 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95455.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95455.html - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95456.exe + 598812944 + e25763075571cdb92842f551c4e6c041 + 6D40114322A2C0618969ABA198863B0D0BFC6E49E58F0CD12391830947DCDE8D + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95456.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95456.html + HP ElitePro 4/6/800 G4 AiO Win10 x64 Driver Pack false - sp173479 - HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack - 11.00 A 1 - Manageability - Driver Pack - 6/12/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173479.exe - 1995551520 - 77EA4D4F817B592B4B2912F787C6B738 - E1F6254D8EDB5EC0D041EE7D32BB8BB40388AB9291E2ADBBBC1474498FCBC32C - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173479.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173479.html - HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack - true - - - sp102073 - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack + sp151310 + HP Engage One Pro AIO Win11 x64 Driver Pack 5.00 A 1 Manageability - Driver Pack - 3/20/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102073.exe - 791414560 - 2b6baaf712394577fd4ea82eb08c180a - 1885659410B49C05407228503A505DFA17C177B0945AE742CC016870B4256CD1 - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102073.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102073.html - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack - false + 2/5/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151310.exe + 617779696 + 833c03541624bc6556fb0e91e4e2c853 + ABF87165E738CDBCDEC186515A6A51841144A6A8E3E2420FC0AC5FC2D1133512 + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151310.cva + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151310.html + HP Engage One Pro AIO Win11 x64 Driver Pack + true - sp80258 - HP Z2 Mini G3 Windows 10 x64 Driver Pack - 06.2017 C 1 + sp115298 + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 6/15/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80258.exe - 721917088 - 48de1e976500a70307fdcd636b08a456 - 2418449C2AB483E6541124271946885CED8BA49CD06217D12AD2284D1993A211 - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80258.cva - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80258.html - HP Z2 Mini G3 Windows 10 x64 Driver Pack + 6/30/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115298.exe + 1627039704 + 40dea0e5a94d5ef9b89bef4bde9fc9e2 + C831F8A3397B2B035C6BEFBEB0DED7B3E62AAA3AEA60FA0F1A53335B94EEF504 + https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115298.cva + https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115298.html + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack false - sp172110 - HP Z2 TWR SFF G1i Windows 11 x64 Driver Pack - 3.00 A 1 + sp92312 + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/27/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172110.exe - 3029645104 - E247EE9440D626275AFEBE21772CB524 - 86A82D0D468FC3967E2FC126D2184E9DC690F762632D5BB7380BACD08C4576F6 - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172110.cva - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172110.html - HP Z2 TWR SFF G1i Windows 11 x64 Driver Pack + 10/19/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92312.exe + 627241760 + e61cf6f2eac97af0c0fa98f0587b1a4b + 3717A741B5A2EEE96A0C6189C35A0517A61BD627062F35D596F74D17F528833E + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92312.cva + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92312.html + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack false - sp112840 - HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack - 1.00 A 1 + sp113956 + HP EliteBook x360 830 G7 Windows 10 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 3/2/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112840.exe - 1515468264 - 9b1abecb13effe1aedeb252cf1cdbf1c - 180C025761B5A4F9BEE5A70DC6E8CC3A55E93B83DD78180EA26660A5AF7767E6 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112840.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112840.html - HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack + 5/21/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113956.exe + 1214304392 + 53e003fd40c41fc7cae87b702a6d8c44 + 785172C3F45D86138ECF02D2D5E3B7F4CC1E788A37D564E167E04AEC795CC757 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113956.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113956.html + HP EliteBook x360 830 G7 Windows 10 Driver Pack false - sp158846 - HP ZBook X G1i MWS Windows 10 Driver Pack + sp136241 + HP ProBook x360 11 G7 Windows 11 Driver Pack 1.00 A 1 Manageability - Driver Pack - 5/26/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158846.exe - 2675517056 - 537087FC8AB0E57FC27AA8095311D55A - 2869F0D1B9AE96EAFDE6605336017557A196B3891C48596526D6287838262847 - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158846.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158846.html - HP ZBook X G1i MWS Windows 10 Driver Pack - false - - - sp138543 - HP ProBook 4x5 G8 Windows 10 x64 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 2/24/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138543.exe - 940843216 - 7153d8935eab68b44eb4411c8a82156e - F92B25EC9FCECBEBBAC9538C24BEF82D7B82042CCD51EF56D6D3DD166EF800FC - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138543.cva - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138543.html - HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + 11/18/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136241.exe + 1157406744 + c5e581fbde97d2960ac2ed3e57204947 + AE93ABB3AB36023BDAA705FC12F256C10823550B7C547EF7B659B1E492F02981 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136241.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136241.html + HP ProBook x360 11 G7 Windows 11 Driver Pack false - sp152748 - HP ZBook Firefly/Elite x360 8x0 G11 Windows 10 Driver Pack - 1.00 A 1 + sp164397 + HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 5/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152748.exe - 3087226816 - 54e103cc0e7d116c6835a72de2dc8277 - EB963707180D634B80D1B24F3E6AF44DE9E43F85840369CD85C65BD1BB5EEF0D - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152748.cva - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152748.html - HP ZBook Firefly/Elite x360 8x0 G11 Windows 10 Driver Pack + 10/1/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164397.exe + 2427362408 + 9C2FB3DD2A35D543DCD2AC59B949C266 + 729D9B4383264032473268B90A2912BF61EA2B42CBFAC022F9EC37993ABF06E1 + https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164397.cva + https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164397.html + HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack true - sp114168 - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack - 10.00 A 1 + sp140361 + HP Z2G8 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/9/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114168.exe - 1086849528 - 5c062cc9176be659640acaa8a8b44594 - 409259EB8EDFA1EFF75800DBC158D8AC07E1CD86FC2B04B2C10CB432EC225F04 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114168.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114168.html - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 5/16/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140361.exe + 1686022488 + f6aaa19cfb98fe15c77cd5c05eedc542 + 03B433B5A1F7ED74B56A74DF49755E1C864CF88177714BF583E84E2152D90B18 + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140361.cva + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140361.html + HP Z2G8 Windows 10 x64 Driver Pack false @@ -4390,21 +4300,6 @@ HP ProBook 4 G1i AI Windows 11 Driver Pack true - - sp113444 - HP ProBook x360 11 G7 Windows 10 x64 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 4/22/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113444.exe - 983638376 - 103926f46e3af3ead9f46cecea6bb4cf - 91C753C2EA525F3A37A68D60505F5CEC63949F6C756D453EA6D64A9D68542835 - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113444.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113444.html - HP ProBook x360 11 G7 Windows 10 x64 Driver Pack - false - sp145106 HP Dragonfly Folio G3 Windows 10 x64 Driver Pack @@ -4421,18 +4316,33 @@ true - sp93009 - HP ProBook x360 11 G3 Windows 10 x64 Driver Pack - 1.00 A 1 + sp113444 + HP ProBook x360 11 G7 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 11/26/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93009.exe - 524253072 - 3001385103d0be6ccbb48ce33b711836 - E3B21135494775E84E5610AED91C10D23E9C28790C458DA89D52A2E08F5B4341 - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93009.cva - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93009.html - HP ProBook x360 11 G3 Windows 10 x64 Driver Pack + 4/22/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113444.exe + 983638376 + 103926f46e3af3ead9f46cecea6bb4cf + 91C753C2EA525F3A37A68D60505F5CEC63949F6C756D453EA6D64A9D68542835 + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113444.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113444.html + HP ProBook x360 11 G7 Windows 10 x64 Driver Pack + false + + + sp93009 + HP ProBook x360 11 G3 Windows 10 x64 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 11/26/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93009.exe + 524253072 + 3001385103d0be6ccbb48ce33b711836 + E3B21135494775E84E5610AED91C10D23E9C28790C458DA89D52A2E08F5B4341 + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93009.cva + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93009.html + HP ProBook x360 11 G3 Windows 10 x64 Driver Pack false @@ -4631,2858 +4541,2363 @@ false - sp112646 - HP MP9 G4 Win10 x64 Driver Pack - 9.00 A 1 + sp134315 + HP Elite Slice G2 Windows 10 x64 Driver Pack + 17.00 A 1 Manageability - Driver Pack - 2/9/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112646.exe - 441546136 - 56e8519b62782e645c6c366e7eadac60 - 42512C8AA435DA75662E62611F42F9316BA29124395CEF4E339690A659852DC2 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112646.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112646.html - HP MP9 G4 Win10 x64 Driver Pack + 9/2/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp134001-134500/sp134315.exe + 691266928 + 8550f2fcf7fec13fd2df56c74e8cd868 + 2A7E6921AFCA6087D7BD4C3992BD005A5B1B2B0616B9D1AE31AF40018F1DB60E + https://ftp.hp.com/pub/softpaq/sp134001-134500/sp134315.cva + https://ftp.hp.com/pub/softpaq/sp134001-134500/sp134315.html + HP Elite Slice G2 Windows 10 x64 Driver Pack false - sp99720 - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - 9.00 A 1 + sp114219 + HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 11/14/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99720.exe - 890260152 - bf4ced07dd7348f601ce1d177af7bdce - D8FA514DA8DE294D61D48528E7123E1C51D3E858A6003625DF334EB4B689EE99 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99720.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99720.html - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 6/17/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114219.exe + 1299708424 + 4678f0fc0c704f138ff90cdfcbe09d8e + 166BC3E5679731D9B9B87F8E133C84BA2E23483D7753E0D7E26C99743D054116 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114219.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114219.html + HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack false - sp105672 - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - 19.0 A 1 + sp80239 + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 6/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105672.exe - 975426896 - 062c23c5bc591d728a1554fc92357950 - 03EE77C15EDE7B538E80BD95341A16C5D0C0E50173A64BFBFE9571FA69CF1120 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105672.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105672.html - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 9/24/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80239.exe + 622432336 + d6ef123f632a52aa520ef62fff45e596 + 608F2A191701229B8A18F8572BEACA3DBF0B8846BFF0909F92D9E545A48226FE + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80239.cva + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80239.html + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack false - sp123503 - HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack - 5.00 A 1 + sp172351 + HP Z2 Mini G1i Windows 11 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 7/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123503.exe - 1528202336 - 225ce361c31a8012cacbdeb63927a910 - BCB65DED88D0ABAA7B4B81C8B45882048CD25BB985F0B0198D3798220E05C814 - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123503.cva - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123503.html - HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack + 4/16/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172351.zip + 3410103342 + A74A91E836191CDD08A801673E226638 + 7C2E130CDF2C2ECF07BE36288D782F54C4DAF56D75789AA582DBEF4665D8CAAC + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172351.zip + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172351.html + HP Z2 Mini G1i Windows 11 x64 Driver Pack false - sp161789 - HP Engage Flex Pro G2 Win11 x64 Driver Pack - 7.00 A 1 + sp142803 + HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 8/7/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161789.exe - 2274813368 - 323431EB00D25F04603D735F07FA5D8A - 166AFF95A29CBBC2CA239C2CA2E9B73E395BCBAA808C13B1DEB1D67E1E975223 - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161789.cva - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161789.html - HP Engage Flex Pro G2 Win11 x64 Driver Pack - true + 10/11/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142803.exe + 741029256 + a5e6c97904bee8c966843dc797cea21a + 68BB8DC6A3CCA38B1DCDCE234E3005A1A1681079993C85920201C18801146145 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142803.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142803.html + HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack + false - sp105920 - HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack - 15.0 A 1 + sp97017 + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 7/5/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105920.exe - 601163752 - e43728b0c011e6b00ba0b3097d9620b7 - 1D80166C2F417E5F945BA756BAFF8B9FEA2530FCA5ABC53669F767F2B3C05FF3 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105920.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105920.html - HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + 7/16/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97017.exe + 703717080 + 3ba4b65502ff8b2217079f5b2c556869 + D59100DFE0B31FD3187A9E6EAD7B7E522D0F6C3FF8FD0CE3A6CB2C51DA21E5BA + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97017.cva + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97017.html + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack false - sp172357 - HP Z2 Mini G1a Windows 11 x64 Driver Pack - 3.00 A 1 + sp157866 + HP EliteBook Ultra G1i Next Gen AI Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 4/17/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172357.zip - 1479460848 - 4FEA3D50DA458EC8539BBF860054EB19 - D9F7D2C883D75E9E25BB0710984A0DD7E961BD29D3A2F2F9CCA011A01FC6AB94 - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172357.zip - https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172357.html - HP Z2 Mini G1a Windows 11 x64 Driver Pack + 4/2/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157866.exe + 1635244360 + 4F65CBD6C49B5C2F74EEB4B4B5F325C7 + BF5C2CABB84288D73995588B04F2D8EC0A69105D3544653D7E20AF4FDDF69DD1 + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157866.cva + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157866.html + HP EliteBook Ultra G1i Next Gen AI Windows 11 Driver Pack false - sp101912 - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack - 6.00 A 1 + sp114196 + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + 13.00 A 1 Manageability - Driver Pack - 3/17/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101912.exe - 793872392 - 1b919db8de50bde4254034b880baad12 - 9CB0CA446CFBDFA0F3C86ACCC4A40C0738069EE57EDD2D6823E1BA833CC1535F - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101912.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101912.html - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 6/15/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114196.exe + 1724599040 + 74cb20fa15d30ecf76419310f41e270e + F79241321A19CC235552C618923CDFB55384E4D5C207F8D4330F8BF0E7406001 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114196.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114196.html + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack false - sp114212 - HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack + sp95455 + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack - 6/17/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114212.exe - 1608954216 - ac98fd9e94d8b744b6f5dc98ca6d719b - B9A23A401867CFADE80AB8AC5BCC94B769DD20F53C85957DA8F45001C12D8151 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114212.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114212.html - HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack + 3/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95455.exe + 722719408 + 9428c86bea02237c1784186e0bb5be2a + 5981B3F7CD9B52DA16EE568BD274943D9B2A6C5419ECE817A510ACE98664BF92 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95455.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95455.html + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack false - sp107648 - HP ProBook 4x5 G7 Windows 10 x64 Driver Pack - 2.00 A 1 + sp173479 + HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 8/17/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107648.exe - 437285168 - 9da32a025c6d8105a6f464597c28af34 - 42604271C0954621190A3A3DFFE43BB1352882786251004FD7FF4753408296AE - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107648.cva - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107648.html - HP ProBook 4x5 G7 Windows 10 x64 Driver Pack - false + 6/12/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173479.exe + 1995551520 + 77EA4D4F817B592B4B2912F787C6B738 + E1F6254D8EDB5EC0D041EE7D32BB8BB40388AB9291E2ADBBBC1474498FCBC32C + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173479.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173479.html + HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack + true - sp80257 - HP Z240 Windows 10 x64 Driver Pack - 06.2017 C 1 + sp102073 + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/15/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80257.exe - 906813424 - 81c4a2bb8a7b916ae866fc94b2529d2e - AB8BD1BF4205C0BD0E42096CCE20D743DB410CACA333A1C6D5B61B58CA7B9674 - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80257.cva - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80257.html - HP Z240 Windows 10 x64 Driver Pack + 3/20/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102073.exe + 791414560 + 2b6baaf712394577fd4ea82eb08c180a + 1885659410B49C05407228503A505DFA17C177B0945AE742CC016870B4256CD1 + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102073.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102073.html + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack false - sp112583 - HP EliteDesk 705 G5 SFF Windows 10 x64 Driver Pack - 11.0 A 1 + sp80258 + HP Z2 Mini G3 Windows 10 x64 Driver Pack + 06.2017 C 1 Manageability - Driver Pack - 2/1/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112583.exe - 901612064 - e80a9b516cb962e39e7be47f49e36793 - B2D974AA4C9A6D2F9CF7F00A4B2F1348A656D3408A41D4C875F1DA4432146463 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112583.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112583.html - HP EliteDesk 705 G5 SFF Windows 10 x64 Driver Pack + 6/15/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80258.exe + 721917088 + 48de1e976500a70307fdcd636b08a456 + 2418449C2AB483E6541124271946885CED8BA49CD06217D12AD2284D1993A211 + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80258.cva + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80258.html + HP Z2 Mini G3 Windows 10 x64 Driver Pack false - sp103581 - HP ElitePro 400/600/800 G4 PC Windows 10 x64 Driver Pack - 12.0 A 1 + sp172110 + HP Z2 TWR SFF G1i Windows 11 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103581.exe - 417375016 - e9dd00dd7bb7a01132b58e91ea6c1b0c - 1C1E7C346187F62C02A7D60FB6541877E8F2F942E65B676B0EE108DA0FCEC4CA - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103581.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103581.html - HP ElitePro 400/600/800 G4 PC Windows 10 x64 Driver Pack + 3/27/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172110.exe + 3029645104 + E247EE9440D626275AFEBE21772CB524 + 86A82D0D468FC3967E2FC126D2184E9DC690F762632D5BB7380BACD08C4576F6 + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172110.cva + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172110.html + HP Z2 TWR SFF G1i Windows 11 x64 Driver Pack false - sp101495 - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack - 8.00 A 1 + sp112840 + HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 1/31/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101495.exe - 756093056 - dd68f93b1fad79a6384075aabcca868e - 419FC15B4B6703A9727881A39D0E7990E1732E814FA5F345B734E40103FE8205 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101495.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101495.html - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 3/2/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112840.exe + 1515468264 + 9b1abecb13effe1aedeb252cf1cdbf1c + 180C025761B5A4F9BEE5A70DC6E8CC3A55E93B83DD78180EA26660A5AF7767E6 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112840.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112840.html + HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack false - sp84798 - HP Z440/Z640/Z840 Windows 10 x64 Driver Pack - 2.2018 H 1 + sp158846 + HP ZBook X G1i MWS Windows 10 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 2/21/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84798.exe - 1048643200 - 2ba9c36f4c332b740ec1cf415e247801 - 88693928E73AAF2A13BF42F65FA71E0BC2D65D1AC46BE8316ECE594517FE1471 - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84798.cva - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84798.html - HP Z440/Z640/Z840 Windows 10 x64 Driver Pack + 5/26/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158846.exe + 2675517056 + 537087FC8AB0E57FC27AA8095311D55A + 2869F0D1B9AE96EAFDE6605336017557A196B3891C48596526D6287838262847 + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158846.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158846.html + HP ZBook X G1i MWS Windows 10 Driver Pack false - sp157843 - HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack - 9.00 A 1 + sp138543 + HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 12/3/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157843.exe - 3051982312 - 5EA2E9CC807B676372FE9A59B636754F - B209F4176467E11A911F2363BC325302AB92AB85F9E6028DDEE8D89BD8C06B71 - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157843.cva - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157843.html - HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack + 2/24/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138543.exe + 940843216 + 7153d8935eab68b44eb4411c8a82156e + F92B25EC9FCECBEBBAC9538C24BEF82D7B82042CCD51EF56D6D3DD166EF800FC + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138543.cva + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138543.html + HP ProBook 4x5 G8 Windows 10 x64 Driver Pack false - sp85218 - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + sp152748 + HP ZBook Firefly/Elite x360 8x0 G11 Windows 10 Driver Pack 1.00 A 1 Manageability - Driver Pack - 1/31/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85218.exe - 996666624 - e88dbe591be7d5189260396e4af8576d - F615205BFE6827A377A0A8410B586562E1B1500DE6273B5E4E7ECEEAD827FB80 - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85218.cva - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85218.html - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack - false + 5/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152748.exe + 3087226816 + 54e103cc0e7d116c6835a72de2dc8277 + EB963707180D634B80D1B24F3E6AF44DE9E43F85840369CD85C65BD1BB5EEF0D + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152748.cva + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152748.html + HP ZBook Firefly/Elite x360 8x0 G11 Windows 10 Driver Pack + true - sp92270 - HP RP5 5810 Win10 x64 Driver Pack - 2.00 A 1 + sp114168 + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 10.00 A 1 Manageability - Driver Pack - 10/22/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92270.exe - 646467080 - d914ecc7cc20c24ab50c512b964bf985 - 13754F59B8300AE5423A94AA1B8CF22B98489E5CE96C33790A3CC9F0A419707D - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92270.cva - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92270.html - HP RP5 5810 Win10 x64 Driver Pack + 6/9/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114168.exe + 1086849528 + 5c062cc9176be659640acaa8a8b44594 + 409259EB8EDFA1EFF75800DBC158D8AC07E1CD86FC2B04B2C10CB432EC225F04 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114168.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114168.html + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack false - sp114238 - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack - 11.00 A 1 + sp84352 + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/22/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114238.exe - 1471309368 - 428c87932c4ca6116c769ebeb2a9748b - FD549AB275161DD2FF2B5051C2B8FB84F7317E10DC08C72B87640AD2D63D88E0 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114238.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114238.html - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 4/17/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84352.exe + 589795024 + 9ae80fdfefa67a42426c9a26442f7064 + 234E23CF11D2CB9977A1F82801772FCC0797982AAB160459C8198FA74BB4B00D + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84352.cva + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84352.html + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack false - sp103584 - HP Zbook 15/17 G5 Win 10 x64 Driver Pack - 12.0 A 1 + sp78922 + HP Z440/Z640/Z840 Windows 10 x64 Driver Pack + 01.2017 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103584.exe - 954825632 - 90c9efbc98815bf70edb1cf1ffa1c8b5 - ACBDD7D1847C8E5E20675DE2DCC8DD9C01C0FB3614AB2EE8E3BA3D72A5FDBDB2 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103584.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103584.html - HP Zbook 15/17 G5 Win 10 x64 Driver Pack + 1/11/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78922.exe + 673643544 + fbd87cd4a7a27f4c0fd617f075d80fac + 673CC9B504CBF5FBCBA911FED060F2F698350BE2020C83DD1F1146D258CAABE4 + https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78922.cva + https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78922.html + HP Z440/Z640/Z840 Windows 10 x64 Driver Pack false - sp110210 - HP Z4G4 Windows 10 x64 Driver Pack - 4.00 A 1 + sp92421 + HP EliteDesk 705 G2 Win10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 9/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110210.exe - 993618120 - 8d1a951e000fbe03d8ae28f6536ec645 - EE8044AEF923FBC405953B2718B595192F09658D6B515AA0E9A11C43FD62FAA4 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110210.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110210.html - HP Z4G4 Windows 10 x64 Driver Pack + 10/31/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92421.exe + 800386224 + d7e5932b33975509cac3baed2a22344b + 86657DCFDF1262661A33CCCD274C9484AD4EE7CF1DA860390C7B058B410AC5CA + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92421.cva + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92421.html + HP EliteDesk 705 G2 Win10 x64 Driver Pack false - sp144912 - HP EB 8x0 1040 ZB G9 MWS Windows 10 x64 Driver Pack - 3.00 A 1 + sp152173 + HP Z2G4 Windows 11 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 2/24/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144912.exe - 2507886208 - d6e501602e579038895e0ca54ecc1301 - 0651529DE6672656C057A63308D5EDAD7851BA6D959135279C121813D8E43685 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144912.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144912.html - HP EB 8x0 1040 ZB G9 MWS Windows 10 x64 Driver Pack + 4/15/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp152001-152500/sp152173.exe + 1321129280 + 51fe239ba30c71f763a6a5e956e05635 + 445975EAADF8B6793B5C258FF07FDCE625DA3F006E3667E3F292D953626FD68B + https://ftp.hp.com/pub/softpaq/sp152001-152500/sp152173.cva + https://ftp.hp.com/pub/softpaq/sp152001-152500/sp152173.html + HP Z2G4 Windows 11 x64 Driver Pack false - sp85475 - HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack - 9.00 A 1 + sp114179 + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 2/20/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85475.exe - 1055770520 - 5e17c4c45835ea399b7320911687f319 - 8B6608F4F22455426CA4D6D3A5E68D131AF0143D2B7E1BFEA7240412F8E1CD13 - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85475.cva - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85475.html - HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + 6/11/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114179.exe + 1180286416 + dfa4ada9c9c515c3d28bf3f27e8a378d + 9D1603DF7EB5EE0E53D77FB2A7C62F2AF81AB66E03CBC6CBD86617359603A77F + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114179.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114179.html + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack false - sp93466 - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + sp110123 + HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 1/8/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93466.exe - 730278424 - 1821f3b4e3a231007ab6bf29ce5d084b - 9B91902411EC40F382F000F334EF6F8C895BFD8DDCEA09A0363AEB0422E4C460 - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93466.cva - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93466.html - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 9/16/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110123.exe + 1458029128 + f762acf0acdbd4f35dfe6d00a75045bc + 0C0DCD8CF7BE9560A19523FFBEB4853B439CCF87D5F4407EB7E730941911FC4A + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110123.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110123.html + HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack false - sp142734 - HP Probook 6x0 G8 Windows 11 Driver Pack + sp123512 + HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 9/21/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142734.exe - 1276964016 - 7eb79b87de6e8445fde1c51c76793b09 - CE9E7F37ED0834FDACD8B57A55D968A0BD51EEF678C9235DD61E5BA5492F44CC - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142734.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142734.html - HP Probook 6x0 G8 Windows 11 Driver Pack + 7/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123512.exe + 1668932840 + afd6307ab22846a599e189a6aa30fb1a + 2618336CBB8725896503A4C52A64F6825D5E350A76FED242D6B229947B1F5216 + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123512.cva + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123512.html + HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack false - sp72467 - HP Z1 G2 Workstations Windows 10 x64 Driver Pack - 1.00 A 1 + sp102072 + HP EliteBook x360 830 G5 Windows 10 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 8/16/2015 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72467.exe - 517273632 - 47fe122f41563babaa0993915783f279 - 2CE2C4623C4E4351E722A89C174A335887BF04526346623B89FF4B3780701096 - https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72467.cva - https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72467.html - HP Z1 G2 Workstations Windows 10 x64 Driver Pack + 3/20/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102072.exe + 658830360 + b539dc8ac4ed88c2cda0c7dcca3ec980 + D3292D7E669564725F5DC6545270DA4F4B75B3BB247CCD21DFB435B6112D822D + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102072.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102072.html + HP EliteBook x360 830 G5 Windows 10 Driver Pack false - sp150832 - HP ZBook Studio G9 MWS Windows 11 Driver Pack - 5.00 A 1 - Manageability - Driver Pack - 1/10/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150832.exe - 1535767688 - 77c6baae3bc1442d098b3eedb3a469a9 - 05F205C9FADF608970B1E594BAB57DC66DD6BED2B5DBDD98867ED5F3872D962D - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150832.cva - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150832.html - HP ZBook Studio G9 MWS Windows 11 Driver Pack - true - - - sp108885 - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack - 7.00 A 1 + sp88413 + HP MP9 G4 Win10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 9/1/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108885.exe - 1346866200 - 2d2c48eea430d985fb21094c5a144cb1 - ADB7F105E246F35FCD07A71A6DD9A8ADADC3D78713DF0E287C0F4DBFC29532F9 - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108885.cva - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108885.html - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack + 6/20/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88001-88500/sp88413.exe + 592922928 + d261e73e7735492fdefc009ab33f3a3c + BBD1B09196BB7AD39C05CA796E7B74A553B103231FD4B19EDB5DBE14044D7439 + https://ftp.hp.com/pub/softpaq/sp88001-88500/sp88413.cva + https://ftp.hp.com/pub/softpaq/sp88001-88500/sp88413.html + HP MP9 G4 Win10 x64 Driver Pack false - sp102027 - HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack - 10.0 A 1 + sp138571 + HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 3/18/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102027.exe - 806162736 - fe242a7eae05e91738d68561f2beb3a7 - 2804D86933DE124DF646183DAA47A33EAA4999ED3F46963CCF9E4DD5AD5693D8 - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102027.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102027.html - HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack + 3/1/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138571.exe + 1122529616 + 80b1c26dc7983b7a1dabe4105d0026e7 + CD5D7C4673C6EF70ADD98D06F1D9104FC03661277324EFC6C5580001A19DC5EC + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138571.cva + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138571.html + HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack false - sp101287 - HP Engage Flex Pro G1 Win10 x64 Driver Pack - 6.00 A 1 + sp91601 + HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 2.01 A 1 Manageability - Driver Pack - 1/14/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101287.exe - 775035520 - b54730a188bd5220ac78945d3ecc0e3d - 455D2F408B506A03A06F2EBE61B79EF77EB3C924A159BF31F6E61F68A4D85850 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101287.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101287.html - HP Engage Flex Pro G1 Win10 x64 Driver Pack + 8/15/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91601.exe + 575707480 + 365676fd24d21dc79c6c05b8e42d60fb + AFD7F44C928677798104272E3FD251934972E27D0A22B32DC63286EE41EFAD09 + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91601.cva + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91601.html + HP Probook 6x5 G4 Windows 10 x64 Driver Pack false - sp168475 - HP ZBook Ultra G1a MWS Windows 11 Driver Pack - 4.00 A 1 + sp136261 + HP EliteOne 800 G8 AIO Win 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 12/18/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168475.exe - 1137349240 - 86389DB9D3842199430A6D0EB88357CF - CF3C87F234708B6E502177E68D10BE3590562C5259471D0C931E939FD89966BB - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168475.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168475.html - HP ZBook Ultra G1a MWS Windows 11 Driver Pack - true + 11/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136261.exe + 821687008 + 77812496a14c772088e24b55fb12d800 + 81FF15C257DC5FA9CA1BE879545347149460D69EFFDDFEE9B4238A3B2E376CF0 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136261.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136261.html + HP EliteOne 800 G8 AIO Win 11 Driver Pack + false - sp145964 - HP Engage One Essential AIO IoT10 2021 Driver Pack + sp96782 + HP ElitePro 4/6/800 G5 AiO Win 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 4/11/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145964.exe - 498656952 - cef777f514faa8553e42ee00f2738ec5 - 47F093778FB6D93FCF954E45B299FC3444798CDDA83253BC6207072D4D85E134 - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145964.cva - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145964.html - HP Engage One Essential AIO IoT10 2021 Driver Pack + 5/30/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96782.exe + 738862328 + eebb0157f59933272493e925deef3d33 + 640FCE37A390965D243F9507B42AB1C637FBBF62C6A4A80CF88381123812F09D + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96782.cva + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96782.html + HP ElitePro 4/6/800 G5 AiO Win 10 x64 Driver Pack false - sp149088 - HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + sp173483 + HP ProDesk/Elite Desk Mini G1i Desktop Windows 11 Driver Pack 5.00 A 1 Manageability - Driver Pack - 9/4/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149088.exe - 1580264856 - 7bb8421a071d04892d9cc59adbb80964 - B9E515DBF58E98B35FEA6164391B3DE1110E3860DF82C692BF676BDA3E2C486E - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149088.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149088.html - HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + 6/12/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173483.exe + 2339228368 + EDB7AAF447075DD7993267B0CF0F4474 + C7A6601A1C6A6D3F226ADBCACC16C829C97B156B890F69AA91C937A86F3B2A3F + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173483.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173483.html + HP ProDesk/Elite Desk Mini G1i Desktop Windows 11 Driver Pack true - sp144659 - HP Engage Flex Pro G1 IoT10 2016 Driver Pack - 10.00 A 1 - Manageability - Driver Pack - 1/18/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144659.exe - 977821896 - fdef50e4407c75e1128bcb7646cc1575 - 5BA228D9B517DBB3D02B6A4AB9275F169FDAE606AB6315EEAA689CD6221AF9BF - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144659.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144659.html - HP Engage Flex Pro G1 IoT10 2016 Driver Pack - false - - - sp110313 - HP ProBook x360 435 G7 Windows 10 x64 Driver Pack + sp138435 + HP ZBook Power G8 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 9/30/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110313.exe - 974477416 - f7a4d214fb2134ee05dd1fd4832c4cbe - 24E8C5296777C0EA844C20B4049835DD8A8533B669F2E07544F40A696B48FEB2 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110313.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110313.html - HP ProBook x360 435 G7 Windows 10 x64 Driver Pack + 2/16/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138435.exe + 1217708984 + 6b6c60f3937b0f73b7ad50032931e827 + C0AF51705E5AC149B7E854BC07D656217B128FF959EC8A21044BB44988F7D6AA + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138435.cva + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138435.html + HP ZBook Power G8 Windows 10 x64 Driver Pack false - sp142792 - HP EliteBook x360 1030/40 G8 Windows 11 Driver Pack + sp145268 + HP ZHAN/Pro/Elite 4/6x5 Windows 10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 10/15/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142792.exe - 1281992344 - 427b066253b91196318970e4faab5d4c - 49F184ABD28400F53F9C5D65E63311673CEFDB06AEE274A0A7593C5696AB7631 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142792.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142792.html - HP EliteBook x360 1030/40 G8 Windows 11 Driver Pack - false + 3/18/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145268.exe + 933538288 + 0e2b4a7c797a798cf1fd4bbf09bc377d + 85D32E04F744106D4667FD351E11BC4420BD793F4699A7D3C0831A6EECDB1F1F + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145268.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145268.html + HP ZHAN/Pro/Elite 4/6x5 Windows 10 x64 Driver Pack + true - sp150165 - HP Pro x360 Fortis G11 Windows 11 Driver Pack - 4.00 A 1 + sp110348 + HP ProDesk 405 G4 DM Win 10 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 11/16/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150165.exe - 830874144 - f826c217675321efdb773613e133adb8 - 94B0D08AA04D6470920CC62340B2C6E2372D12D8855131702FB1813233EF7618 - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150165.cva - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150165.html - HP Pro x360 Fortis G11 Windows 11 Driver Pack - true + 10/5/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110348.exe + 565774144 + 77771ada3d558be4af370d0a3f829f1a + F24E132131D7DBB4E833EF178CA9FC170FB57B25E5DCEB57EE001B7A5DF3A0AE + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110348.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110348.html + HP ProDesk 405 G4 DM Win 10 Driver Pack + false - sp105595 - HP EliteDesk 705 G3 Windows10 x64 Driver Pack - 18.0 A 1 + sp161460 + HP ZBook Fury G11 MWS PC Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 6/18/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105595.exe - 746736296 - 36ea4720bd728b017737a02646d9ecf5 - 5E690EAB403928431CFD68872AE593098150A37F50AD4CF6B1E30297EBE3F733 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105595.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105595.html - HP EliteDesk 705 G3 Windows10 x64 Driver Pack + 7/14/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp161001-161500/sp161460.exe + 1979019072 + BAD36D3610C588A07C4C979404109760 + 4D6F886C72F61A64D9FC250E8F9FE5F98B6612A136784BC2E53C60F1550815BE + https://ftp.hp.com/pub/softpaq/sp161001-161500/sp161460.cva + https://ftp.hp.com/pub/softpaq/sp161001-161500/sp161460.html + HP ZBook Fury G11 MWS PC Windows 11 Driver Pack false - sp84351 - HP Probook 6x5 G4 Windows 10 x64 Driver Pack - 1.00 A 1 + sp112207 + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/20/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84351.exe - 592765928 - fab16fc00c4eb2e44532262966807f9f - 15BF0043246576223E4390C951964DB53B62CA2093A41820F40773D0EB61CA81 - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84351.cva - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84351.html - HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 1/11/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112207.exe + 1651058824 + 588b905dc9c20fb398b826634935ff29 + 91F246631122FDC54A144157C173E97722CE33A3C349874CBE60A450ABD47FDF + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112207.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112207.html + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack false - sp96028 - HP ElitePro 4/6/800 G2 PC Win 10 x64 Driver Pack - 13.0 A 1 + sp161707 + HP EliteStudio 8 AIO G1i AI PC Windows 10 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 5/1/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96028.exe - 834454408 - f4fd4fa16098b96e51499c76e2dfb608 - 417899D00C7512DDF7335B5C20676E1AC8A72F585E66A139753B73D5A36CE4D1 - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96028.cva - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96028.html - HP ElitePro 4/6/800 G2 PC Win 10 x64 Driver Pack + 7/31/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161707.exe + 2716245976 + C92BC6B234818A2DA4FCB91C62EEBB1F + 43A4359DD20CE45322B71A76FA9E14868FCF491CDE63999C26C6C4D88588B3BB + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161707.cva + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161707.html + HP EliteStudio 8 AIO G1i AI PC Windows 10 Driver Pack false - sp95331 - HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack - 12.0 A 1 + sp103622 + HP EliteBook x360 830 G5 Windows 10 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 3/12/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95331.exe - 616276760 - da750a0a12c535376f919fd3e66446cf - 19828AACCF1215454E465B3738D19D3B9871CC501E6C30B8C507FD373B6E8882 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95331.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95331.html - HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103622.exe + 632718904 + 97B398002B6832A7A0701CED347858E1 + 360E24C3D45773F8AB179C2340D3F8E9FBF979B38F565BB52BE2648B692842A9 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103622.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103622.html + HP EliteBook x360 830 G5 Windows 10 Driver Pack false - sp79202 - HP EliteDesk 705 G2 Win10 x64 Driver Pack - 6.00 A 1 + sp173539 + HP EliteDesk/ProDesk Z1 G1i Windows 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 2/24/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79202.exe - 682817032 - 618cfe4cbff332f467f757be06d854a1 - 6DEC8051E9C8C45C37127199B75226E9EFD1A092EF4621BD8A49CC29BAF8F3BF - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79202.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79202.html - HP EliteDesk 705 G2 Win10 x64 Driver Pack - false + 6/10/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173539.exe + 3881492080 + 46DA45DC38D392F11833A5ECED04CBAA + E21205D0CA2BE2E606A911B8666C6E63B6A19EF966C060460D498B752774CA26 + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173539.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173539.html + HP EliteDesk/ProDesk Z1 G1i Windows 11 Driver Pack + true - sp174387 - HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack - 12.00 A 1 + sp174366 + HP ProBook 4 G1ah 14/16 Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 8/18/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174387.exe - 2366000856 - B4FA68EAC3392CD0D26D9A92CEC3DBE7 - C50ACBB697AA4FFAA43FA6C04B8929C64BAE56376063F6FBA4A9E044E3380586 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174387.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174387.html - HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack + 8/21/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174366.exe + 1224120000 + E83BCF7EAA65F38C5F0C1D2C895E5CAF + B08783846C3F22B444B11A7EF4DBAEA45ECD6C721C68CBB681E01317AAEE0773 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174366.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174366.html + HP ProBook 4 G1ah 14/16 Windows 11 Driver Pack true - sp149082 - HP ZBook Fury G9 MWS Windows 11 Driver Pack + sp149054 + HP Pro x360 Fortis G11 Windows 10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack 8/31/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149082.exe - 2180501496 - b7f2b9b37b3b1cd2592ddc218c761418 - DA98B40674A9AB74AB9DA6D30F1BAE3E377726D301980B9297FA352FF64A1901 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149082.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149082.html - HP ZBook Fury G9 MWS Windows 11 Driver Pack + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149054.exe + 853581448 + 25ab202ac9fb327ea274edd2fbb5b686 + 26B56A389DDA84E9BD23B0E750B7AB0559A240308BF05FA9AFD3C225FBF004F1 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149054.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149054.html + HP Pro x360 Fortis G11 Windows 10 x64 Driver Pack true - sp151777 - HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack - 4.00 A 1 + sp101746 + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151777.exe - 1164146832 - 223975fea3cc26db0557d04b5a60687a - 3AD4BD9612BDED4309CE0211A5D81689EDBA7A609431FB3ED746F20CBDDC7451 - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151777.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151777.html - HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack - true + 2/25/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101746.exe + 587266672 + 29cf5c492b41f978eb25e463ff21876d + F742EADCD491A4B7FC77AF1B58400FCFBB0A03CCC7A1FA93BD09CE34E134211F + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101746.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101746.html + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + false - sp103538 - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack - 7.00 A 1 + sp140881 + HP ZBook Fury 15/17 G7 Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 4/20/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103538.exe - 796261808 - 6915293e4e101b5512cc08b9d80c9b51 - A5EB30EE8D80DD45CD68DE4E5ADA1ACA31AB7E11D92D8A95FB36D1575D596D87 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103538.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103538.html - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 7/1/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140881.exe + 1343492288 + b5df66dd57759011af1db7eb11877f81 + C66B5D27283239E202888C3C3FD2EF5BE4C0D7F481A32CB260EBD5E29462C39C + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140881.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140881.html + HP ZBook Fury 15/17 G7 Windows 11 Driver Pack false - sp96027 - HP ElitePro 4/6/800 G2 AiO Win 10 x64 Driver Pack - 13.0 A 1 + sp112089 + HP Probook 6x0 G8 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 5/1/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96027.exe - 785697008 - a866ec67a09821919e6adca373d72ae8 - 34B6485BC73A830EB1553D8CBDA6688AEA355F44900F8DDB7E80213B9DA376A8 - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96027.cva - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96027.html - HP ElitePro 4/6/800 G2 AiO Win 10 x64 Driver Pack + 1/5/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112089.exe + 1660242784 + 8b9cf2e808cf91cfc01400ce1ec043c9 + 9FDC19777CE51694E1E4BBD03F974CB271C780000F8956326B69BAFAE4A8B5DF + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112089.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112089.html + HP Probook 6x0 G8 Windows 10 x64 Driver Pack false - sp147680 - HP ProBook x360 435 G8 Windows 11 Driver Pack - 2.00 A 1 + sp136455 + HP Z2G4 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/7/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147680.exe - 934364800 - 03625def9176cc45cd149a921f02fe35 - 04402493C393F6A62551A0B8450335C6CCBD87CC246920ACD894CA3E1DAE1246 - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147680.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147680.html - HP ProBook x360 435 G8 Windows 11 Driver Pack - true + 6/25/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136455.exe + 1435272472 + 6e7cd13a00696e6efc5ec104b31d18bd + 70D241A1383700C0F1AC1852735D8F9A16AB4261C4F1D625E97AD80936951106 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136455.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136455.html + HP Z2G4 Windows 10 x64 Driver Pack + false - sp174401 - HP Engage One G2 AiO System Windows 11 x64 Driver Pack - 2.00 A 1 + sp149567 + HP Elite Dragonfly G4 Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 8/18/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174401.exe - 1051379352 - A9601F1EB16E55D24F71FF13350890DA - 1857EADB0C0779EA44EEFFC7E60EC08681AB6C0B5FFB45DAA1C5414D30164DB6 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174401.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174401.html - HP Engage One G2 AiO System Windows 11 x64 Driver Pack + 10/5/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149567.exe + 1022598232 + 3b372fa2efe09bb2e9fddfd3a461c144 + C7EF27E364EBCC4A1EA83D8F56C2EFCBB190148D3022B28222E8CE2F92EE53FD + https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149567.cva + https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149567.html + HP Elite Dragonfly G4 Windows 11 Driver Pack true - sp114257 - HP Elite Slice Windows 10 x64 Driver Pack - 21.00 A 1 + sp112926 + HP EliteBook 8x5 G8 Win 10 x64 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 3/9/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112926.exe + 562563840 + b13cfe55298540041a81ff1a5240f5db + 876F1113F5B25E54EEE5ED6F0D1B932BF94AFC382A6DA8A3C6714D84CB345567 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112926.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112926.html + HP EliteBook 8x5 G8 Win 10 x64 Driver Pack + false + + + sp114258 + HP ProDesk 405 G4 DM Win 10 Driver Pack + 9.00 A 1 Manageability - Driver Pack 6/24/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114257.exe - 544124168 - 9b951906242503c0461b8e5c41d3be23 - 33D208CDDE8E3D87EBA44EE6C069FE1E87FB0578FC65C04168B4EEE49CD30DBC - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114257.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114257.html - HP Elite Slice Windows 10 x64 Driver Pack + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114258.exe + 397317544 + d5b4f5150a4a5e371a985d94c1b636c0 + 16E805344E4B1B87D4AE10B1415B4B4FC16DB50334ADBF014F34328D43EC0BF2 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114258.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114258.html + HP ProDesk 405 G4 DM Win 10 Driver Pack false - sp80891 - HP Spectre Pro x360 G2 Windows 10 x64 Driver Pack - 2.00 A 1 + sp80523 + HP Folio 1040 G3 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 6/23/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80891.exe - 404084848 - 23e5efd7d3e01649b5cb52c572b77815 - 8C065D686049FB4A5C436ED9B44AD2AB7D6A82933041E56F7BB443B02A484F6A - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80891.cva - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80891.html - HP Spectre Pro x360 G2 Windows 10 x64 Driver Pack + 6/21/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80523.exe + 447891624 + 10a7ae2943db4f5411ba8568824a78ef + 644F3770A8E9E287F86A964F23A384612BC7750134DFE450560CE83FEF064225 + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80523.cva + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80523.html + HP Folio 1040 G3 Windows 10 x64 Driver Pack false - sp96024 - HP Z VR Backpack G2 Windows 10 x64 Driver Pack - 05.2019 A 1 + sp105884 + HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 5/7/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96024.exe - 457864576 - 49ef17eca4be032199e05c5305d3755c - 4E51E2E10C644CC9CF6A144C7315B5C17ACE64E569547CD12C5DEB76B9410EFB - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96024.cva - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96024.html - HP Z VR Backpack G2 Windows 10 x64 Driver Pack + 7/2/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105884.exe + 900319816 + 5debd84093b545f87c5503c6029ca545 + 2F3F3B8CA919E1238DA643F56EC9545B1BB16C59D4C4AE86CC5B20A86151EE87 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105884.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105884.html + HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack false - sp147679 - HP ProBook x360 435 G8 Windows 10 x64 Driver Pack + sp145708 + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 6/7/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147679.exe - 929051944 - 177e71e02a7de43d38d1715daf9e9a4d - 0129FC1D6CC8119721ED53483D2C8CC811B2F98633922D94B004BB7429797FFA - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147679.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147679.html - HP ProBook x360 435 G8 Windows 10 x64 Driver Pack + 4/21/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145708.exe + 2822576448 + 58c03558580bf6490dc64d3bc6b9604c + 3A928C6CF74E7668A0D5B1D15B8EDD2B02E3913DAE1210C9D7C96DA21D5E3378 + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145708.cva + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145708.html + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 10 x64 Driver Pack true - sp91750 - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack - 2.00 A 1 + sp77225 + HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 8/27/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91750.exe - 769844016 - 77bb1117cbe259246961eca2326b4c12 - 68F60B2B981B433E92285645E87FCC51116A3CB958B588A358D136411E968E3F - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91750.cva - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91750.html - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 8/22/2016 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp77001-77500/sp77225.exe + 516323304 + 63211795340609598f6c3e9ca7d336f6 + 8B7DB0FB53F38509EB25DEA40274620E2102A3B15DB12780A73AD3FDEFEC38D2 + https://ftp.hp.com/pub/softpaq/sp77001-77500/sp77225.cva + https://ftp.hp.com/pub/softpaq/sp77001-77500/sp77225.html + HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack false - sp108939 - HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack - 2.00 A 1 + sp144956 + HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 9/4/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108939.exe - 975004656 - 99ae460ca72423c76743b2847076e02c - 95CAB9B22DCB2A41CCAA5EBD3F9B361427D29869475B025A0C491CFE121EA06E - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108939.cva - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108939.html - HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack - false + 2/22/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144956.exe + 1263788968 + c70036362aa1aaa467242026bb91c398 + 1A19212D14ECD443FAF6F478436C942C0C32799213C9A4D94CA0F066163FF930 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144956.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144956.html + HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack + true - sp88958 - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - 13.0 A 1 + sp111171 + HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 7/24/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88958.exe - 947806080 - 2994960e336ea8714b0375c2585361a1 - 6CA9DFA69C98429F79DCF1C9E77057ACD44FC1B9ACEB2AB8E31415198D1EE9CC - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88958.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88958.html - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 11/18/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111171.exe + 574650288 + 75c775ad8f8826829907363675cb3bc6 + B99C8431937975644EFC975C5EF6FCB2D2314D6BE48A1911A9DE2BDACD2B2D0E + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111171.cva + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111171.html + HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack false - sp110361 - HP ZBook Studio G7 Windows 10 x64 Driver Pack - 3.00 A 1 + sp113168 + HP EliteDesk 800 G8 DM Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 10/6/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110361.exe - 993965424 - 0441c6100a4578690391a5f87a20dd87 - C9E70F4B7C98A432D4046FD369729F74CC80D90B70F8195EE0452C6B0EDD9708 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110361.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110361.html - HP ZBook Studio G7 Windows 10 x64 Driver Pack + 4/6/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113168.exe + 1190369584 + fa9aed3c86733de41fde0849ed72ac3b + F082A54F546ECEB2EFA456E9625C3C37B6D90A168732230DCFF8ED44DC63DB5C + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113168.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113168.html + HP EliteDesk 800 G8 DM Windows 10 x64 Driver Pack false - sp144946 - HP Engage Go 10 Mobile System Win10 x64 Driver Pack - 5.00 A 1 + sp89053 + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 2/17/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144946.exe - 986054656 - 2124fd5ea5e9a64d39f972c44df6ff0a - 251EC97895F9E35638398DF416FD4B449BF67E6EFC319FDF994DEA4BE347595D - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144946.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144946.html - HP Engage Go 10 Mobile System Win10 x64 Driver Pack - true + 7/26/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89053.exe + 1005889456 + 16c0f19b9433b3727816000e5b00bf0d + AA5CC4A30881FF4886959811E0736377A72C9F241E8C6C4CD293A39D3C293EBE + https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89053.cva + https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89053.html + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + false - sp123509 - HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack - 5.00 A 1 + sp142735 + HP ZBook Power G8 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 7/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123509.exe - 1554374400 - e8889e39a0d33623c3f26e0f866bfef5 - 57E6944EC343E4409C9E71A5AA6E1BCFD5F572457FFCAC7BCC8E4953FAE06407 - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123509.cva - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123509.html - HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack + 4/16/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142735.exe + 1225949000 + 3bf7132904d70189f5d814a3cd497c7a + D2D80F2CB2052A662E5479AEE78FDE7E080D161090C854C9AF715DFE2CBDDD3D + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142735.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142735.html + HP ZBook Power G8 Windows 11 Driver Pack false - sp103579 - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack - 11.0 A 1 + sp101918 + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103579.exe - 773112816 - b7a592af86e0a35b516ab41630503eb9 - 22C157374A931FE11ADAAF27B87BC567102F635C27359F0DD68A172B6C7DEE94 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103579.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103579.html - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 3/14/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101918.exe + 863083800 + 251e75c954721013995115a6caae568f + 974C59737B1FA3E14A2B12FB9C4D68032D2BC4D263FA61DA950B7EB06FF9B288 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101918.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101918.html + HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack false - sp114246 - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack - 13.00 A 1 + sp108884 + HP ZBook Power G7 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114246.exe - 1488636064 - 57143ed172cb829247de51069e940ae5 - D3EA79319E4844A414506F3AFA72022F01E19092C617B7DBD5C971446F76015C - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114246.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114246.html - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 9/1/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108884.exe + 1489450416 + 97cef7ce1d9343b20b77b1e7df9bb147 + 8FB916AF4BE3AF8EB437A99F8AECE072A353127E134551DA51C0BFEF01E5D76B + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108884.cva + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108884.html + HP ZBook Power G7 Windows 10 x64 Driver Pack false - sp168390 - HP EB X G1a Windows 11 Driver Pack + sp168444 + HP EB/ZB 8 G1a/ak NG NB/MWS Windows 11 Driver Pack 5.00 A 1 Manageability - Driver Pack - 12/16/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168390.exe - 1099258296 - D09A149059CF704B0C7C8CC8C8183603 - 6E26B58B0FF8EC70EFFB0AE65E855D58570F27E797DB881D6D3E2B0A2F8D3BEF - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168390.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168390.html - HP EB X G1a Windows 11 Driver Pack + 12/17/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168444.exe + 1117245528 + 97A54A38FA237E8851F32AE5636BB0D4 + 518F01250BC79CAE59350362919A3E46D749F78AA93BB23F7059DE4D295C3BCD + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168444.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168444.html + HP EB/ZB 8 G1a/ak NG NB/MWS Windows 11 Driver Pack true - sp144694 - HP Engage Flex Mini Win10 x64 Driver Pack - 4.00 A 1 + sp113515 + HP Z4G4 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 1/24/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144694.exe - 740546280 - c8f3dd1fdda723ef51ee1c5fc9a54620 - EBD9DAEEE9192718D5168ABA2F6CAA640BA88D259E57DBDC654B7C014CA52080 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144694.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144694.html - HP Engage Flex Mini Win10 x64 Driver Pack - true + 5/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113515.exe + 1071055776 + e4894b1134e03e98a93e946b4d64ba37 + 477EED5419E71BB678A4F277A386EEA706E9002FD754BC5A47CA01907BA69841 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113515.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113515.html + HP Z4G4 Windows 10 x64 Driver Pack + false - sp174327 - HP EliteBook X G1i NB Windows 11 Driver Pack - 4.00 A 1 + sp110349 + HP ProDesk 405 G4 SFF Windows 10 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 8/12/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174327.exe - 1228324696 - 5BC4910829EDA5E66085F0928DAF5E0A - 2085D3A72266BA016BA86850AB48F43C0DDA1017DA5EFD24A14CF41BA4280248 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174327.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174327.html - HP EliteBook X G1i NB Windows 11 Driver Pack - true + 10/5/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110349.exe + 1021390624 + b92ccd53efbdb529351b418811e6a772 + A51D32008312CDC18AFBAD134C72D9DE63782D209894F4F794D53F9328E58313 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110349.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110349.html + HP ProDesk 405 G4 SFF Windows 10 Driver Pack + false - sp114239 - HP Probook 6x5 G4 Windows 10 x64 Driver Pack - 10.00 A 1 + sp101289 + HP RP9 G1 Win10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/22/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114239.exe - 1193956376 - 8d86c2180cfc39029ed7ec1b936ee639 - CFAA7022AA7389E5D9A804E08ECA877F787EE638F71CD7425A4DEBF00DE53446 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114239.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114239.html - HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 1/14/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101289.exe + 523995048 + 55d8d43331c6b2351b004ab3b58f3a5a + 661449449EC73184D6459F3A10E00419EE4F41932F0949B5B2195AF00843EC02 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101289.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101289.html + HP RP9 G1 Win10 x64 Driver Pack false - sp145107 - HP ZBook Fury 16 G9 MWS Windows 10 x64 Driver Pack - 2.00 A 1 + sp153074 + HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 3/16/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145107.exe - 2667499160 - 70974441c52f710a7552722c41fa6885 - 176346BE4C44E99F962540AFB744F89F6E546741128A7440CDB3FF2B0C05C841 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145107.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145107.html - HP ZBook Fury 16 G9 MWS Windows 10 x64 Driver Pack + 5/27/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153074.exe + 1041220968 + 964434daf06f6660369e4cc4a6407d03 + DDE77851FDE57761F72418A3FC309127317073151C134E5841962B1C5A3EF309 + https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153074.cva + https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153074.html + HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack true - sp111365 - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack - 8.00 A 1 + sp114220 + HP EliteDesk 705 G5 Windows 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 12/1/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111365.exe - 1352863552 - 657639fae78dcea296b4cc77d4f723bc - A164814D9047BBC3B1B7F1A8F7B9B7BE71242DE0F8A9B9AE1A2A0915A501A402 - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111365.cva - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111365.html - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack + 6/17/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114220.exe + 948192024 + 4ca290b99b969696161be89619ca5a64 + 12327919BAA7F0170CF17AA9EA73983B863D9808C669BA1C1A711ECD5530C844 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114220.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114220.html + HP EliteDesk 705 G5 Windows 10 x64 Driver Pack false - sp140810 - HP ProBook x360 11 G6 Windows 11 Driver Pack - 1.00 A 1 + sp99814 + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 18.0 A 1 Manageability - Driver Pack - 6/24/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140810.exe - 676665144 - 277fcf863d02cbdfc8827b3608e47018 - C0DA16F2151C89E1902FDE5DC474069E2230469CA56CF94D1C8AFC803FDD68CD - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140810.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140810.html - HP ProBook x360 11 G6 Windows 11 Driver Pack + 10/25/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99814.exe + 961073272 + a14372c2394f3f6e8c28c54e8e7c1e5c + 3B4B351CA9967DDF6181915815E915B7E0A992A678CFAECA56425B79F02B57E5 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99814.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99814.html + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack false - sp103623 - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack - 7.00 A 1 + sp114045 + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103623.exe - 793097208 - c12464bf48b6116de30bca70577faf72 - 645956698F8AF586877FC894F243133EF05CECC923BF973267D996B43AB148E1 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103623.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103623.html - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack - false - - - sp101914 - HP EliteBook x360 1040 G6 Windows 10 Driver Pack - 5.00 A 1 - Manageability - Driver Pack - 3/16/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101914.exe - 832819512 - 2353390a1ae1be1b1f69cb2eec9e23e9 - 3C82581B0287E72B416DF3A1C859D3FFCA7A3A42C56431C9B8B5C1D7E03AEF18 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101914.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101914.html - HP EliteBook x360 1040 G6 Windows 10 Driver Pack + 5/28/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114045.exe + 1334838632 + bbf25a9e43a902f37cd9e92b4bfb54f4 + 538C31EFFE888581DCF307228503F5588907EB6F2E045E64A2DC423601FB4417 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114045.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114045.html + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack false - sp114188 - HP EliteBook x360 1030 G3 Win 10 x64 Driver Pack - 13.00 A 1 + sp105671 + HP Elite Slice G2 Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 6/14/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114188.exe - 1599070328 - 8b88d8a0d8788e426d9bb57f01b24096 - 897BAFBCB651B2311F26A3366EC9798684CF5FA758CF62A087C1B78C8EB9E595 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114188.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114188.html - HP EliteBook x360 1030 G3 Win 10 x64 Driver Pack + 6/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105671.exe + 489995328 + 6189d7668303353c0cdc3848e91a64d4 + FDFA24267B10838234E625CF4618AC36954B356D6A90F82FA38442E74C7031A9 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105671.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105671.html + HP Elite Slice G2 Windows 10 x64 Driver Pack false - sp115294 - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack - 14.00 A 1 + sp147782 + HP Z4G4 Windows 11 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/29/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115294.exe - 1120535560 - fa0df33f370a354208be2696f6b23cb0 - E75F438BBB8F02E1CA2DB83A5F08EC8E9E701F58EF1E85E3DDC532F801AC6F86 - https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115294.cva - https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115294.html - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + 6/12/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147782.exe + 1486910480 + 95171bd51cc7422c9cc03d765a62333a + 041AE54A0532D74A9B69F282AEE71CCD1AA4CCBD293EFDED45C1705962EDF5B6 + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147782.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147782.html + HP Z4G4 Windows 11 x64 Driver Pack false - sp144918 - HP Engage Go 13.5 inch Mobile System Win10 x64 Driver Pack - 2.00 A 1 + sp88653 + HP Z2 Mini G3 Windows 10 x64 Driver Pack + 7.2018 K 1 Manageability - Driver Pack - 2/16/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144918.exe - 986054576 - 566c303e075712e8ecfac50853e8fdd5 - 09663C938D58BF3835136A1BDA2C2BB85CDD71778764B4EA5E0F55E1ED5594C2 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144918.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144918.html - HP Engage Go 13.5 inch Mobile System Win10 x64 Driver Pack - true + 7/10/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88653.exe + 849315320 + 214f88389c5cbaf792ca4fec1a1ef422 + AF8D3566DC971D5878D613E5F467F4B4A374102DED7C0E8AC5EB2AC3F2AFB63A + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88653.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88653.html + HP Z2 Mini G3 Windows 10 x64 Driver Pack + false - sp90256 - HP Elite Slice Windows 10 x64 Driver Pack - 12.0 A 1 + sp101496 + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 8/2/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90256.exe - 423286792 - de30a617914332bd1e4cf45c1031f57d - DCD4641E3B500F15B85C4EDBD5CCDDF00588EE02B832A82588CC4BAF1FB3BB98 - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90256.cva - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90256.html - HP Elite Slice Windows 10 x64 Driver Pack + 1/31/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101496.exe + 819178504 + ae638cd630e179ebcf04d0874122a164 + 9D97A53A29FB150EDCDC5762CB8D19A543D34395608736EE01093C475A31FA84 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101496.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101496.html + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack false - sp158930 - HP Z6 G5 A Windows 11 - 7.00 A 1 + sp112432 + HP Engage Go G1 Win10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 5/20/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158930.exe - 3392323704 - 5DCD39E35F1E576D69E096A115AA2087 - A43F9F01DC261394B2F3CC9F7FCB3A35784D1171C3072E490767D70E430B795A - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158930.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158930.html - HP Z6 G5 A Windows 11 + 1/29/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112432.exe + 1023454232 + a05f332dc156943eadb845167bd70403 + FDC8F6BB6A7A5C3EB76DEB95B821C6719618C52FA0B4A767AB85957E527C8F92 + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112432.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112432.html + HP Engage Go G1 Win10 x64 Driver Pack false - sp173547 - HP Pro4 AOI G1i AI PC Windows 11 Driver Pack - 6.00 A 1 + sp168419 + HP Engage Flex Pro G2 Windows 11 IoT Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/10/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173547.exe - 3039754952 - 75A056A2C916D33ADBC4B8D14A11BD2D - 474C4130774B20393806E5EA2E4BFCFB392AF89834D82AB31D11712C9C4F33F6 - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173547.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173547.html - HP Pro4 AOI G1i AI PC Windows 11 Driver Pack + 12/16/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168419.exe + 2490588560 + E82FB5C0D4429E616B530409F470A734 + CC0716CE465219810514BC5589F21A574035308BD3FF50AD66977E74868AEA2D + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168419.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168419.html + HP Engage Flex Pro G2 Windows 11 IoT Driver Pack true - sp143099 - HP EliteOne 800 G6 AiO Win 11 Driver Pack + sp97069 + HP MP9 G4 Win10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 11/7/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143099.exe - 820741584 - 97caeb95b2fef8f45a68b406fd43e508 - 114567DF4A0CB68A477B4C156A400D71C445CCB2C18830C6750D48BCB17B42E6 - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143099.cva - https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143099.html - HP EliteOne 800 G6 AiO Win 11 Driver Pack + 6/14/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97069.exe + 774963712 + 3e0a16208de1c99b235bdd714a270492 + CB3AD8CC01E4A7A540C5AA1248BBC4A73762CB595E0787C369E3C0841E3C39AF + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97069.cva + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97069.html + HP MP9 G4 Win10 x64 Driver Pack false - sp173495 - HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack - 11.00 A 1 + sp158202 + HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/5/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173495.exe - 1300961200 - 2A373361861BDDF6C30A25C06A62FB81 - 9B84ACF644C44E49B327481EA76725510CD9B15D7843D6F4D55F6C13ED99CB42 - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173495.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173495.html - HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack + 11/26/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158202.exe + 2173984456 + B167126113B86ACF2AA68C18E74C05A4 + EE5B8D4919B889BD7118F70F34DF1D49CD0DA9019B879DE0A00ECA14E3209535 + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158202.cva + https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158202.html + HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack + false + + + sp147159 + HP EB/ZB/x360 8x0/1040/FF G10 Windows 10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 5/24/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147159.exe + 1809359408 + 7994dd38a25c5afdad805d088b374f96 + 2090C9CBFFFFE10BA73189DA485A8060D9BB492D03C59D79099D89E667E896D8 + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147159.cva + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147159.html + HP EB/ZB/x360 8x0/1040/FF G10 Windows 10 x64 Driver Pack true - sp96860 - HP Z4G4 Windows 10 x64 Driver Pack - 4.2019 G 2 + sp144919 + HP Engage Go 13.5 inch Mobile System IoT10 2021 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 6/4/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96860.exe - 698936808 - b3040ff6d62d7ac3986f453c8b25ddf5 - EA4A9551B1BD732FD7B8B83877EC382E55DAE82950BE5A75B0AB6B30D62B647D - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96860.cva - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96860.html - HP Z4G4 Windows 10 x64 Driver Pack + 2/16/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144919.exe + 927566696 + d247c75756a49bca2513b6965c5687be + C459FCAF821C62B5803C245D39CCD3E6BF53E3C528B30451F39C23A8F9218C49 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144919.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144919.html + HP Engage Go 13.5 inch Mobile System IoT10 2021 Driver Pack false - sp101468 - HP Elite Slice Windows 10 x64 Driver Pack - 18.0 A 1 + sp103617 + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 1/28/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101468.exe - 468612200 - 2f090051f8291d46858f7390f19a0e7e - 4B0BAA48503211D649E973AC1189D4EA2E1058022739CA4AFC0DB43CD5E1B251 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101468.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101468.html - HP Elite Slice Windows 10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103617.exe + 799062248 + 679e310b408a495306674ad48a1f1a94 + AEDEF116AFC5CCA1220602D338A36FB8474D6B45A539D42EF5F084B9144BCD14 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103617.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103617.html + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack false - sp151808 - HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack - 6.00 A 1 + sp102099 + HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 3/25/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151808.exe - 1803198400 - 972f74b2586ed51ed6a7cdb65806f864 - 754E7F937479BD0D52F10F37042FBBD4C3F33FE5067A271CFBCFACCF54F71B2D - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151808.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151808.html - HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack - true + 3/24/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102099.exe + 879458096 + 5457e310c6cd9316013bf80ddd25417f + A32168314CBAD9FB8DE88AE0F9BB77FC9FA7ABDB41FD610C0E7B6E224E6753C4 + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102099.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102099.html + HP EliteBook 840r G4 Windows 10 x64 Driver Pack + false - sp90191 - HP EliteDesk 705 G3 Win10 x64 Driver Pack - 13.0 A 1 + sp114062 + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 7/25/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90191.exe - 663952432 - 39582bfc408d68d17cfe4c6f7ede0b58 - D9BF39B801C9BA8588017F7A92541F443F586136765EAE5E055336CEBBA5C13C - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90191.cva - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90191.html - HP EliteDesk 705 G3 Win10 x64 Driver Pack + 5/31/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114062.exe + 1371475104 + c0ce6bc542a8a2c926f4312554d0fade + D4D9B229DB17C2552AB0287B8A90413B05FE2073DAA13A0F3D4EBF5CE1FFE2FA + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114062.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114062.html + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack false - sp114259 - HP ProDesk 405 G4 SFF Win 10 Driver Pack - 6.00 A 1 + sp93254 + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/24/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114259.exe - 1112690824 - 2a2cc4abcb146dda2ad93d5a3a3d57f5 - 7AC44A76A0F3A7400D3EE0E9B5DA87EA0AA5AF7A1CF5A78B4AD00B194F5814C9 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114259.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114259.html - HP ProDesk 405 G4 SFF Win 10 Driver Pack + 1/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93254.exe + 544581088 + b8ede917f55ce515cee4a566668d6106 + 3E1BA22B123C244FA16855246F264C15CA4D1911D706EB9CB36EDA2ED5769F8A + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93254.cva + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93254.html + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack false - sp86888 - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack - 2.00 A 1 + sp110180 + HP EliteBook x360 1040 G6 Windows 10 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 7/31/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp86501-87000/sp86888.exe - 753219208 - 65fde438dc21b5f8f81de262410db968 - FE4425EA4EA62A28B5939D4F658C23D58BF9BDE0359F7DD6B9DE86424D4DD3BF - https://ftp.hp.com/pub/softpaq/sp86501-87000/sp86888.cva - https://ftp.hp.com/pub/softpaq/sp86501-87000/sp86888.html - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 9/21/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110180.exe + 968659664 + 208a9b2f45d0f302b16f767780d37fa6 + 67497E537D2473CD7F9E28274FA9C85D324F35438570CF6251B5509C370EAA98 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110180.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110180.html + HP EliteBook x360 1040 G6 Windows 10 Driver Pack false - sp142804 - HP EliteBook 8x5 G7 Windows 11 Driver Pack + sp92272 + HP RP9 G1 Win10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 10/6/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142804.exe - 685557256 - 533dc63cf36d3e19f3e56ba2e62c4e25 - E3AFE21084A6C58401E096359ADA6C06A9D9D625E5DEC58235DB02B348DFE70E - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142804.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142804.html - HP EliteBook 8x5 G7 Windows 11 Driver Pack + 10/22/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92272.exe + 479951248 + 9e73c039c6b1ec9ac4445c7933acefb4 + 4FE477607A3FB55A0CA691F3F8483265D6B4F468F0CE080EFCD09C79B0A9326C + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92272.cva + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92272.html + HP RP9 G1 Win10 x64 Driver Pack false - sp151266 - HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack - 6.00 A 1 + sp108840 + HP Z2G4 Windows 10 x64 Driver Pack + 3.00 A 2 Manageability - Driver Pack - 2/13/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151266.exe - 1578922200 - 486e8ff49b97faae32eda2b5dd978b31 - DC5D493D2DEF39A78E5D7F91943F7A4D57756E2C006E08563FFC7D72A7223E09 - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151266.cva - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151266.html - HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack - true + 8/31/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108840.exe + 1374088344 + a8678cfcff4ec3ce48eb0bcc8a439a4c + B1FF45F812B1ACE143CFF464F7B033B6042DD489681798FD7B1CE9F08572CE1F + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108840.cva + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108840.html + HP Z2G4 Windows 10 x64 Driver Pack + false - sp102074 - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack - 6.00 A 1 + sp168949 + HP ZBook Studio G11 MWS Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 3/20/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102074.exe - 794676896 - 38b396f3ef8c9c988fc0841a53bc0428 - A43899A3023067DB049E63D2C3BA6CBE88919E4F478A6D268DACE9496A529149 - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102074.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102074.html - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack - false + 1/13/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168949.exe + 2567603704 + 4AE833641CB8860ADB9AAB5BCCF6654B + D634A2C324B84C5C8448431E40808B9443458990F1F5A640A0A9B5D18C502903 + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168949.cva + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168949.html + HP ZBook Studio G11 MWS Windows 11 Driver Pack + true - sp145710 - HP EliteOne 8x0 27 G9 AIO Windows 10 x64 Driver Pack - 4.00 A 1 + sp135910 + HP Z2G5 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 4/26/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145710.exe - 1473673504 - 0f6d6630ca01bdd76b9a77e0165f45f1 - 0A030B4EF670BED94BF520C848684AC7EBB07994C461B7A238CD1CCA3994B81B - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145710.cva - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145710.html - HP EliteOne 8x0 27 G9 AIO Windows 10 x64 Driver Pack - true + 10/15/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135910.exe + 1499518472 + 2225fefc94e3dd69e7531d4513737728 + CFDC1182F8138F18771251F0A7B4D8AED30527F937A1611C03098AFF7F5CEB3B + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135910.cva + https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135910.html + HP Z2G5 Windows 10 x64 Driver Pack + false - sp84654 - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack - 1.00 A 1 + sp101080 + HP Folio 1040 G3 Windows 10 x64 Driver Pack + 16.0 A 1 Manageability - Driver Pack - 1/10/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84654.exe - 698137688 - 3233aec6a4edbcddfdc5a87cbb60b432 - D26B91429FB1C7A80B4C917BFC3FD6DB99B77BEAB769841DC59026E0992FA5C2 - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84654.cva - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84654.html - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 12/30/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101080.exe + 512101680 + 5d40e0ff97a88ad562c900c4a7ee85e6 + 3D93BD654713CBA820A73E0EFAC9EF68104C01129A1BD2E477B702821B1C6463 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101080.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101080.html + HP Folio 1040 G3 Windows 10 x64 Driver Pack false - sp93458 - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack - 1.00 A 1 + sp95314 + HP Folio 1040 G3 Windows 10 x64 Driver Pack + 14.0 A 1 Manageability - Driver Pack - 3/1/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93458.exe - 596794608 - 2f0943ae99b68b09cd12c16d40358d0c - 19256ED13FF97AD5A5302913E6D1C1F1B4884EA285EA48ACB1B9BCCC07E0DB36 - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93458.cva - https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93458.html - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 3/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95314.exe + 590992608 + a5cfcac810f39cff133afe30e7b87d6b + 76DD3BFD35D43575858D2474029B3F2E56D1848CC5011FF01760E8B3F78A6330 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95314.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95314.html + HP Folio 1040 G3 Windows 10 x64 Driver Pack false - sp138480 - HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack - 3.00 A 1 + sp144948 + HP Engage Go 10 Mobile System IoT10 2019 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/21/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138480.exe - 1172344968 - 34c76021151d4ecf4373288ca6779730 - F2516EABFFA4CAAA0AB18B99CB7109D9A2C7968A0C8410D88A967F903A0B8D32 - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138480.cva - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138480.html - HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack + 2/17/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144948.exe + 606096616 + 85cd81ec8dbd229d1d05ad5b2a3d0407 + D3708D370C1DEC77D3F7CFB4F8CA7009717FDF9DE5F3607BCEFC06C82750F9F9 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144948.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144948.html + HP Engage Go 10 Mobile System IoT10 2019 Driver Pack false - sp174402 - HP Engage One G2 AiO System Windows 11 IoT 24H2 Driver Pack - 2.00 A 1 + sp79057 + HP ZBook x2 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 8/18/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174402.exe - 1051379344 - 88DA5CD6FE3D64FBDEC06A0DCF1ADFCC - 5DEC02D395F37B53E2F5D53D879C65FDA3BC081E9B29963F88B99DB78A770687 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174402.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174402.html - HP Engage One G2 AiO System Windows 11 IoT 24H2 Driver Pack - true - - - sp99542 - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 10/9/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99542.exe - 751569776 - 8444FF03352A5BF67313A87D0475EE93 - 0512FA4DB4F3C493297F59F61F5907B19F2C2F56735986475F9A801341D3A43F - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99542.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99542.html - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + 11/27/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79057.exe + 987922272 + f75337b31c8a660e5220b59b6e3495e9 + ACEBAC2DB99ECDB46396E8A70063185A2522E346BE2F9EF844033C9B4AFD8F37 + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79057.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79057.html + HP ZBook x2 Windows 10 x64 Driver Pack false - sp88881 - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - 2.00 A 1 + sp109005 + HP EliteOne 800 G6 AiO Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 7/6/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88881.exe - 724641272 - 00a3f300debb05aa98685c19d47ff117 - 1382ADB3801171458FE602345C1803289C4053C290F9F656A4152C70620E4912 - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88881.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88881.html - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 9/9/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109005.exe + 1453587648 + 9943bb1ecfd77becd41e25a0edbe6385 + 8E77D36F746276C09EC289966FF4562B2E651AEB9AB22A33B941CA85BA21C7D6 + https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109005.cva + https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109005.html + HP EliteOne 800 G6 AiO Windows 10 x64 Driver Pack false - sp100850 - HP ElitePro 600/800 G2 AiO Windows 10 x64 Driver Pack - 14.0 A 1 + sp95338 + HP Z6/Z8 Windows 10 x64 Driver Pack + 4.2019 H 1 Manageability - Driver Pack - 12/19/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100850.exe - 580069008 - c5437f21ea20cab0e4b8de9f8bb3ef65 - 49B400D2A32131B3F77D586B2F91B8031F706BD7390B6B033B893917B4066053 - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100850.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100850.html - HP ElitePro 600/800 G2 AiO Windows 10 x64 Driver Pack + 4/10/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95338.exe + 699438296 + 1e2cb670af29571751d69f837969a413 + EFE7EEDA2629F1792DAA00450D279A91E00430BC62C68B5ADFB624921043B4D5 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95338.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95338.html + HP Z6/Z8 Windows 10 x64 Driver Pack false - sp79214 - HP EliteBook 7x5 G2 Windows 10 x64 Driver Pack - 5.00 A 1 + sp88986 + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 2/24/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79214.exe - 425155176 - 43cc60329abaaec5fd62b9d6806d94ef - A524576E8129F191042E87CC337B6FC1E1825A079E3E46F011600CC772DF6421 - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79214.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79214.html - HP EliteBook 7x5 G2 Windows 10 x64 Driver Pack + 7/20/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88986.exe + 612931656 + 6aecc113dc9b34fcea39f0f46bfd0d46 + 75923BF65AEDCCFB74A77C013D69CF3CE8A83235BE3055E88A01D2756AD7BB80 + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88986.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88986.html + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack false - sp100529 - HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack - 2.00 A 1 + sp91840 + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 12/5/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100529.exe - 816693544 - a3c50b60291730e00c3e5438b7d9eef1 - F7DA5C5A2CA856BED4B81AAB83602FEF9B33004E921C41274D51022327CCED34 - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100529.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100529.html - HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack + 11/1/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91840.exe + 803440328 + 44419c4c513a2444be6c9d35e475e083 + 877D8E75B0BD83EF4E8F64C2FFDC9EF7121D6C4658134B17E51F6DDA15CB70D8 + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91840.cva + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91840.html + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack false - sp160036 - HP ProBook x360 Fortis G9 Windows 11 Driver Pack - 6.00 A 1 + sp93501 + HP ZBook 15v G5 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 6/2/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160036.exe - 937327600 - E9820CCEEFCD19DEA32B808EA096CB5F - 98C4A6E4EF3152321161574960A35D0A37994329A7C9E8AD5F71C1D0CFAF5CC8 - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160036.cva - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160036.html - HP ProBook x360 Fortis G9 Windows 11 Driver Pack + 1/10/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93501.exe + 945372984 + 1188da4dcfe172dcd516e12100052ba2 + D5AEB548A73DC0E233DCC68C9A5811985EF00A13DCFD75CA76461926F3A55B94 + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93501.cva + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93501.html + HP ZBook 15v G5 Windows 10 x64 Driver Pack false - sp101209 - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + sp168372 + HP Engage Flex Mini G2 Windows 11 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 1/6/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101209.exe - 420851608 - 4118a69f9d80d994dabd57de80825780 - 5C71091C06364EDA6FF7292ACD4827ECB05B3FC9D6B30FDCDCD4E873A3AE4B3B - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101209.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101209.html - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack - false + 12/15/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168372.exe + 1331878384 + 52C879481617640C1296D66DB509BE4D + 4DCDB4A558151AF364270291F621BEB1AB55DAD8CC646CB9C28FA3B342B5DF24 + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168372.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168372.html + HP Engage Flex Mini G2 Windows 11 x64 Driver Pack + true - sp114225 - HP EliteBook x360 830 G5 Windows 10 Driver Pack - 6.00 A 1 + sp150284 + HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/18/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114225.exe - 1264780176 - 318b8b998e23fe4bddd3ef2bb7813d30 - 1F77BCED74EC03536D4CED7E8938D8979D19A03B28E9EDCD4E37D16EFD0DA52D - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114225.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114225.html - HP EliteBook x360 830 G5 Windows 10 Driver Pack - false + 11/30/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150284.exe + 1010952464 + f780baec3e403c50368e65aab899bade + 7B58A53739B5F1B82DE1310F2F0892EC9EA115AEC0549FED641A2364C1BEE5FF + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150284.cva + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150284.html + HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack + true - sp142940 - HP Engage One Pro AIO Win10 x64 Driver Pack - 4.00 A 1 + sp99401 + HP Z240 Windows 10 x64 Driver Pack + 2.2019 N 3 Manageability - Driver Pack - 9/30/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142940.exe - 691109648 - d47723e8d0416b448aed39497736eda5 - E0372C55672327D13C3C7834B86F28319DCC24BABA1E4A309A751A2659066668 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142940.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142940.html - HP Engage One Pro AIO Win10 x64 Driver Pack + 9/26/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99401.exe + 824912944 + 3acee6fd73900c1c713e7524619ea776 + A1ECD3882018ADEEA239A10B50508A0DCD480B7762A0C4C722801CEE5FF3BC97 + https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99401.cva + https://ftp.hp.com/pub/softpaq/sp99001-99500/sp99401.html + HP Z240 Windows 10 x64 Driver Pack false - sp100497 - HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack - 10.0 A 1 + sp142910 + HP Elite Dragonfly G2 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/4/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100497.exe - 843131728 - 1dfd07f0e7c77e4ae7b9914296e2d564 - 1E556C10463C23805B37488D7D15B7529A408E73471AC49E8952919C7B541538 - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100497.cva - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100497.html - HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack + 10/6/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142910.exe + 1291829184 + a822888dc9d0f30f1d532766a32390c8 + 64442DB15391BFFB05C2E90CE34FA7EECBD706A9ABC5FF1D69D5D98165AFF296 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142910.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142910.html + HP Elite Dragonfly G2 Windows 11 Driver Pack false - sp97057 - HP Elite Dragonfly Windows 10 x64 Driver Pack + sp152820 + HP ZBook/EliteBook 8x5 G11/A Windows 10 Driver Pack 1.00 A 1 Manageability - Driver Pack - 6/13/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97057.exe - 778516464 - 00cb0554440cba4e01dda3d51a1de94f - 4EA4139871D383C17B1ABC12CBB630ED168FD8752233B999181B641CB4AB6558 - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97057.cva - https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97057.html - HP Elite Dragonfly Windows 10 x64 Driver Pack - false + 5/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152820.exe + 1110797232 + a4277ca2b663aae649670ba822a48bb5 + C090837A4CB740BC38019005E9A58B41D052469BC6F757D942A25F156DEBDC43 + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152820.cva + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152820.html + HP ZBook/EliteBook 8x5 G11/A Windows 10 Driver Pack + true - sp139593 - HP Z2G5 Windows 11 x64 Driver Pack - 2.00 A 1 + sp100045 + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 4/15/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139593.exe - 1482251416 - dd3bd1c3382c6892847c6bb4491077fb - 609EDB7ECF2ED35BABE0B454863FBB1A8D62B55FC35AB99E0F13FFE66B146773 - https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139593.cva - https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139593.html - HP Z2G5 Windows 11 x64 Driver Pack + 11/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100045.exe + 917714784 + d00fa2991d7a3f6ce975f2efa94c9bf1 + 8F17D64C88D1DD43F3B02677A2EB48BC3BD305FC2FB02D0B324DD08224294A08 + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100045.cva + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100045.html + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack false - sp99623 - HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack - 2.00 A 1 + sp168972 + HP EB/ZB 8 G1a/ak AI NB/MWS Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 10/17/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99623.exe - 830748224 - caf952f16ff2264132facff1524b72a9 - 169C110F2C7D886D669E2B674A597434B73D865E0B8DCF7EC38D764193464ADF - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99623.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99623.html - HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack - false + 1/14/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168972.exe + 1105828520 + 9D26FA58816A1188367ADB8D73251328 + 0872662ED208835CE41BDF295AC02B852F1627B7488510DAD08221A2BBAC7941 + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168972.cva + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168972.html + HP EB/ZB 8 G1a/ak AI NB/MWS Windows 11 Driver Pack + true - sp173508 - HP Pro/Elite Mini 4/6/800 G9 Windows 11 Driver Pack - 11.00 A 1 + sp148713 + HP Engage Flex Pro G1 Win11 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 6/22/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173508.exe - 1249797176 - 91A0214A287E07915719D67A43CC482D - 97C7F622DF28276095EA455AACA124C6EF5671993BF32375C94603648D90CE1D - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173508.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173508.html - HP Pro/Elite Mini 4/6/800 G9 Windows 11 Driver Pack + 8/8/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp148501-149000/sp148713.exe + 1163946824 + 1a21a374cdbecb0ec683885d7df767d1 + 5E234950C8A313D5F19135D57BD754EB8CF62307F82A38D74AF2F3CAF852B60E + https://ftp.hp.com/pub/softpaq/sp148501-149000/sp148713.cva + https://ftp.hp.com/pub/softpaq/sp148501-149000/sp148713.html + HP Engage Flex Pro G1 Win11 x64 Driver Pack true - sp89032 - HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack + sp99584 + HP RP9 G1 IoT10 2019 Driver Pack 2.00 A 1 Manageability - Driver Pack - 7/17/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89032.exe - 606082768 - dafdd80b8072ac3e7b4cbe88708aba90 - 74F0276EC58B0943A3AC192B61DA90B73C1A146D7A81985611F2C0C664306388 - https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89032.cva - https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89032.html - HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack - false - - - sp102088 - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack - 10.0 A 1 - Manageability - Driver Pack - 3/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102088.exe - 712510408 - fcfed2f5e9fddf1be030e8ae57ada7c9 - 03DCCF436C08B4033338DE73DF1D857BE44F21761E67CF15AA2DA6F54C3C81E6 - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102088.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102088.html - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack + 10/23/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99584.exe + 544839200 + 9cfdf4c12f8b12a71453ef23fea401d7 + 8017508469EE9C3B727F820C440B4FF7D8805E46A54EABFC43C4A62565C416A5 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99584.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99584.html + HP RP9 G1 IoT10 2019 Driver Pack false - sp154019 - HP Z2G9 Windows 11 x64 Driver Pack + sp99864 + HP Elite Slice G2 Windows 10 x64 Driver Pack 9.00 A 1 Manageability - Driver Pack - 8/5/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154019.exe - 3465271000 - 8C0779502CCD56E90325EB57726117B7 - AE1A58871B287DF7623A90CA8C3C355745443FAE567187C04F81E0E3BCC5F943 - https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154019.cva - https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154019.html - HP Z2G9 Windows 11 x64 Driver Pack + 10/28/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99864.exe + 512118576 + 4A73FAA3CACE6E4126BD4A4E288E6834 + 39F4D9BDC693E75CC98BEE75823EE18FB2E006FABB65D13E0D13A73978843833 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99864.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99864.html + HP Elite Slice G2 Windows 10 x64 Driver Pack false - sp100225 + sp91405 HP ZBook x2 Windows 10 x64 Driver Pack - 10.0 A 1 + 4.00 A 1 Manageability - Driver Pack - 11/23/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100225.exe - 674157264 - 878b8920506b9f730ecbb0d5043df1b9 - 0131772000B50E8BD42CDD5696FC7A2A282B6C04DF41EB091A1E9021A1C3EAC8 - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100225.cva - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100225.html + 8/7/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91405.exe + 1016387224 + 474262205c25c6a50d5d245f42c62a77 + BE0C83CD57E77D419EA2C2EEE6FC4B638C5F1505CA5BFA8EF99C263C97401217 + https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91405.cva + https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91405.html HP ZBook x2 Windows 10 x64 Driver Pack false - sp158075 - HP Pro x360 Fortis 11 G10 Windows 11 Driver Pack - 4.00 A 1 + sp103620 + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 4/25/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158075.exe - 1264115040 - 12E0F8BC460B216146899DB9378F985D - 1ABEA9DE6685B6E58A4065DBC5715058FC860F289F73233E48400BD87F8D0A70 - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158075.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158075.html - HP Pro x360 Fortis 11 G10 Windows 11 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103620.exe + 834431352 + 4387d1574719dd1d1208c541b9bd4b44 + 430B381D162EE15F05B3056DB395F498DD803BAB828DD8F38E2D1DDB0CCB9C5C + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103620.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103620.html + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack false - sp149134 - HP Elite x2 G8 Tablet Windows 11 Driver Pack - 4.00 A 1 + sp151314 + HP Engage Flex Pro G2 Win11 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 9/13/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149134.exe - 1081527392 - bb4747ebe3a27ecc6c52c5e70514ad90 - 36A268E638D45BC7A0C357330D23D94D492FB055AD0DCDD83D92C2C9F073D0DE - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149134.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149134.html - HP Elite x2 G8 Tablet Windows 11 Driver Pack + 2/5/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151314.exe + 1619375560 + 6cd071f1478fdc646eb2519ff5a45939 + 6DE42741E2F6703C570E7B20D00E4A3A2E23411E5D5DCD0934EAD5E78818300B + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151314.cva + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151314.html + HP Engage Flex Pro G2 Win11 x64 Driver Pack true - sp95457 - HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack - 6.00 A 1 + sp110211 + HP Z6/Z8 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95457.exe - 780404384 - e4854b947b8c1af474ddc4b5aa485288 - FF1ACFE395016AB8E9FAAAB95CBB0C9BB8171A718EC5F171E128B6C215E99514 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95457.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95457.html - HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack + 9/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110211.exe + 994756712 + 094cc982c0d7d7db9fefcfe49a70a434 + ADE5A9CA98DEA30D015FEC4FB0F1C27D6DC075596925D1945677394D6248DEDE + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110211.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110211.html + HP Z6/Z8 Windows 10 x64 Driver Pack false - sp99723 - HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack - 9.00 A 1 + sp138465 + HP Engage Flex Mini Win10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 10/21/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99723.exe - 816261432 - 57cca03f4faf25b7afcad951e8d332e5 - 7C5D2F26E57E6485C37A8E8CE3C967276FEE6CBDF062031D87ABE6DB161B7972 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99723.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99723.html - HP ProDesk 4x0 G5 SFF/MT Windows 10 x64 Driver Pack + 2/18/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138465.exe + 1440739992 + 94510162af7be989394a7efabd05acfb + 686F0D4E7FC0373F4963D6A9513EA250F7FA62AFF71A138C2AC6E7D9D5AA6EAB + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138465.cva + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138465.html + HP Engage Flex Mini Win10 x64 Driver Pack false - sp151268 - HP ProOne 440 23.8 G9 AIO Win 11 Driver Pack - 7.00 A 1 + sp140725 + HP Probook 6x0 G7 Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 2/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151268.exe - 1493086680 - e66290234a3acc517b1ccc831ad18a0c - 7A6AABBEF5697E20FC8F765E12C14FEC1B28215CFE5EB44BDA65238CD0595848 - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151268.cva - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151268.html - HP ProOne 440 23.8 G9 AIO Win 11 Driver Pack - true + 6/17/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140725.exe + 1220001096 + d007d400d2980eaac36bde0a8215a52b + A81DEC0B8D2E36FAC12C1124756FFCF3BFA0A5B00678C629B76D2E9D27E44630 + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140725.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140725.html + HP Probook 6x0 G7 Windows 11 Driver Pack + false - sp110783 - HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack - 3.00 A 1 + sp110765 + HP EliteBook x360 830 G6 Windows 10 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 10/29/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110783.exe - 1021829216 - 3f9bfdea0b8faf7d0bf99cc6787197ea - 196D434378446EDF9846C9093C4E1255CA7687532F69D354CDDA27BB364C4479 - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110783.cva - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110783.html - HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack + 10/28/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110765.exe + 997641944 + 1714a363f65b6f36d861074409e1e63a + E5DF6F2EA6219C8077A1661EFC0D157E1709E284A38F0F977EE79EFB0B0026F5 + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110765.cva + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110765.html + HP EliteBook x360 830 G6 Windows 10 Driver Pack false - sp150831 - HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack - 5.00 A 1 + sp151654 + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Win 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 1/11/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150831.exe - 911332968 - c94752a75312694c7aa79dc1c2a2bad0 - 99483D4A9EB4CB709944B3B49618BC2F417CDEA408B4650B5A01C329E4868510 - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150831.cva - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150831.html - HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack + 3/12/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151654.exe + 3055277696 + 96a21c4aa6f99fe838a14d4bd6549773 + A5EB49BFD38D36243E9B978546E88625AD1D22E752680B2DE835C4A854D96AA8 + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151654.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151654.html + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Win 11 Driver Pack true - sp172864 - HP Scuderia Ferrari NB Next Gen AI PC Windows 11 Driver Pack - 1.00 A 1 + sp88921 + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 5/20/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172864.exe - 1408004216 - B09C45AD0583960339CFAE7FE2B9A0C1 - 1311F048FD61E73CC383B04DD0E66CE103C0A3BE5B76CD89671A63A3B6EFD222 - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172864.cva - https://ftp.hp.com/pub/softpaq/sp172501-173000/sp172864.html - HP Scuderia Ferrari NB Next Gen AI PC Windows 11 Driver Pack - true + 7/16/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88921.exe + 1067495344 + 66f7abcc6339dda76e0e99bf2754841c + 5FD49C45687AB02B8E5B86CDC6DD1CDF2BEA99BC3357A757601E9E6EDA660478 + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88921.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88921.html + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + false - sp149065 - HP ZBook Fury G10 MWS Windows10 x64 Driver Pack - 2.00 A 1 + sp144687 + HP Engage One Pro AIO Win10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 9/4/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149065.exe - 1681959424 - 74ece9572789a0e34ceb52306adc3028 - 4216C73A2ECF734103B95198FE7BA22308E771222D2B9A546C82241D39832710 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149065.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149065.html - HP ZBook Fury G10 MWS Windows10 x64 Driver Pack + 1/20/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144687.exe + 711633264 + 93bfd54100eb0626db69a6552bc317cf + 84C1C776D2EE369889584EEC917DACB322F91D20CF34941A88CD605555EC50FC + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144687.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144687.html + HP Engage One Pro AIO Win10 x64 Driver Pack true - sp123514 - HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack - 3.00 A 1 + sp145706 + HP ProOne 440 23.8 G9 AIO Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 7/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123514.exe - 812811768 - 66c79b22329e3795c0c57037984fda43 - 34F1B96C534748BC91AA1568C215322979FF601CC7B4020327EE8A3F78F074CE - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123514.cva - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123514.html - HP EliteOne 800 G8 AIO Win 10 x64 Driver Pack - false + 6/15/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145706.exe + 1287486768 + 0085dd45b7e06cd65371e547d9f9bd4b + 5F72BDEF9ECC23F7F43D3A275B551578B3BE09CE95EA043F53C9CA63DD259ECE + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145706.cva + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145706.html + HP ProOne 440 23.8 G9 AIO Windows 10 x64 Driver Pack + true - sp147781 - HP Z4G4 Windows 10 x64 Driver Pack - 13.00 A 1 + sp95459 + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/12/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147781.exe - 1591369984 - b9e50e93f1d41eb41ccab8f72a4e92f0 - 755E19FB6DBF8FD2F78D36BC61D5F64AE80BF45464C76F9BA0201F35C6CF224E - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147781.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147781.html - HP Z4G4 Windows 10 x64 Driver Pack + 3/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95459.exe + 593979520 + a75c2aeadf5ad3d313515df990f6c279 + C4883B6BED20C4DD4DA7C6EFD5DE24176E24991BE2CC01B558830CD2681247E1 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95459.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95459.html + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack false - sp91837 - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack - 2.00 A 1 + sp155186 + HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 9/6/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91837.exe - 797301624 - cc62781684ee19522a8e27ba40365671 - F5B6BD4F4FE9D5C269E08D4625E2BD71492A0B6F04EF25FE57CA8312AE6CCCFA - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91837.cva - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91837.html - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack - false + 11/27/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155186.exe + 2065787272 + DAF5D3EC0A949B6B146E57EFDFCD72DE + 651F166A6330053095F6AA07C200063B828714958EA79CD1412447D120E9B065 + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155186.cva + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155186.html + HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + true - sp114157 - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack - 9.00 A 1 + sp101326 + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 6/8/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114157.exe - 1595852160 - 87b1ab44ebeb5f74869da0287723bf96 - 1839E8553A381936F2665558D33F47DB9EFC22EF46AF5E01D4940294573A3A75 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114157.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114157.html - HP ProDesk 680 G4 MT Win 10 x64 Driver Pack + 1/10/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101326.exe + 946233848 + 286b9226fc7ebc47d7d8bce9866239eb + 43F7DC8FE38BF4DB548509E637B85CFB7B1F3D3D933249FBC66EBB14B51D14C2 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101326.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101326.html + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack false - sp111578 - HP Engage One Pro AIO Win10 x64 Driver Pack - 1.00 A 1 + sp139592 + HP Z2G8 Windows 11 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/10/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111578.exe - 468544152 - 1f78693d332a00b0d99bfe4bd9717fc6 - 16FE3130489B622CF58ABD665FB83AAEF11580624975AFD9C28399FA8F9CBC62 - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111578.cva - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111578.html - HP Engage One Pro AIO Win10 x64 Driver Pack + 4/15/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139592.exe + 1732061872 + b7f5760af7ae4aad5b50e7798f94e135 + 9913C7C7237655F50F9025563CCCD0DD28AD65E6263BA5FE71B3240942E55656 + https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139592.cva + https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139592.html + HP Z2G8 Windows 11 x64 Driver Pack false - sp112656 - HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack - 7.00 A 1 + sp168855 + HP EliteBook 6 G1i AI Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/12/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112656.exe - 1394309288 - c3e063689f647aeb2282b83a25210ad0 - A03917092BB67ABD2FCE38D0488F889C6BAA7BDA3F8EA11E837B9743AD254E7A - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112656.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112656.html - HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack + 1/8/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168855.exe + 2557857016 + 0592F4D9C0298BAD6C6640790946D85C + A12B857368391EABF02846F432FD6F39381F2F2E275BAFA6CE4B930371663442 + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168855.cva + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168855.html + HP EliteBook 6 G1i AI Windows 11 Driver Pack false - sp158206 - HP ZBook Power G11 MWS Windows 11 Driver Pack - 5.00 A 1 + sp84802 + HP Z4G4 Windows 10 x64 Driver Pack + 2.2018 B 1 Manageability - Driver Pack - 5/5/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158206.exe - 2272805152 - A27DDD48D9704E4FF843539B043B2532 - 1AE84AABB43CC880E2CC3EAD5B7D5687681FC9E821B9A625D478B47FDD8A4348 - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158206.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158206.html - HP ZBook Power G11 MWS Windows 11 Driver Pack + 2/21/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84802.exe + 1030908864 + 8685923519362c4b7505696fd3380ae7 + 6FE80BB751F41526B0C81C259A5A102F06B7FEC4593B4419A2DB009020A58586 + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84802.cva + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84802.html + HP Z4G4 Windows 10 x64 Driver Pack false - sp149056 - HP ZBook Power G10 MWS Windows 11 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 8/31/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149056.exe - 1545743760 - 0cde0adf1d2876e8458ba27ff7b9b10f - F9EAE24F296EB878AE3B999086DED42DD05E429885124DD87AD4E52CC64071CA - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149056.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149056.html - HP ZBook Power G10 MWS Windows 11 Driver Pack - true - - - sp144620 - HP ProOne 4/600 G6 AiO Windows 11 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 2/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144620.exe - 1323202872 - 04ca1e17a96442ee64166685a4e6f158 - 74FAE81CB34E176E5A978970FA88274A63FB40C773CE115C5A07C84D0CE86BF2 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144620.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144620.html - HP ProOne 4/600 G6 AiO Windows 11 Driver Pack - true - - - sp151305 - HP Engage Flex Mini Win11 x64 Driver Pack + sp150498 + HP Z4 G5, Z6 G5, Z8 G5 Windows 10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 2/5/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151305.exe - 731305656 - 38bcc1a905ede977c5911d5b610d45c1 - DFC9C9FBE634DA9259EB16245425E7D06C123CB0B9AB83D731E3A273DC3E7698 - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151305.cva - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151305.html - HP Engage Flex Mini Win11 x64 Driver Pack - true + 12/5/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150498.exe + 2522646328 + 1111f091bf67ff5c5b061deff78c13fb + 95869E7F3601059F554D1FB38E92EDA12A6F3352BED23925DBEE85420AB98724 + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150498.cva + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150498.html + HP Z4 G5, Z6 G5, Z8 G5 Windows 10 x64 Driver Pack + false - sp93537 - HP Probook 6x5 G4 Windows 10 x64 Driver Pack + sp160226 + HP ZBook Studio G11 MWS Windows 11 Driver Pack 4.00 A 1 Manageability - Driver Pack - 1/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93537.exe - 725158808 - 3b2acf9e07a8b4d6c6ce485623ff1e7a - 111ACAFEFE08B74343E878166A6CF7BE5E7697DE180B876DA6B779235F34E0E6 - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93537.cva - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93537.html - HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 6/19/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160226.exe + 2206677856 + E2903F01B7A6B84D8C759BC7D09E8D2B + 966CA3110661F5C9B7BC34E9881BF31D62F2E260501137318E34A017AC7589ED + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160226.cva + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160226.html + HP ZBook Studio G11 MWS Windows 11 Driver Pack false - sp78583 - HP Z1G3 Windows 10 x64 Driver Pack - 01.2017 A 1 + sp113465 + HP Probook 6x0 G7 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 1/11/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78583.exe - 500654016 - 3d4c980bfdb74957fcf9b2e7930bac51 - 3BB5EB770E0D8A7D74E9053C8BB4049D3BF735564BD8D9E2521F91C50FE89AF8 - https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78583.cva - https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78583.html - HP Z1G3 Windows 10 x64 Driver Pack + 5/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113465.exe + 1165238872 + 9b78d8323dd9a8addfdd5585f8200ad8 + 387D47CC0C6FFD9D5DE1AD4AC2D8EAA62F5488CE8FF90BD1B012A7F31C2BDC09 + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113465.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113465.html + HP Probook 6x0 G7 Windows 10 x64 Driver Pack false - sp103588 - HP ProBook x360 11 G3 Windows 10 x64 Driver Pack - 6.0 A 1 + sp170248 + HP Engage One Pro AIO Windows 11 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103588.exe - 802354288 - 1d00764ad1974da3e78e526b5d60fc10 - 120BA7916560CA8A5540865054FB1BB9F8A1D36D1ADA3EA7E731529D2851A11A - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103588.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103588.html - HP ProBook x360 11 G3 Windows 10 x64 Driver Pack - false + 2/3/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170248.exe + 933360680 + 85803EC079DD89062CABD034B9D2D408 + 898FBBF3476D50F4ADABDDA31DC4192EFA1017D1F13684395AEFEEF35A32F3A5 + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170248.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170248.html + HP Engage One Pro AIO Windows 11 x64 Driver Pack + true - sp113360 - HP EliteBook x360 830 G8 Windows 10 Driver Pack + sp94916 + HP RP5 5810 IoT10 2016 Driver Pack 3.00 A 1 Manageability - Driver Pack - 4/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113360.exe - 1239240392 - dc6109678762337d1b46c91157859fd9 - 3B0A7FC6658554F688A84E63B13945521006BBE3894D2643CA18617350573C0A - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113360.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113360.html - HP EliteBook x360 830 G8 Windows 10 Driver Pack + 5/7/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94916.exe + 1038883000 + b6aa4ef4b4f4063135b4563975b5373a + 6D3B83B3DFE6704C8847C45146D0AA6BBCC7E25D95ECE14DE5F970DE814D8482 + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94916.cva + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94916.html + HP RP5 5810 IoT10 2016 Driver Pack false - sp84657 - HP ElitePro 400/600/800 G4 PC Win10 x64 Driver Pack + sp136311 + HP ElitePro 4/805 G6 DM Win 11 Driver Pack 1.00 A 1 Manageability - Driver Pack - 1/10/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84657.exe - 920095384 - c7102ab053dae3b762d1e2878547194b - 1608EFB8B70ABB9216E4A765BAA16B002A32879B05C7D9989B4C34211B942437 - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84657.cva - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84657.html - HP ElitePro 400/600/800 G4 PC Win10 x64 Driver Pack + 11/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136311.exe + 1167991816 + b6bd5b004d21e57264bb5f9037c65cd0 + 145D773ACBDD6841C5C2BA46445D0B31C8E4D6034912C6B8AEABCB515998FA73 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136311.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136311.html + HP ElitePro 4/805 G6 DM Win 11 Driver Pack false - sp140788 - HP ZBook Studio G7 Window 11 Driver Pack - 1.00 A 1 + sp145699 + HP Pro/Elite Mini 4/6/800 G9 Windows 10x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/23/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140788.exe - 1300909400 - d26561df11c6310be35bbebb9af93a49 - DB2A962877BD4FF4A832580453EC992DEAB6EA6485C5C7DD6EA4AC86EFC44D77 - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140788.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140788.html - HP ZBook Studio G7 Window 11 Driver Pack - false + 4/5/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145699.exe + 1468090592 + 560fa9291fc20f76211194d24b414c66 + 6239A07C6A0DFF8B9848F5E189E65CA77486BA2506BD8A9EDE414612A004CD09 + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145699.cva + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145699.html + HP Pro/Elite Mini 4/6/800 G9 Windows 10x64 Driver Pack + true - sp85545 - HP Elite Slice G2 Windows 10 x64 Driver Pack - 2.00 A 1 + sp104424 + HP Probook 6x0 G7 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 7/24/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp85501-86000/sp85545.exe - 550020784 - e0839d8aeb4b914c70872fdfca06e27f - 5456E35886510B1E52E39D0FAC34721CFE25FFBF62E8645AA299F2BA55D6009E - https://ftp.hp.com/pub/softpaq/sp85501-86000/sp85545.cva - https://ftp.hp.com/pub/softpaq/sp85501-86000/sp85545.html - HP Elite Slice G2 Windows 10 x64 Driver Pack + 6/11/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104424.exe + 983657656 + e6a5de0e481fd6016fce4c1d872ae337 + DB6741926EFF1C010430629E6DE502F4978BA2C23B8E835DE9380061F2C21AAA + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104424.cva + https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104424.html + HP Probook 6x0 G7 Windows 10 x64 Driver Pack false - sp113276 - HP Z2G8 Windows 10 x64 Driver Pack - 1.00 A 1 + sp113445 + HP ProBook x360 435 G8 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 4/30/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113276.exe - 1478598768 - f6058cabad4c5eceae6ec926e53fa8aa - 79D8CC26284A3E7BEC20A0C13C95F6EB3489B8AA41E168769DBF406849C41443 - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113276.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113276.html - HP Z2G8 Windows 10 x64 Driver Pack + 4/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113445.exe + 1116679296 + 938ba1567f55d5256dcbe6f3b158cad9 + B169934D38791CECD45B064DF8A3F61C27E8EC65B1FD72A4EB4567E66E7E508D + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113445.cva + https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113445.html + HP ProBook x360 435 G8 Windows 10 x64 Driver Pack false - sp136488 - HP ZBook Studio/Create G8 Windows 10 x64 Driver Pack - 4.00 A 1 + sp95450 + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/2/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136488.exe - 1265001808 - 4c894d6c9037f8efcb14111db9017de0 - 90511340AE468EBED4218426269BC19581077275A4A3BA01ACBC0819D9F8CFE2 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136488.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136488.html - HP ZBook Studio/Create G8 Windows 10 x64 Driver Pack + 3/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95450.exe + 795510296 + 3a3dd67a03998582635f4169e4eb66bf + 9BD456B79FBFA39430DAFF4F45D748FEDD894B0BF07848E6709E394D8F99A867 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95450.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95450.html + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack false - sp99891 - HP Elite Slice Windows 10 x64 Driver Pack - 17.0 A 1 + sp99766 + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 10/28/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99891.exe - 507055712 - d7ad7eeae18506a7988eeab50227c828 - F21C02513B31E24E73D642C5E0D1A0C1702DC8C72E3915B2F9C37B676F3C1135 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99891.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99891.html - HP Elite Slice Windows 10 x64 Driver Pack + 11/6/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99766.exe + 1253226328 + 804d3ca0370f4425d656630fb008f6d1 + 9911A46F9742D9F1F6BD73554378945E58D44703085029C7A4D5FE4D2D689292 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99766.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99766.html + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack false - sp112348 - HP Engage Go G1 IoT10 2016 Driver Pack - 4.00 A 1 + sp170014 + HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 1/26/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112348.exe - 688882368 - 2589637ca89344878e770d46471f9a2e - D7FF9F4E024FFD6CCAB4E47911C095A385FAFD45241167E8BAD686363802EB01 - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112348.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112348.html - HP Engage Go G1 IoT10 2016 Driver Pack - false + 1/19/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170014.exe + 2657464456 + B8C4F2B44E1E7EF676B63C1CACF66D90 + 2ACC37FD13A7DECE7748B26B6FFCA55B660C78DC0CF5290F7B95A7ED32DB74C7 + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170014.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170014.html + HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 11 Driver Pack + true - sp79089 - HP Z2 Mini G3 Windows 10 x64 Driver Pack - 02.2017 A 1 + sp143122 + HP ElitePro 4/600 G6/G7 SFF Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 2/21/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79089.exe - 711472096 - 2f765f5c8887db0824d4d8b4392e3f4c - AE55497DB6D853D2AFB7811650F16384205953D8E4D8070538701512166B06B4 - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79089.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79089.html - HP Z2 Mini G3 Windows 10 x64 Driver Pack + 10/25/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143122.exe + 1081721896 + 118520e3a06e91ffeac7cc8ab527c64a + 7A3F73D4EC56799D2C356C82DF8E71F57E77100FB2804633991DDD4A06193C58 + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143122.cva + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143122.html + HP ElitePro 4/600 G6/G7 SFF Windows 11 Driver Pack false - sp158224 - HP ZBook Fury 16 G9 MWS Windows 11 Driver Pack - 2.00 A 1 + sp96411 + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 4/18/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158224.exe - 2452069104 - 2C5DA70495266A4D1FAF3DBB1578D9D4 - 0E74DDB34E0BC5491953C551980DFBC991744F1D29E2A5D00C5717CBB848B1F7 - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158224.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158224.html - HP ZBook Fury 16 G9 MWS Windows 11 Driver Pack + 6/4/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96411.exe + 480085128 + 21099eb3cfc8e883a3c71adb479664b0 + E01BF60B0BE6F5BBBF5F82E315345B43665D690DD40F42E5934713498A782910 + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96411.cva + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96411.html + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack false - sp104372 - HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack + sp174056 + HP Pro/EliteBook 4/6 G2i NB Next Gen AI Windows 11 Driver Pack 2.00 A 1 Manageability - Driver Pack - 6/10/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104372.exe - 923170296 - f1272586ef3b411140438d9b68e8b124 - F66195A052BEA023F9A7389986F8E694F24AC6F21E36A79FB0AB3AEAB895B4F1 - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104372.cva - https://ftp.hp.com/pub/softpaq/sp104001-104500/sp104372.html - HP Elite/ZBook 8x0 G7 Windows 10 x64 Driver Pack - false + 8/4/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174056.exe + 1712117128 + 54A4738AD6FA3758D352C94DCD5885F5 + A49582596637AD6F5DC0D12B652FBAA8871DE5631582BC83D9B0A7253FF732DC + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174056.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174056.html + HP Pro/EliteBook 4/6 G2i NB Next Gen AI Windows 11 Driver Pack + true - sp101896 - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack - 4.0 A 1 + sp94920 + HP RP9 G1 Win10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 3/6/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101896.exe - 859497104 - ad56be19a377bd8eb371b3e5b7ac2f26 - BC9D789488B3ACE02393C1F356B915A775F43757FAF91BE1804FCBA90361E000 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101896.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101896.html - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 5/8/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94920.exe + 532136504 + 7b3465298ab51f9d97e704ba930716a7 + AA45B88B9915D7B2103CA35C7C980A563DC6015FDC84329179140D7CA1C34760 + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94920.cva + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94920.html + HP RP9 G1 Win10 x64 Driver Pack false - sp99665 - HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack - 2.00 A 1 + sp114178 + HP ProBook 4x5R G6 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 10/31/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99665.exe - 805421472 - f143f94b0ff730c898e6f48cd88ac78b - E918BE2767CE44B918CFEF6B4D1E6B5DD250DFB3334995A57F0A75FBB38845CE - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99665.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99665.html - HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack + 6/11/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114178.exe + 1180251136 + 368875a4bb3da082b3c407baadc6d048 + F3652D585157E21439FF1D36DFC92B95EA4583D133D88B947F202FC235BFC6D7 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114178.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114178.html + HP ProBook 4x5R G6 Windows 10 x64 Driver Pack false - sp114207 - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack - 12.00 A 1 + sp114160 + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 6/16/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114207.exe - 1328182936 - 8b26766c990119b0b6a7fce357d205b0 - AC153838425255BA36328D8FE8640A1182CDF985CC8EC89BB8F270ED906B5FD9 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114207.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114207.html - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + 6/9/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114160.exe + 694255464 + 1249a99e3ced0b0a7eabf03d8e898e6e + E6E7D51B155DC15BA97CB9CB384CEEA5BEDFA4FC3BF9AEF4D9E36060E93A2FFE + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114160.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114160.html + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack false - sp99557 - HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack + sp95056 + HP Probook 6x0 G5 Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 10/8/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99557.exe - 859617296 - 9c85663d2963aed5787996e530c7335e - 958A2F7ED4134E27154EA83FAB370EF8B97C592375E58E412F4ECC6D80EDC144 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99557.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99557.html - HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack + 5/15/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95056.exe + 670887624 + 65a96b8a7964604213afa65f033a8fc7 + 3ED92BA885A2A7CDE0832DAB5D49A97520FEA0FA3476889E3468671EBBC292E4 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95056.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95056.html + HP Probook 6x0 G5 Windows 10 x64 Driver Pack false - sp112019 - HP Elite/ZBook 8x0 G4 Windows 10 x64 Driver Pack - 17.0 A 1 + sp136262 + HP ElitePro 6/8x0 G8 PC Win 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 12/31/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112019.exe - 1249542424 - e84fbf6fade56908e18bf2812160455b - 6CE8818CA049C782F0F62E607243BD35CD1EA2AEE4CC90059CC615D03FF0F35E - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112019.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112019.html - HP Elite/ZBook 8x0 G4 Windows 10 x64 Driver Pack + 11/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136262.exe + 1523093560 + c8446958aae0fb26c76dfb8d806a9c50 + D63ECC1FE8658DFAD4DF8465DE193467A53283A1DF54DAB5A93B416225F3806D + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136262.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136262.html + HP ElitePro 6/8x0 G8 PC Win 11 Driver Pack false - sp151271 - HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack - 7.00 A 1 + sp105743 + HP VR Backpack G2 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151271.exe - 1584774432 - 12eafa0a2f6bcd90f0537868f99fa668 - BDC019F73C6C327B6A775569A60610ED23F6187E82E68B637D69BFDD68B04E00 - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151271.cva - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151271.html - HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack - true + 7/7/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105743.exe + 531217664 + 957aff2955653a95b96efd39cfb770d5 + 6E81712A966CEDD41BF9DD0871E5FF3351A52D1A68B41B0FD73400D905164A35 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105743.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105743.html + HP VR Backpack G2 Windows 10 x64 Driver Pack + false - sp149205 - HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack - 3.00 A 1 + sp145124 + HP Elite Dragonfly 13.5 G3 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 9/14/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149205.exe - 913638064 - 401b5f6e454443b92a2388be94de6222 - 135A8B40D0CB8A0BE98F45A004E391DF0BC5FB95BCB91674AB33CA4BD929F531 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149205.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149205.html - HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + 3/13/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145124.exe + 1193978304 + 251bdb0ed1e7be0afa79bcc2ebd40ff5 + A0FA0C218D33E45E934B986F6808835D81F40606125336D21720DB69E30E5484 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145124.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145124.html + HP Elite Dragonfly 13.5 G3 Windows 10 x64 Driver Pack true - sp105759 - HP ZBook x2 Windows 10 x64 Driver Pack - 11.0 A 1 + sp174205 + HP ZBook Fury G11 MWS PC Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/24/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105759.exe - 674291760 - 9237de8aa86cb1aede85b4cf87bdced3 - 449DF4C22EA4A517A189BFFF1BD451F656E0CD96271679A65618A8C240169AFE - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105759.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105759.html - HP ZBook x2 Windows 10 x64 Driver Pack - false + 8/5/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174205.exe + 2371023736 + 9F5BBB254DCBB1B26095E140A9966117 + 59C2330CBBE86D04AB1D20ED4817034AF5C21AD287E9405AA3477BFDFFD2EA25 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174205.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174205.html + HP ZBook Fury G11 MWS PC Windows 11 Driver Pack + true - sp174204 - HP EliteBook X G2a NB Next Gen AI Windows 11 Driver Pack + sp149075 + HP ProBook 635 Aero G8 Windows 11 Driver Pack 3.00 A 1 Manageability - Driver Pack - 8/5/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174204.exe - 986943616 - D25261F70B98FC3C067C8B7EDC57426D - 238BD489C26B55223679F6158F9B00E29BED33C30A00D24D84DA555115BB87E0 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174204.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174204.html - HP EliteBook X G2a NB Next Gen AI Windows 11 Driver Pack + 8/30/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149075.exe + 1046349216 + 3bfccc3b09e198b53341cdc4dd4823dd + 98D8E71DCA25458AD4E104F4F820B7FAC1E3BA4D729714BA92A8BC0212B1D869 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149075.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149075.html + HP ProBook 635 Aero G8 Windows 11 Driver Pack true - sp87289 - HP EliteDesk 705 G2 Win10 x64 Driver Pack - 9.00 A 1 + sp147415 + HP Z6/Z8 Windows 10 x64 Driver Pack + 13.00 A 1 Manageability - Driver Pack - 4/12/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87289.exe - 758830152 - f4e28b4fb7f584a8971f9ef80dd3ef68 - 318B9E1697690959BB3673DEDC7150CC749ED7D5D8823618B46D431FF8FFC831 - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87289.cva - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87289.html - HP EliteDesk 705 G2 Win10 x64 Driver Pack + 5/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147415.exe + 1557492144 + 972fbb552b1fa38623e33cdeab0463ad + 8CC3D1B8345CBFA39AF60C3344C3AA5071E7544D206CD1ACE67B7770466C784D + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147415.cva + https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147415.html + HP Z6/Z8 Windows 10 x64 Driver Pack false - sp140701 - HP Elite/ZBook 8x0 G7 Windows 11 Driver Pack - 1.00 A 1 + sp151794 + HP Elite x2 G8 Tablet Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/15/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140701.exe - 1650155432 - 615a2b1dd28e281190bcc6fd27385ba2 - FF07329C68F004C2C6D82B85B820660A3AA991F2FBB478D6F170BD013D4C9D07 - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140701.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140701.html - HP Elite/ZBook 8x0 G7 Windows 11 Driver Pack - false + 5/14/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151794.exe + 1109618856 + 3f49a1c531a0c3bb7319e89627157d71 + C6E2CB43027319B945B56DD030105754F4F3407AEAAB6918071E1B8C79D62147 + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151794.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151794.html + HP Elite x2 G8 Tablet Windows 11 Driver Pack + true - sp138598 - HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack + sp112551 + HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack - 3/3/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138598.exe - 1499094112 - 6851b9c114af71b10e847ee229a667f1 - EF7B95EACA6AE14A014FA110B4D324C221E754CABC8A164F4057EC370724525B - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138598.cva - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138598.html - HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack + 1/29/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112551.exe + 384421792 + f21c1c819a8d9c6ab6ba49915401dce2 + 6298BC9569F36F31A1C8C308BE4BC3CB4DBDCC39041040002073FD55CAE76AAF + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112551.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112551.html + HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack false - sp160200 - HP ProBook/EliteBook 4/6x5 G11 Windows 11 Driver Pack + sp95463 + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 12/1/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160200.exe - 1277070824 - B00E02FBF0FF91A27BB4BB4E97DEC9E6 - 7780ED24D46B2DC9AC3A22711B6F135284BA6ADF8D29BCEDDA8A9EE476E61426 - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160200.cva - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160200.html - HP ProBook/EliteBook 4/6x5 G11 Windows 11 Driver Pack + 3/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95463.exe + 1069444944 + d07b0bc8fe6f16b5b30482d30784b8b6 + 5CAA6C56F85C4CC157E523B9BE3819505255D21C0CDAE707487606F314F1EA81 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95463.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95463.html + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack false - sp101988 - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + sp112599 + HP RP9 G1 IoT10 2019 Driver Pack 5.00 A 1 Manageability - Driver Pack - 3/14/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101988.exe - 869151912 - 76c5d25198d8e37688fd8bde29b3effe - A6F90EF65956F993E7A28769B211BE13861BAA468E59D17F1FA94F73C4D21590 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101988.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101988.html - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 2/8/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112599.exe + 640058624 + b20f60de1d66ae7d8404969b04ac628f + 662E6B96E508AD258E1DB4D7633E01B3BF9802F244F68D6BD408B3F93BB24514 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112599.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112599.html + HP RP9 G1 IoT10 2019 Driver Pack false - sp107518 - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack - 4.00 A 1 + sp80492 + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 2.10 A 1 Manageability - Driver Pack - 8/6/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107518.exe - 596431360 - f0e7cb892a392e1e35bf050c838c4682 - 0BEE3F35FBB79B0405F3877B5106AB15F069ACF0D70A52CFF372A49EF5C3D74D - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107518.cva - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107518.html - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + 5/23/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80492.exe + 743829992 + 5ea9ed620b1c8e1100dc6c285b67b90a + B5E7EFB8A87DBA96A11659DCFD9496699719193776E074C63849C92252B0E07E + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80492.cva + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80492.html + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack false - sp114256 - HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack - 14.00 A 1 + sp121401 + HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/24/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114256.exe - 1086987800 - b9491bbd00fd641ae63da5e1e1769b14 - 1422087DFE8A45EC90CB09FD62A86B255933068CBA8EEE000AA1D96CA56CEE90 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114256.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114256.html - HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack + 7/12/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121401.exe + 1091808592 + 370e1160d74c71016bd6c7ba3a06f335 + 2CE5D1CA64EDC7F7EA2498E4CAA6F7B353C1C80486A6C5CAF4EA206595965DB7 + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121401.cva + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121401.html + HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack false - sp113952 - HP ZBook Studio G7 Windows 10 x64 Driver Pack - 6.00 A 1 + sp87288 + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 5/21/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113952.exe - 1300895432 - 966c14b2c40b86864e3669dd74e325b7 - 2583E977168F9FD8E31AB11DFFCAFD7ACAEA86DEB7A52E07C8D0BCE261DBA5F1 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113952.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113952.html - HP ZBook Studio G7 Windows 10 x64 Driver Pack + 4/12/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87288.exe + 942577120 + 215cc4287f3ac63fdbc3481bbf48c96e + 2D0499CA7C231488970619F829AA18334F871417F62C816E3E523AD61B65579F + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87288.cva + https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87288.html + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack false - sp133117 - HP MP9 G4 IoT10 2019 Driver Pack - 8.00 A 1 + sp144717 + HP Z6/Z8 Windows 10 x64 Driver Pack + 12.00 A 1 Manageability - Driver Pack - 8/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133117.exe - 453738432 - d44d29d7128509b6bad5ef9aeb8031c8 - 5A753BB55D2004CD3B14082B4B671EA8CC363FBF5A68DCD31AAE8481865520A2 - https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133117.cva - https://ftp.hp.com/pub/softpaq/sp133001-133500/sp133117.html - HP MP9 G4 IoT10 2019 Driver Pack + 2/1/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144717.exe + 2094017480 + 3a49011a55a97848ed874ee9cfc463fd + FB910B1D36BF639EB3421A3F943E4FB361DC61DA2DD8D73136D34EC6ADD934F2 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144717.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144717.html + HP Z6/Z8 Windows 10 x64 Driver Pack false - sp95330 - HP ElitePro 600/800 G2 PC Windows 10 x64 Driver Pack - 12.0 A 1 + sp101773 + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 3/12/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95330.exe - 861386416 - ae6996f3d52ad51ebc31e00b1c706c94 - 2B4B7A06B38CD926F3344D6072B120DDECAC8BB1322EA9ABA565AD2666298FCE - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95330.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95330.html - HP ElitePro 600/800 G2 PC Windows 10 x64 Driver Pack + 2/27/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101773.exe + 425995088 + b1a52c90c1389a13141ce70f7d3b27b2 + DB342F0A5D0A892201B09093BC36C9CC1181A018CC1468296964C1A2E0A7F4DE + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101773.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101773.html + HP EliteDesk 705 G4 Windows 10 x64 Driver Pack false - sp114138 - HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 6/7/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114138.exe - 579407168 - efe2b1d944b2772b4b3a860d8362c477 - 4CCE7140F6DDF274498DFF7C3D69B6DCC58C1378862D7B18521A0EAA7694461A - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114138.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114138.html - HP EliteBook 8x5 G8 Windows 10 x64 Driver Pack - false - - - sp94917 - HP RP5 5810 Win10 x64 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 5/30/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94917.exe - 1048856184 - 6a134eb8ded8a5c225fe5343f2b6c1fd - 0B34BCD04E6681FB9E35FC9DA4BC37BD88F883F096678CDB38965B319F5736FE - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94917.cva - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94917.html - HP RP5 5810 Win10 x64 Driver Pack - false - - - sp132842 - HP Engage Flex Mini Win10 x64 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 8/11/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp132501-133000/sp132842.exe - 1230907184 - 880cf3447e8dc9150d812ba2e1d0dc5f - 4B6A6F7BF29E5FD37345E3A268EA8D454F59977A9F33F6033C55CB4D36C2D76D - https://ftp.hp.com/pub/softpaq/sp132501-133000/sp132842.cva - https://ftp.hp.com/pub/softpaq/sp132501-133000/sp132842.html - HP Engage Flex Mini Win10 x64 Driver Pack - false - - - sp158188 - HP ZBook Power G10 MWS Windows 11 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 11/26/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158188.exe - 2132532856 - 5EB4312855ED6B81418C6061686C6CCF - F619DE211FB11B1E0C52C161D991AF216AA77005DE96758EDFDDA2C5B81E7C6B - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158188.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158188.html - HP ZBook Power G10 MWS Windows 11 Driver Pack - false - - - sp161684 - HP EliteBook 6 G1i AI Windows 10 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 7/29/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161684.exe - 2826610824 - B4F82B2E34569200A507EBEC5E033DD5 - 09FD404A5680242601C5DEC92CD66FCE66FD18D22B51F21D978D491C88FE13BC - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161684.cva - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161684.html - HP EliteBook 6 G1i AI Windows 10 Driver Pack - false - - - sp158333 - HP Z2 TWR SFF G1i Windows 10 x64 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 4/23/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158333.exe - 3643626704 - EB066E04309BC60BDA22EB679D2EED0B - 0CE47AE46F47BC5FDE3907A5B03D44811EC85A8C84934A95B71B61E6228C01EF - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158333.cva - https://ftp.hp.com/pub/softpaq/sp158001-158500/sp158333.html - HP Z2 TWR SFF G1i Windows 10 x64 Driver Pack - false - - - sp138464 - HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 2/18/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138464.exe - 1162157600 - 44aff550c6e2f95ad4ef0018cd18a08f - 15FDD2976A83E331A76A5B85BF161012B4CEA7E05844A79F9EFB5A88D90E6058 - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138464.cva - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138464.html - HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack - false - - - sp99900 - HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 10/29/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99900.exe - 896436696 - 5b024ec9ef2f676b319256c7d248dcd8 - 5BE03B68148CD2653CC23AEF6433A177932B81EC7206CE33344B83B4B0E171D0 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99900.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99900.html - HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack - false - - - sp140369 - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack - 9.00 A 1 - Manageability - Driver Pack - 5/18/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140369.exe - 1022596336 - cc306e59ce18d2c5a2d9f91c220e7668 - EE0871E6C1B3C36A7C45D811F87AC6EDAEB735D26D881E44531F30B6099FBE08 - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140369.cva - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140369.html - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack - false - - - sp168479 - HP Engage Flex Mini Windows 11 x64 Driver Pack - 7.00 A 1 - Manageability - Driver Pack - 12/18/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168479.exe - 870498704 - 7CA641FE6A5F738A046AA511B38B794E - F6F9FC8234FBDB3A04728818D8F5F9C4E474037C4168F73C880E77F7596CFE48 - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168479.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168479.html - HP Engage Flex Mini Windows 11 x64 Driver Pack - true - - - sp100849 - HP EliteDesk 705 G2 Win10 x64 Driver Pack - 12.0 A 1 - Manageability - Driver Pack - 12/19/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100849.exe - 799176344 - 5b0e8d6e7916a0d4c0edec170fe10e52 - B88A990BF85CC47CA4DBCDB96E39A33811EBC831FB707213DEC1C77E952A77DB - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100849.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100849.html - HP EliteDesk 705 G2 Win10 x64 Driver Pack - false - - - sp95435 - HP Probook 6x0 G4 Windows 10 x64 Driver Pack - 7.00 A 1 - Manageability - Driver Pack - 3/21/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95435.exe - 739890328 - 531180998fdd5c1c06027202e6692f25 - 7AA503B6C3F6E98CAB075D9C8522DDEDF75279D0B110962C08B31DD52BEE42EA - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95435.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95435.html - HP Probook 6x0 G4 Windows 10 x64 Driver Pack - false - - - sp111812 - HP Elite Dragonfly G2 Windows 10 x64 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 12/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111812.exe - 1212844304 - 037258fe0bd26f06879b16000b5c7b7e - 4686C8C18240D6305DDF468F0EC596281738F777506EA8E0F900E0A39C854134 - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111812.cva - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111812.html - HP Elite Dragonfly G2 Windows 10 x64 Driver Pack - false - - - sp79039 - HP EliteDesk 705 G3 Win10 x64 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 2/13/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79039.exe - 663908752 - d718ec20c2587c5ad68c7a81c3865c24 - 1A89A52DA3A1B1CB6F6F6D9ABE95554A05CBE49AF7B95BC344D87E51DDF17DD7 - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79039.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79039.html - HP EliteDesk 705 G3 Win10 x64 Driver Pack - false - - - sp142912 - HP Engage Go 10 Mobile System Win10 x64 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 9/29/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142912.exe - 847136552 - 4b758e18092f4bce7206f0fcff85dfbc - 50E9FC2B79EB73226C11E0903F3C7C4291C28191F636B8C21A219FBACF8360D0 - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142912.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142912.html - HP Engage Go 10 Mobile System Win10 x64 Driver Pack - false - - - sp145124 - HP Elite Dragonfly 13.5 G3 Windows 10 x64 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 3/13/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145124.exe - 1193978304 - 251bdb0ed1e7be0afa79bcc2ebd40ff5 - A0FA0C218D33E45E934B986F6808835D81F40606125336D21720DB69E30E5484 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145124.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145124.html - HP Elite Dragonfly 13.5 G3 Windows 10 x64 Driver Pack - true - - - sp174205 - HP ZBook Fury G11 MWS PC Windows 11 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 8/5/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174205.exe - 2371023736 - 9F5BBB254DCBB1B26095E140A9966117 - 59C2330CBBE86D04AB1D20ED4817034AF5C21AD287E9405AA3477BFDFFD2EA25 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174205.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174205.html - HP ZBook Fury G11 MWS PC Windows 11 Driver Pack - true - - - sp149075 - HP ProBook 635 Aero G8 Windows 11 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 8/30/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149075.exe - 1046349216 - 3bfccc3b09e198b53341cdc4dd4823dd - 98D8E71DCA25458AD4E104F4F820B7FAC1E3BA4D729714BA92A8BC0212B1D869 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149075.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149075.html - HP ProBook 635 Aero G8 Windows 11 Driver Pack - true - - - sp147415 - HP Z6/Z8 Windows 10 x64 Driver Pack - 13.00 A 1 - Manageability - Driver Pack - 5/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147415.exe - 1557492144 - 972fbb552b1fa38623e33cdeab0463ad - 8CC3D1B8345CBFA39AF60C3344C3AA5071E7544D206CD1ACE67B7770466C784D - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147415.cva - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147415.html - HP Z6/Z8 Windows 10 x64 Driver Pack - false - - - sp151794 - HP Elite x2 G8 Tablet Windows 11 Driver Pack - 5.00 A 1 - Manageability - Driver Pack - 5/14/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151794.exe - 1109618856 - 3f49a1c531a0c3bb7319e89627157d71 - C6E2CB43027319B945B56DD030105754F4F3407AEAAB6918071E1B8C79D62147 - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151794.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151794.html - HP Elite x2 G8 Tablet Windows 11 Driver Pack - true - - - sp112551 - HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 1/29/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112551.exe - 384421792 - f21c1c819a8d9c6ab6ba49915401dce2 - 6298BC9569F36F31A1C8C308BE4BC3CB4DBDCC39041040002073FD55CAE76AAF - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112551.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112551.html - HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack - false - - - sp95463 - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95463.exe - 1069444944 - d07b0bc8fe6f16b5b30482d30784b8b6 - 5CAA6C56F85C4CC157E523B9BE3819505255D21C0CDAE707487606F314F1EA81 - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95463.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95463.html - HP ProBook x360 440 G1 Windows 10 x64 Driver Pack - false - - - sp112599 - HP RP9 G1 IoT10 2019 Driver Pack - 5.00 A 1 - Manageability - Driver Pack - 2/8/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112599.exe - 640058624 - b20f60de1d66ae7d8404969b04ac628f - 662E6B96E508AD258E1DB4D7633E01B3BF9802F244F68D6BD408B3F93BB24514 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112599.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112599.html - HP RP9 G1 IoT10 2019 Driver Pack - false - - - sp80492 - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - 2.10 A 1 - Manageability - Driver Pack - 5/23/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80492.exe - 743829992 - 5ea9ed620b1c8e1100dc6c285b67b90a - B5E7EFB8A87DBA96A11659DCFD9496699719193776E074C63849C92252B0E07E - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80492.cva - https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80492.html - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - false - - - sp121401 - HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 7/12/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121401.exe - 1091808592 - 370e1160d74c71016bd6c7ba3a06f335 - 2CE5D1CA64EDC7F7EA2498E4CAA6F7B353C1C80486A6C5CAF4EA206595965DB7 - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121401.cva - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121401.html - HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack - false - - - sp87288 - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack - 10.0 A 1 - Manageability - Driver Pack - 4/12/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87288.exe - 942577120 - 215cc4287f3ac63fdbc3481bbf48c96e - 2D0499CA7C231488970619F829AA18334F871417F62C816E3E523AD61B65579F - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87288.cva - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87288.html - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack - false - - - sp144717 - HP Z6/Z8 Windows 10 x64 Driver Pack - 12.00 A 1 - Manageability - Driver Pack - 2/1/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144717.exe - 2094017480 - 3a49011a55a97848ed874ee9cfc463fd - FB910B1D36BF639EB3421A3F943E4FB361DC61DA2DD8D73136D34EC6ADD934F2 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144717.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144717.html - HP Z6/Z8 Windows 10 x64 Driver Pack - false - - - sp101773 - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack - 8.00 A 1 - Manageability - Driver Pack - 2/27/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101773.exe - 425995088 - b1a52c90c1389a13141ce70f7d3b27b2 - DB342F0A5D0A892201B09093BC36C9CC1181A018CC1468296964C1A2E0A7F4DE - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101773.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101773.html - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack - false - - - sp101929 - HP EliteDesk 705 G5 DM Win10 x64 Driver Pack + sp101929 + HP EliteDesk 705 G5 DM Win10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack 4/2/2020 12:00:00 AM @@ -7705,21 +7120,6 @@ HP ElitePro 600/800 G3 PC Windows 10 x64 Driver Pack false - - sp95549 - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - 5.00 A 1 - Manageability - Driver Pack - 4/5/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95549.exe - 817369240 - f4dcec5a1dbe3522256ed1b59526d6dd - 49D85F07E62FE370616EE1C73AA6CF151C6B2749C42CAACD53D8BDBA31B2D9AD - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95549.cva - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95549.html - HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack - false - sp150678 HP Z2G9 Windows 10 x64 Driver Pack @@ -7735,6 +7135,21 @@ HP Z2G9 Windows 10 x64 Driver Pack false + + sp95549 + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 4/5/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95549.exe + 817369240 + f4dcec5a1dbe3522256ed1b59526d6dd + 49D85F07E62FE370616EE1C73AA6CF151C6B2749C42CAACD53D8BDBA31B2D9AD + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95549.cva + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95549.html + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + false + sp142953 HP Engage One G1 Win10 x64 Driver Pack @@ -7765,21 +7180,6 @@ HP ElitePro 400/600/800 G4 PC Win10 x64 Driver Pack false - - sp101387 - HP MP9 G4 Win10 x64 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 1/15/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101387.exe - 773947960 - 26a8b8bed482be1cf3fa870298ff6624 - 0998C116CD49263ACEBDF90AD1D4716D7AEA80AD3ADB2CC84BA8C4267A8FDFFF - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101387.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101387.html - HP MP9 G4 Win10 x64 Driver Pack - false - sp112600 HP RP9 G1 Win10 x64 Driver Pack @@ -7795,6 +7195,21 @@ HP RP9 G1 Win10 x64 Driver Pack false + + sp101387 + HP MP9 G4 Win10 x64 Driver Pack + 6.00 A 1 + Manageability - Driver Pack + 1/15/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101387.exe + 773947960 + 26a8b8bed482be1cf3fa870298ff6624 + 0998C116CD49263ACEBDF90AD1D4716D7AEA80AD3ADB2CC84BA8C4267A8FDFFF + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101387.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101387.html + HP MP9 G4 Win10 x64 Driver Pack + false + sp110433 HP Elite Dragonfly Windows 10 x64 Driver Pack @@ -8096,1233 +7511,1353 @@ true - sp144873 - HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack - 8.00 A 1 - Manageability - Driver Pack - 2/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144873.exe - 2097523360 - fb094e562805d9fcb753c04e1060c5d5 - 5D78D22B9672744DFF73EF810C1A033423DC39DCFC895FB05289F65A8F88C1BF - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144873.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144873.html - HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack - true - - - sp114161 - HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack - 6.00 A 1 + sp103610 + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 6/9/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114161.exe - 1702525096 - 60a521a44053671ecfab3370261f3238 - 688913E21B3711A4BF1CA5354F9E45C855B7566854A89823FD61D9605FDCF502 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114161.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114161.html - HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103610.exe + 683147368 + be4810f4b4202c56fc5660e155d836fe + 4656B9F13A9D6257337103DF1D727B19B84EB7A51E1337052D3593FC0D8F8879 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103610.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103610.html + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack false - sp114158 - HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack - 2.00 A 1 + sp157671 + HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 6/8/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114158.exe - 572739648 - c0cbcf76b3155c9d5bf69a7625c5bd7a - 97F3086BC1EA5444C0B3F4BDD7AF30A0A9980B34AF59D854188D247CFFD033D2 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114158.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114158.html - HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack + 12/4/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157671.exe + 2011622232 + 073F3826544276EE38F5EC1896C01CDC + EE5082FF28DDFC9563B7400505F016CB1C4F5DB8EAC47A531F75E72028531234 + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157671.cva + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157671.html + HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack false - sp167307 - HP EliteBook 1040 G11 Windows 11 Driver Pack + sp143649 + HP ElitePro 6/8x0 G6 PC Win 11 Driver Pack 4.00 A 1 Manageability - Driver Pack - 12/11/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167307.exe - 2560566056 - 9AECAD0BC1AEA84911EEE2C8C3D0BEF8 - A195BB225EF2A09846394CD476CA3737FCF91E9DDEB4F4B0C8B60E53126775DD - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167307.cva - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167307.html - HP EliteBook 1040 G11 Windows 11 Driver Pack - true - - - sp103984 - HP EliteBook x360 830 G7 Windows 10 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 5/13/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103984.exe - 923157712 - 564c5b059bdcc3817b103b12e9e482bd - 5ABF6D24A408C32F1DB44C1AFFD542444546444225AE147208D3DA7D5A376881 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103984.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103984.html - HP EliteBook x360 830 G7 Windows 10 Driver Pack + 11/26/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143649.exe + 2750204664 + 53ab8a3dbc020a7323b127585c713900 + BB07CF982FEE4CE49DCFDD4E668A053E5E0E7F12EE6641EAE0437C9431A32406 + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143649.cva + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143649.html + HP ElitePro 6/8x0 G6 PC Win 11 Driver Pack false - sp147514 - HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 10 x64 Driver Pack + sp149130 + HP Dragonfly Folio G3 Windows 11 Driver Pack 2.00 A 1 Manageability - Driver Pack - 6/1/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147514.exe - 1660192312 - 05e7dd20cf84aafff3ec74a938325ff1 - 5C05E39EBA85CC311EE1D20D66CAA649774F318024F8EB81558CC5398098B66C - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147514.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147514.html - HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 10 x64 Driver Pack + 9/4/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149130.exe + 987756536 + 99a8239cbddd8343bb438b814ae9a639 + C37960FB5D0F6AE581CD558016A1665363365F105C5836CEE8A01F1C8BF1AC60 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149130.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149130.html + HP Dragonfly Folio G3 Windows 11 Driver Pack true - sp103625 - HP ProBook x360 435 G7 Win 10 x64 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 4/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103625.exe - 911044048 - 6a9ca37031f21acf6c35a4e8bf44739c - FE853F182A7EB9E8AE0F5B2B5B4BC97B0F63E8F8EF74AD95F38C9F212F4186C0 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103625.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103625.html - HP ProBook x360 435 G7 Win 10 x64 Driver Pack - false - - - sp145051 - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack - 8.00 A 1 + sp173512 + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 3/1/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145051.exe - 1812436448 - fafb6ebee1c54f0ec6de07d51fcac049 - 5B25A202254B6BB65BF24DB9A9D453E5D0DD7BE6B908D1445B3FF51A991B3F1D - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145051.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145051.html - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + 6/8/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173512.exe + 3932107416 + 10F5033C2E72C614E9AA7EFF2B81964F + 4267DA417F35382566C28802476C69DD1D8A03E27097B85D935F106845810C26 + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173512.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173512.html + HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack true - sp79203 - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack - 6.00 A 1 + sp103614 + HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 2/24/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79203.exe - 923155376 - dddf0af739701d2e81c7095c7b1187a3 - 1C7F7BF69F21366511FB001784CB8F74E165FDD27CFBB7AD944DD5C366BF9923 - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79203.cva - https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79203.html - HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + 5/21/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103614.exe + 812558928 + 397cd8d5df24da9d324e31289c2cce3f + 22D15984F9C1AD4DCEC9A94003109A5F6AF830842D3CFD2780E09E9168D4454A + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103614.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103614.html + HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack false - sp113701 - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack - 9.00 A 1 + sp84800 + HP Z2 Mini G3 Windows 10 x64 Driver Pack + 2.2018 H 1 Manageability - Driver Pack - 6/9/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113701.exe - 1396861184 - 53887496f63b248979a92f6735a1b89c - 3CD9ABFE56268408BA593635518B96A5EFCE652D24BF964C99225367B3880CAC - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113701.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113701.html - HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack + 2/21/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84800.exe + 849337896 + 63658dc88cbada3775bd7f8d8717e426 + 0FCBFC1223DF5340B6C331C96A42220F73AAF72FFFE3BB9F72BD67C30BEDC2F7 + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84800.cva + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84800.html + HP Z2 Mini G3 Windows 10 x64 Driver Pack false - sp101475 - HP ProBook x360 11 G6 Windows 10 x64 Driver Pack - 1.00 A 1 + sp110137 + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 1/28/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101475.exe - 601203584 - af79b3796784cd7df292840377ef75b0 - 53CBDE4F1ECFF7FD221DEB034D0501E85392D700E9138C7644BE884A613BBE6D - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101475.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101475.html - HP ProBook x360 11 G6 Windows 10 x64 Driver Pack + 9/17/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110137.exe + 984462456 + 285add0d86f55ca3ca5c7104f510406f + B2747965DA96C5DB8CD0B201584809729C1C494C247AC626DC688998E8A9385F + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110137.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110137.html + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack false - sp158931 - HP Z4 Rack G5 Windows 11 - 8.00 A 1 + sp147614 + HP ZBook Power G10 MWS Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 5/20/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158931.exe - 2125733072 - 2963845C319F41F5D5800C462A55C319 - 55C82AF61126C55FAFA996EFB14CB8D53C1A5AE0F90471F15C485DEC8B5981DB - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158931.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158931.html - HP Z4 Rack G5 Windows 11 - false + 6/9/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147614.exe + 1625250344 + 6892669d22c8a381f3bf09a7dda73439 + 324CF1BE2D3BCF317B2733FA9E1C49DF3E38565EEE82C17EAAAD6CDC60AA4BCB + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147614.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147614.html + HP ZBook Power G10 MWS Windows 10 x64 Driver Pack + true - sp101208 - HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack - 4.00 A 1 + sp85276 + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 1/27/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101208.exe - 412295160 - 6d52b617ed0c0ac6933414ff760d6545 - 075533D1CB237F87F63E34F3360C504F8A41ADD188A8F2E9A891DC509193B39A - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101208.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101208.html - HP ElitePro 4/6/800 G5 PC Windows 10 x64 Driver Pack + 2/2/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85276.exe + 1013976592 + 26c0937623d6ccaf946069807fa215fe + C15F629ABD9BFF1AF5863B2A0D8C68BE00EC49F345433F3D094A06702C2D3D1A + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85276.cva + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85276.html + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack false - sp170006 - HP Pro x360 435 G10 Windows 11 x64 Driver Pack - 3.00 A 1 + sp111033 + HP ElitePro 4/805 G6 SFF Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 1/19/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170006.exe - 1285483152 - 1578439B057EF0B5EA43095EBE7A4DD7 - 77D04DD322DB25B1D75F76CD7DB37BEA9748C59162945E15F5156E0AC117DFE3 - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170006.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170006.html - HP Pro x360 435 G10 Windows 11 x64 Driver Pack - true + 11/12/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111033.exe + 898589120 + fec0c4af08c1ffc0a386eebc7800b520 + 38F93A81FB526E0546FC43BB166C88C105BA81391E10C1305A743BE00BCBDD35 + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111033.cva + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111033.html + HP ElitePro 4/805 G6 SFF Windows 10 x64 Driver Pack + false - sp149062 - HP ZBook Studio G10 MWS Windows 11 Driver Pack - 2.00 A 1 + sp111982 + HP ProDesk 4x0 G4 SFF/MT Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 8/30/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149062.exe - 1534508960 - 89e8fbeba3d62a21366bc3c0a0ac73ab - E1B8BEE9A709DB556EE8E99371E47C68C70A8ABF053F264207C6BB43AF522906 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149062.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149062.html - HP ZBook Studio G10 MWS Windows 11 Driver Pack - true + 12/29/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111982.exe + 1356163408 + 67bf6d81f1ad952f4ecc62ef6893cf55 + A84058278A2294B452D8D57D32EED7378807B3A8C64D3115721FD38549F2294F + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111982.cva + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111982.html + HP ProDesk 4x0 G4 SFF/MT Windows 10 x64 Driver Pack + false - sp147695 - HP Elite Dragonfly G4 Windows 10 x64 Driver Pack - 2.00 A 1 + sp144698 + HP ProDesk 4/600 G6/G7 SFF Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 6/8/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147695.exe - 1075721664 - 754e1c7446bcc15818864b2b04b0f100 - F1E3BB80E7C87162FE8CACCA4EFA83D33814735C9E89EB828400075DBCFEED73 - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147695.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147695.html - HP Elite Dragonfly G4 Windows 10 x64 Driver Pack + 2/13/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144698.exe + 2400780224 + 4f73d71a8ca2b82771d35f30bbc84969 + 44BE969C998176B4318EAD7D238046ECABDF196FA03598B2EFE845912A6A3E76 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144698.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144698.html + HP ProDesk 4/600 G6/G7 SFF Windows 10 x64 Driver Pack true - sp144947 - HP Engage Go 10 Mobile System IoT10 2021 Driver Pack + sp149060 + HP Pro x360 Fortis G10 Windows 11 Driver Pack 3.00 A 1 Manageability - Driver Pack - 2/17/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144947.exe - 927566720 - 710a8fe021e0cd30af131520a677f5a4 - F5AF87D5375A4AEDA1813050C42BBE5427CA62B2E51DC68253A78FBAAC724977 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144947.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144947.html - HP Engage Go 10 Mobile System IoT10 2021 Driver Pack + 8/31/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149060.exe + 767658592 + e65d4c9a917a3df72ddd99cae646ad67 + CDA338092918D6AE9D79DA1267DAE0A0D6F0E5A35BC4DA2897AB6D1B52A7F4F0 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149060.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149060.html + HP Pro x360 Fortis G10 Windows 11 Driver Pack true - sp111234 - HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack - 6.00 A 1 + sp140882 + HP ZBook Power G7 Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 11/24/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111234.exe - 1366595384 - 03f574fd356d9460c0bd61c714e7e023 - E32F93E10619D69D9A5267CA8E005470BA2CC5F8E143930FB50C172B2D036759 - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111234.cva - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111234.html - HP ProDesk 4x0 G6 SFF/MT Win 10 x64 Driver Pack + 7/12/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140882.exe + 1338303768 + 6ab169fc756e7108b0683e38af5655f0 + 23D93036A4DB38B89EF510AC7AA6D07F3F69CD47DE186854197EE5A71E0C5BBD + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140882.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140882.html + HP ZBook Power G7 Windows 11 Driver Pack false - sp96058 - HP EliteDesk 705 G2 Win10 x64 Driver Pack - 11.0 A 1 + sp114068 + HP Probook 6x0 G8 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 5/2/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96058.exe - 827904560 - f57a54c15d5ec79ff844bca19c79980d - 465D8C982BBC2569ECF7B516EAE57128B225117414A0099BA26DD5286FB50F1F - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96058.cva - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96058.html - HP EliteDesk 705 G2 Win10 x64 Driver Pack + 6/1/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114068.exe + 1344850896 + 5ed3876b14ebefa412a36013fcadd0f8 + 7018BD853B790C39EEF95DE8FB27729CE371802C8A85428192D00E50AC5A5E01 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114068.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114068.html + HP Probook 6x0 G8 Windows 10 x64 Driver Pack false - sp87003 - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + sp94910 + HP Engage One G1 Win10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 3/27/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87003.exe - 818808928 - 1ead9209e149bef01f626a170c050d4e - A0FC4A842B48AE20961BFEA524AFB39FDA0D1BF69B8FF6A05A47CAF5AF13FBF2 - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87003.cva - https://ftp.hp.com/pub/softpaq/sp87001-87500/sp87003.html - HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + 5/15/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94910.exe + 420818944 + f095a7daf23bbd0e1dde1d4fa469bfb8 + 92B9CF5BF3C3FCB02F78C3DAD363A9EA9648EA44FB16786C6224FA061DAC8BBD + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94910.cva + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94910.html + HP Engage One G1 Win10 x64 Driver Pack false - sp80814 - HP Z1G3 Windows 10 x64 Driver Pack - 07.2017 B 1 + sp114224 + HP EliteBook x360 830 G6 Windows 10 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 7/11/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80814.exe - 556709816 - 9d5ec732d153effd993e29c54432cb87 - A54E495C2FF33770CA906423FA6488D18466BD285D980B21D5E5F00CF627AC25 - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80814.cva - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80814.html - HP Z1G3 Windows 10 x64 Driver Pack + 6/18/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114224.exe + 1180968168 + 7a359f90d46679d30c6b8799364d8485 + 62600AC5153F556C6F3A8F9A5E992746B9DB122FE913F4A83142BEE1EDFF29A9 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114224.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114224.html + HP EliteBook x360 830 G6 Windows 10 Driver Pack false - sp161705 - HP Pro4 AIO G1i AI PC Windows 10 Driver Pack - 2.00 A 1 + sp140851 + HP ProBook x360 435 G7 Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 7/31/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161705.exe - 2716246000 - 5E91E152A2EFE5B49C85FB869FC3E2BE - 3BDBF9141FBE776512879C50372C099D28EDC5258E60DA91F7BBA3F92AD70D31 - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161705.cva - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161705.html - HP Pro4 AIO G1i AI PC Windows 10 Driver Pack + 6/29/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140851.exe + 998728560 + 537e05c765e9e6a3b73b5888a845002d + C6458B60A863A1921F4336CBD50CD3A5BCBA5BFDF66B4151A69B47829A24C849 + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140851.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140851.html + HP ProBook x360 435 G7 Windows 11 Driver Pack false - sp145152 - HP ProBook x360 Fortis 11 G9 Windows 10 x64 Driver Pack + sp90224 + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 7/26/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90224.exe + 636415168 + 4a22131edae0bed7c5884fd5d72d8e3f + 37CFBC6E79185E3500C9C85D02539CA66892A8289F76563F2DF2193E1A0173D3 + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90224.cva + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90224.html + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + false + + + sp150833 + HP EB/ZB/x360 8x0/1040/FF G10 Windows 11 Driver Pack 4.00 A 1 Manageability - Driver Pack - 4/20/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145152.exe - 862814264 - cbde15f1e9ecca0f9876ab4cadce0537 - 6E96C8E1B1AF19052DAC700CBE1BCEC72478BEF64B8D26BC08BC7E8AD3323FF4 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145152.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145152.html - HP ProBook x360 Fortis 11 G9 Windows 10 x64 Driver Pack + 1/12/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150833.exe + 1635333944 + 70e16f2d80ecda524bdfdfae6fdbbc6d + 66635977AAD6C3C90A1AE5C43BE5D28D888E5F78F5414C788D7D7E559BF6D12D + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150833.cva + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150833.html + HP EB/ZB/x360 8x0/1040/FF G10 Windows 11 Driver Pack true - sp105919 - HP EliteDesk 705 G2 Win10 x64 Driver Pack - 13.0 A 1 + sp167338 + HP Engage One Pro AIO G2 Windows 11 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 7/3/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105919.exe - 872694152 - 1d14df74418b4276a2016db847b6a618 - ED2C99F44E40033C1BFC902E1C5C8258985F3B252F47D98AB65040BCDB66B2B8 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105919.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105919.html - HP EliteDesk 705 G2 Win10 x64 Driver Pack - false + 12/12/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167338.exe + 1292726432 + 377FAA22A0F0A8DF4E25528C710ACE39 + 9B3955A6B3CADDCF637EE7CA75DE340F35C7B686F68E045F401BAB3561BD5F47 + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167338.cva + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167338.html + HP Engage One Pro AIO G2 Windows 11 x64 Driver Pack + true - sp142776 - HP EliteBook x360 830 G8 Windows 11 Driver Pack + sp138311 + HP ProBook x360 11 G7 Windows 10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 9/28/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142776.exe - 1307930616 - d50caf78a496602cc92a4ffbbf27554a - 3DB06E297C6789BF4C8F11E4113D15B2A1F05B269EEAB2225EB5CFBF942F8B4A - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142776.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142776.html - HP EliteBook x360 830 G8 Windows 11 Driver Pack + 2/8/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138311.exe + 1169577312 + 76de0d8b9a61300be65f8eaa1e49ac82 + EFAFF87259387411ABB2066C21D9EC6D4AEC1E501A7777A12F65908847964B1D + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138311.cva + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138311.html + HP ProBook x360 11 G7 Windows 10 x64 Driver Pack false - sp96751 - HP Pro x2 612 G1 Tablet Windows 10 x64 Driver Pack - 7.00 A 1 + sp144635 + HP EliteOne 8x0 27 G9 AIO Win 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 5/29/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96751.exe - 497582144 - db45156232e6eeccbe5388b397d9eb35 - A1C55F6964A27B609869A81A98EE92E2AD06829980403D910BFEB9695A6AAF42 - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96751.cva - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96751.html - HP Pro x2 612 G1 Tablet Windows 10 x64 Driver Pack - false - - - sp160214 - HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 6/23/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160214.exe - 2096138248 - 6024288BC3F6785C77CA49ABBB82FF10 - 3C43B4372D2BCC7A61F29F599CFF262CEA609CE10C61F7442236DECB5133010A - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160214.cva - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160214.html - HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack - false + 2/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144635.exe + 1496072384 + 6909d8047d47c460de0da660a2144e61 + 4772DD5CA2538856F022EF4BC86436EF1CB3CDC6941715558A92E9FDB115803A + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144635.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144635.html + HP EliteOne 8x0 27 G9 AIO Win 10 x64 Driver Pack + true - sp84352 - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack - 1.00 A 1 + sp100030 + HP EliteDesk 705 G3 Windows 10 x64 Driver Pack + 17.0 A 1 Manageability - Driver Pack - 4/17/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84352.exe - 589795024 - 9ae80fdfefa67a42426c9a26442f7064 - 234E23CF11D2CB9977A1F82801772FCC0797982AAB160459C8198FA74BB4B00D - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84352.cva - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84352.html - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 11/6/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100030.exe + 706613624 + 29B2CBDF4BE4F74C1BEC975149B89F85 + 41D763338DFA853199391A7500F487E0BA2E86C70F95C5E89E43C282F09F2DC0 + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100030.cva + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100030.html + HP EliteDesk 705 G3 Windows 10 x64 Driver Pack false - sp78922 - HP Z440/Z640/Z840 Windows 10 x64 Driver Pack - 01.2017 A 1 + sp101928 + HP EliteDesk 705 G5 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 1/11/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78922.exe - 673643544 - fbd87cd4a7a27f4c0fd617f075d80fac - 673CC9B504CBF5FBCBA911FED060F2F698350BE2020C83DD1F1146D258CAABE4 - https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78922.cva - https://ftp.hp.com/pub/softpaq/sp78501-79000/sp78922.html - HP Z440/Z640/Z840 Windows 10 x64 Driver Pack + 3/30/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101928.exe + 727977256 + 769c3fadd37e54d3dc66f05179b7c628 + 568E8A5032D7849FFDFF911EF30B3FE80B839A1DAA882EF522ABF274366B94D0 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101928.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101928.html + HP EliteDesk 705 G5 Windows 10 x64 Driver Pack false - sp92421 - HP EliteDesk 705 G2 Win10 x64 Driver Pack - 10.0 A 1 + sp144592 + HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 10/31/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92421.exe - 800386224 - d7e5932b33975509cac3baed2a22344b - 86657DCFDF1262661A33CCCD274C9484AD4EE7CF1DA860390C7B058B410AC5CA - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92421.cva - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92421.html - HP EliteDesk 705 G2 Win10 x64 Driver Pack - false + 2/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144592.exe + 3000741464 + 72e583ebac72d1ece9229d8f38c2b216 + 551E036EEE1BEF42208973E55C28133BA066DF3E641F99ABDA59CD8A46430B23 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144592.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144592.html + HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack + true - sp152173 - HP Z2G4 Windows 11 x64 Driver Pack - 1.00 A 1 + sp87514 + HP Z240 Windows 10 x64 Driver Pack + 5.2018 J 1 Manageability - Driver Pack - 4/15/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp152001-152500/sp152173.exe - 1321129280 - 51fe239ba30c71f763a6a5e956e05635 - 445975EAADF8B6793B5C258FF07FDCE625DA3F006E3667E3F292D953626FD68B - https://ftp.hp.com/pub/softpaq/sp152001-152500/sp152173.cva - https://ftp.hp.com/pub/softpaq/sp152001-152500/sp152173.html - HP Z2G4 Windows 11 x64 Driver Pack + 5/9/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87514.exe + 1033541248 + 4e930d4543fc8e8671a64295074ec7ad + 05415C1C2C7F10042CB79D458DA2C2E377C3799C255B76BFE5DF1AA5895ED8EF + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87514.cva + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87514.html + HP Z240 Windows 10 x64 Driver Pack false - sp114179 - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack - 7.00 A 1 + sp114184 + HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack + 3.00 A 1 Manageability - Driver Pack 6/11/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114179.exe - 1180286416 - dfa4ada9c9c515c3d28bf3f27e8a378d - 9D1603DF7EB5EE0E53D77FB2A7C62F2AF81AB66E03CBC6CBD86617359603A77F - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114179.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114179.html - HP ProBook 4x5 G6 Windows 10 x64 Driver Pack + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114184.exe + 1357462352 + 5dcdce40d55954b127ab5ffb1a6c72c6 + AABFED3A5FDF49C5C9016A2FA79DFD19F72E48D0DC6351FB1EF831B60DB8280C + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114184.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114184.html + HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack false - sp110123 - HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack - 4.00 A 1 + sp103577 + HP ProBook 4x5R G6 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 9/16/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110123.exe - 1458029128 - f762acf0acdbd4f35dfe6d00a75045bc - 0C0DCD8CF7BE9560A19523FFBEB4853B439CCF87D5F4407EB7E730941911FC4A - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110123.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110123.html - HP ProBook 4x0 G7/ZHAN G3 Win 10 x64 Driver Pack + 5/4/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103577.exe + 921589632 + 3e081dba361eb23ef7369dbf4003638e + 936CF78157F55DA701F23AC6035403DA963AFA12CF0F090C41638B958ADC0D4B + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103577.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103577.html + HP ProBook 4x5R G6 Windows 10 x64 Driver Pack false - sp123512 - HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack + sp173280 + HP EliteBoard G1a Next Gen AI Windows 11 Driver Pack 2.00 A 1 Manageability - Driver Pack - 7/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123512.exe - 1668932840 - afd6307ab22846a599e189a6aa30fb1a - 2618336CBB8725896503A4C52A64F6825D5E350A76FED242D6B229947B1F5216 - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123512.cva - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123512.html - HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack - false + 6/2/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173280.exe + 1051817152 + 576B913A01A05F8EFCF4F0F9EB050CAC + 226C31B0B5CC0F55004C11557DFDA3B3510A4F2B1FD10262D107E9F62E5089A8 + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173280.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173280.html + HP EliteBoard G1a Next Gen AI Windows 11 Driver Pack + true - sp102072 - HP EliteBook x360 830 G5 Windows 10 Driver Pack - 3.00 A 1 + sp174398 + HP EliteBook G1i NB Next Gen Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 3/20/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102072.exe - 658830360 - b539dc8ac4ed88c2cda0c7dcca3ec980 - D3292D7E669564725F5DC6545270DA4F4B75B3BB247CCD21DFB435B6112D822D - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102072.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102072.html - HP EliteBook x360 830 G5 Windows 10 Driver Pack - false + 8/18/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174398.exe + 1229009304 + 732E708172D8F5F06FAA134B6546E2A5 + A5709D108B0E39945461087414D501B25405446063BC90A8973938F7F06FB41B + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174398.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174398.html + HP EliteBook G1i NB Next Gen Windows 11 Driver Pack + true - sp88413 - HP MP9 G4 Win10 x64 Driver Pack - 1.00 A 1 + sp151781 + HP Engage Go 10 Mobile System Win11 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/20/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88001-88500/sp88413.exe - 592922928 - d261e73e7735492fdefc009ab33f3a3c - BBD1B09196BB7AD39C05CA796E7B74A553B103231FD4B19EDB5DBE14044D7439 - https://ftp.hp.com/pub/softpaq/sp88001-88500/sp88413.cva - https://ftp.hp.com/pub/softpaq/sp88001-88500/sp88413.html - HP MP9 G4 Win10 x64 Driver Pack - false + 3/15/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151781.exe + 1040300744 + a56f5765cec64d0e504674dd8b4e60ef + BE5E3BF6924F0400C222692C622BAF9487478B08A46112F1C9F4369E243F4945 + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151781.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151781.html + HP Engage Go 10 Mobile System Win11 x64 Driver Pack + true - sp138571 - HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack - 6.00 A 1 + sp96758 + HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/1/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138571.exe - 1122529616 - 80b1c26dc7983b7a1dabe4105d0026e7 - CD5D7C4673C6EF70ADD98D06F1D9104FC03661277324EFC6C5580001A19DC5EC - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138571.cva - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138571.html - HP ElitePro 4/805 G6 DM Win 10 x64 Driver Pack + 5/29/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96758.exe + 900475256 + ee96507bd1530ae92e134ab781320a03 + A717EB418E19F452950A24CB30C6CF18B0AFA63308BF2CD128EEA844C8EBE6D1 + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96758.cva + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96758.html + HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack false - sp91601 - HP Probook 6x5 G4 Windows 10 x64 Driver Pack - 2.01 A 1 + sp90254 + HP Folio 1040 G3 Windows 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 8/15/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91601.exe - 575707480 - 365676fd24d21dc79c6c05b8e42d60fb - AFD7F44C928677798104272E3FD251934972E27D0A22B32DC63286EE41EFAD09 - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91601.cva - https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91601.html - HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 7/27/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90254.exe + 540762400 + 0c8aba391441c036052ad587cdc928c9 + D34A57F902B4DB0BA783275BAA525482BE008278BCABC98F009738FB15D6ED67 + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90254.cva + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90254.html + HP Folio 1040 G3 Windows 10 x64 Driver Pack false - sp136261 - HP EliteOne 800 G8 AIO Win 11 Driver Pack + sp121400 + HP ElitePro 4/805 G8 DM Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 11/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136261.exe - 821687008 - 77812496a14c772088e24b55fb12d800 - 81FF15C257DC5FA9CA1BE879545347149460D69EFFDDFEE9B4238A3B2E376CF0 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136261.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136261.html - HP EliteOne 800 G8 AIO Win 11 Driver Pack + 7/12/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121400.exe + 1118428792 + 8abd07de9645c77378bec828969aa586 + 3B68D59CF23C5D388452314D0B4D50379588E9B5ED2CD8B6FBCEDFB84E392AEC + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121400.cva + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121400.html + HP ElitePro 4/805 G8 DM Windows 10 x64 Driver Pack false - sp96782 - HP ElitePro 4/6/800 G5 AiO Win 10 x64 Driver Pack - 1.00 A 1 + sp144661 + HP Engage Flex Pro G1 Win10 x64 Driver Pack + 12.00 A 1 Manageability - Driver Pack - 5/30/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96782.exe - 738862328 - eebb0157f59933272493e925deef3d33 - 640FCE37A390965D243F9507B42AB1C637FBBF62C6A4A80CF88381123812F09D - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96782.cva - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96782.html - HP ElitePro 4/6/800 G5 AiO Win 10 x64 Driver Pack - false + 1/18/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144661.exe + 1170094944 + bdd5bd381ecdac1186e35569db0071d4 + 9EFFB77F655C156523DD87A3F3900FE2A1652D2FD77359538B75D1F8F6CFA795 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144661.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144661.html + HP Engage Flex Pro G1 Win10 x64 Driver Pack + true - sp173483 - HP ProDesk/Elite Desk Mini G1i Desktop Windows 11 Driver Pack - 5.00 A 1 + sp167339 + HP Engage One Pro AIO G2 Windows 11 IoT Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/12/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173483.exe - 2339228368 - EDB7AAF447075DD7993267B0CF0F4474 - C7A6601A1C6A6D3F226ADBCACC16C829C97B156B890F69AA91C937A86F3B2A3F - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173483.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173483.html - HP ProDesk/Elite Desk Mini G1i Desktop Windows 11 Driver Pack + 12/12/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167339.exe + 1292726488 + 487A4C4DB8EA384AD745F55A72FBFDFD + EC9F12AEAB425DB5A8B793EAE1E2E298A6ED1F02D470DE61E9D4A6DAC6ECD691 + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167339.cva + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167339.html + HP Engage One Pro AIO G2 Windows 11 IoT Driver Pack true - sp138435 - HP ZBook Power G8 Windows 10 x64 Driver Pack - 2.00 A 1 + sp92562 + HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 2/16/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138435.exe - 1217708984 - 6b6c60f3937b0f73b7ad50032931e827 - C0AF51705E5AC149B7E854BC07D656217B128FF959EC8A21044BB44988F7D6AA - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138435.cva - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138435.html - HP ZBook Power G8 Windows 10 x64 Driver Pack + 11/8/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92562.exe + 506033224 + ea8bf4e1c02c4f41c075652a534c15ca + 6EA8160DAC9C2DE5D6B10E993C3453BF0032F5E1D1E68E22EDD5945E0C3152C5 + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92562.cva + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92562.html + HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack false - sp145268 - HP ZHAN/Pro/Elite 4/6x5 Windows 10 x64 Driver Pack - 3.00 A 1 + sp170165 + HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 3/18/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145268.exe - 933538288 - 0e2b4a7c797a798cf1fd4bbf09bc377d - 85D32E04F744106D4667FD351E11BC4420BD793F4699A7D3C0831A6EECDB1F1F - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145268.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145268.html - HP ZHAN/Pro/Elite 4/6x5 Windows 10 x64 Driver Pack + 1/29/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170165.exe + 2606385576 + E8861E457156925F17E989D3E1E0A0B5 + 2EB3F2391D7DFE4BBEB291B9D9FECE14DCE9CF37A980283F36C146B0DEB71F0C + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170165.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170165.html + HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack true - sp110348 - HP ProDesk 405 G4 DM Win 10 Driver Pack - 7.00 A 1 + sp136447 + HP ZBook Fury G8 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 10/5/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110348.exe - 565774144 - 77771ada3d558be4af370d0a3f829f1a - F24E132131D7DBB4E833EF178CA9FC170FB57B25E5DCEB57EE001B7A5DF3A0AE - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110348.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110348.html - HP ProDesk 405 G4 DM Win 10 Driver Pack + 11/30/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136447.exe + 1675693936 + bcafe8bcf252ad73d0426eda4d2717dd + 4968A9A2132C8665D3CA3FD3BACC79E9C812A777AB2F5D7BE81519BEC9A1D4A0 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136447.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136447.html + HP ZBook Fury G8 Windows 10 x64 Driver Pack false - sp161460 - HP ZBook Fury G11 MWS PC Windows 11 Driver Pack - 4.00 A 1 + sp84239 + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 7/14/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp161001-161500/sp161460.exe - 1979019072 - BAD36D3610C588A07C4C979404109760 - 4D6F886C72F61A64D9FC250E8F9FE5F98B6612A136784BC2E53C60F1550815BE - https://ftp.hp.com/pub/softpaq/sp161001-161500/sp161460.cva - https://ftp.hp.com/pub/softpaq/sp161001-161500/sp161460.html - HP ZBook Fury G11 MWS PC Windows 11 Driver Pack + 12/14/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84239.exe + 1049692384 + a2b96f06d028b6b776867305ccc7e459 + 0915D48905D3A17CA02ABAE80D5D48DE981E6F643B332A27C16A0DB30003566E + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84239.cva + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84239.html + HP ProBook 4x0 G5 Windows 10 x64 Driver Pack false - sp112207 - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack - 2.00 A 1 + sp151792 + HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 1/11/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112207.exe - 1651058824 - 588b905dc9c20fb398b826634935ff29 - 91F246631122FDC54A144157C173E97722CE33A3C349874CBE60A450ABD47FDF - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112207.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112207.html - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack - false + 3/25/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151792.exe + 1164102512 + e2786315b93f21aa960e4d0731371117 + EC1F4E7B0D59084E74CC157C84D22CC647232E42880FA165621F3F8F1FF8B7B3 + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151792.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151792.html + HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack + true - sp161707 - HP EliteStudio 8 AIO G1i AI PC Windows 10 Driver Pack - 2.00 A 1 + sp149195 + HP ZBook Power G10A MWS Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 7/31/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161707.exe - 2716245976 - C92BC6B234818A2DA4FCB91C62EEBB1F - 43A4359DD20CE45322B71A76FA9E14868FCF491CDE63999C26C6C4D88588B3BB - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161707.cva - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161707.html - HP EliteStudio 8 AIO G1i AI PC Windows 10 Driver Pack - false + 9/7/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149195.exe + 1669827432 + 493b65f2f922383537c39e5fbd4d153f + 0647BC88C17E867F6A3AB601FEBBE0902D612A7781496C2A1B135CD3362CAF45 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149195.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149195.html + HP ZBook Power G10A MWS Windows 11 Driver Pack + true - sp103622 - HP EliteBook x360 830 G5 Windows 10 Driver Pack - 4.00 A 1 + sp113578 + HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103622.exe - 632718904 - 97B398002B6832A7A0701CED347858E1 - 360E24C3D45773F8AB179C2340D3F8E9FBF979B38F565BB52BE2648B692842A9 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103622.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103622.html - HP EliteBook x360 830 G5 Windows 10 Driver Pack + 5/3/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113578.exe + 1116523344 + dee0a66126a46b03a74f7e397e2bfc20 + 16A29A971BDD6D6AF0AB6752EED93E2B88CAD3CC505EA577C05F98B59E5B16F6 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113578.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113578.html + HP ProBook 4x5 G8 Windows 10 x64 Driver Pack false - sp173539 - HP EliteDesk/ProDesk Z1 G1i Windows 11 Driver Pack + sp168418 + HP Engage Flex Pro G2 Windows 10 IoT Driver Pack 7.00 A 1 Manageability - Driver Pack - 6/10/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173539.exe - 3881492080 - 46DA45DC38D392F11833A5ECED04CBAA - E21205D0CA2BE2E606A911B8666C6E63B6A19EF966C060460D498B752774CA26 - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173539.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173539.html - HP EliteDesk/ProDesk Z1 G1i Windows 11 Driver Pack - true - - - sp174366 - HP ProBook 4 G1ah 14/16 Windows 11 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 8/21/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174366.exe - 1224120000 - E83BCF7EAA65F38C5F0C1D2C895E5CAF - B08783846C3F22B444B11A7EF4DBAEA45ECD6C721C68CBB681E01317AAEE0773 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174366.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174366.html - HP ProBook 4 G1ah 14/16 Windows 11 Driver Pack + 12/16/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168418.exe + 2490567520 + 1AF553A05C5E34018A6225321D0D8412 + 40B618AC3F2DD7762F797E4753802C2640FB56A151736E66DDEDEB1682C55944 + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168418.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168418.html + HP Engage Flex Pro G2 Windows 10 IoT Driver Pack true - sp149054 - HP Pro x360 Fortis G11 Windows 10 x64 Driver Pack - 3.00 A 1 + sp147884 + HP ZCentral 4R Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 8/31/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149054.exe - 853581448 - 25ab202ac9fb327ea274edd2fbb5b686 - 26B56A389DDA84E9BD23B0E750B7AB0559A240308BF05FA9AFD3C225FBF004F1 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149054.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149054.html - HP Pro x360 Fortis G11 Windows 10 x64 Driver Pack - true + 6/22/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147884.exe + 1680920248 + 1d691ba34fd8d9cc46aa5a737b78185e + 57BC33E27183CE9AF0D6BA92D28C629D9CC9F9BFE0000E91A99B677735A021E6 + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147884.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147884.html + HP ZCentral 4R Windows 10 x64 Driver Pack + false - sp101746 - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + sp173107 + HP Pro/EliteBook 4/6 G2a/G2ah NB Windows 11 Driver Pack 2.00 A 1 Manageability - Driver Pack - 2/25/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101746.exe - 587266672 - 29cf5c492b41f978eb25e463ff21876d - F742EADCD491A4B7FC77AF1B58400FCFBB0A03CCC7A1FA93BD09CE34E134211F - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101746.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101746.html - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack - false + 5/15/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173107.exe + 1486121856 + F180689E0CBADEE01086F6B9E1992B9E + CCF8A3E34143AA31F66AC5497D19583A9DCB1BF0C169284E2200058C9D7E559B + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173107.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173107.html + HP Pro/EliteBook 4/6 G2a/G2ah NB Windows 11 Driver Pack + true - sp140881 - HP ZBook Fury 15/17 G7 Windows 11 Driver Pack + sp112210 + HP ProBook x360 11 G7 Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 7/1/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140881.exe - 1343492288 - b5df66dd57759011af1db7eb11877f81 - C66B5D27283239E202888C3C3FD2EF5BE4C0D7F481A32CB260EBD5E29462C39C - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140881.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140881.html - HP ZBook Fury 15/17 G7 Windows 11 Driver Pack - false - - - sp112089 - HP Probook 6x0 G8 Windows 10 x64 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 1/5/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112089.exe - 1660242784 - 8b9cf2e808cf91cfc01400ce1ec043c9 - 9FDC19777CE51694E1E4BBD03F974CB271C780000F8956326B69BAFAE4A8B5DF - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112089.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112089.html - HP Probook 6x0 G8 Windows 10 x64 Driver Pack - false - - - sp136455 - HP Z2G4 Windows 10 x64 Driver Pack - 6.00 A 1 - Manageability - Driver Pack - 6/25/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136455.exe - 1435272472 - 6e7cd13a00696e6efc5ec104b31d18bd - 70D241A1383700C0F1AC1852735D8F9A16AB4261C4F1D625E97AD80936951106 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136455.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136455.html - HP Z2G4 Windows 10 x64 Driver Pack + 1/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112210.exe + 538373680 + fdd8b206dd8f0912e9b03931fe04b795 + D8F049A58C8B1D1F0775095C67F280574345CB0E117F7A434AC4B90C2BE7CB3A + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112210.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112210.html + HP ProBook x360 11 G7 Windows 10 x64 Driver Pack false - sp149567 - HP Elite Dragonfly G4 Windows 11 Driver Pack + sp173804 + HP EB/ZB 8 G2a NB/MWS Windows 11 Driver Pack 3.00 A 1 Manageability - Driver Pack - 10/5/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149567.exe - 1022598232 - 3b372fa2efe09bb2e9fddfd3a461c144 - C7EF27E364EBCC4A1EA83D8F56C2EFCBB190148D3022B28222E8CE2F92EE53FD - https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149567.cva - https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149567.html - HP Elite Dragonfly G4 Windows 11 Driver Pack + 7/9/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173804.exe + 1233902536 + 3B5B69FE01A15F637906A37B2D680D8D + BD80CF524DA6931F3FEAB95A40A88F446A90342E99FC8E9C8E77FBA0E22D4CCF + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173804.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173804.html + HP EB/ZB 8 G2a NB/MWS Windows 11 Driver Pack true - sp112926 - HP EliteBook 8x5 G8 Win 10 x64 Driver Pack - 1.00 A 1 - Manageability - Driver Pack - 3/9/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112926.exe - 562563840 - b13cfe55298540041a81ff1a5240f5db - 876F1113F5B25E54EEE5ED6F0D1B932BF94AFC382A6DA8A3C6714D84CB345567 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112926.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112926.html - HP EliteBook 8x5 G8 Win 10 x64 Driver Pack - false - - - sp114258 - HP ProDesk 405 G4 DM Win 10 Driver Pack - 9.00 A 1 + sp99719 + HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/24/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114258.exe - 397317544 - d5b4f5150a4a5e371a985d94c1b636c0 - 16E805344E4B1B87D4AE10B1415B4B4FC16DB50334ADBF014F34328D43EC0BF2 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114258.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114258.html - HP ProDesk 405 G4 DM Win 10 Driver Pack + 12/9/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99719.exe + 814213376 + 2196cca0455bd7befb71b8d935bf8346 + 54BC09AF7D48A8B25C9ABE857B11885241FBBA840045B36672AA3A7B6467BB33 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99719.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99719.html + HP Probook 6x5 G4 Windows 10 x64 Driver Pack false - sp80523 - HP Folio 1040 G3 Windows 10 x64 Driver Pack - 7.00 A 1 + sp121402 + HP ZBook Fury G8 Windows 10 x64 Driver Pack + 2.00 A 2 Manageability - Driver Pack - 6/21/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80523.exe - 447891624 - 10a7ae2943db4f5411ba8568824a78ef - 644F3770A8E9E287F86A964F23A384612BC7750134DFE450560CE83FEF064225 - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80523.cva - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80523.html - HP Folio 1040 G3 Windows 10 x64 Driver Pack + 7/12/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121402.exe + 1706492104 + f8c88474f5535ba97490def879015ae8 + 0E818DAD3767BDF11440FC4F09F5779D8ED86EB47E985F88F02A98717A16D37C + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121402.cva + https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121402.html + HP ZBook Fury G8 Windows 10 x64 Driver Pack false - sp105884 - HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack + sp111581 + HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack 1.00 A 1 Manageability - Driver Pack - 7/2/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105884.exe - 900319816 - 5debd84093b545f87c5503c6029ca545 - 2F3F3B8CA919E1238DA643F56EC9545B1BB16C59D4C4AE86CC5B20A86151EE87 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105884.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105884.html - HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack + 12/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111581.exe + 1213481008 + 953f9d2d395e767ddc5aff0a0f3fb528 + EECC3F09C2E430C1D48A3F156A7AEC1922BC852DC97DA00081C28F1005F1F7F0 + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111581.cva + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111581.html + HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack false - sp145708 - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 10 x64 Driver Pack - 4.00 A 1 + sp144988 + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 4/21/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145708.exe - 2822576448 - 58c03558580bf6490dc64d3bc6b9604c - 3A928C6CF74E7668A0D5B1D15B8EDD2B02E3913DAE1210C9D7C96DA21D5E3378 - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145708.cva - https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145708.html - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 10 x64 Driver Pack + 2/24/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144988.exe + 1932939584 + 13cd9acc0905294bd078ce90a8b041f3 + E3C4433BA20E7716D7D65D326CEDC044B5E6598BA8F6E381DE5394AF95DF1357 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144988.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144988.html + HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack true - sp77225 - HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack - 1.00 A 1 + sp114238 + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 8/22/2016 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp77001-77500/sp77225.exe - 516323304 - 63211795340609598f6c3e9ca7d336f6 - 8B7DB0FB53F38509EB25DEA40274620E2102A3B15DB12780A73AD3FDEFEC38D2 - https://ftp.hp.com/pub/softpaq/sp77001-77500/sp77225.cva - https://ftp.hp.com/pub/softpaq/sp77001-77500/sp77225.html - HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack + 6/22/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114238.exe + 1471309368 + 428c87932c4ca6116c769ebeb2a9748b + FD549AB275161DD2FF2B5051C2B8FB84F7317E10DC08C72B87640AD2D63D88E0 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114238.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114238.html + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack false - sp144956 - HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack - 5.00 A 1 + sp103584 + HP Zbook 15/17 G5 Win 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 2/22/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144956.exe - 1263788968 - c70036362aa1aaa467242026bb91c398 - 1A19212D14ECD443FAF6F478436C942C0C32799213C9A4D94CA0F066163FF930 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144956.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144956.html - HP Elite x2 G8 Tablet Windows 10 x64 Driver Pack - true + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103584.exe + 954825632 + 90c9efbc98815bf70edb1cf1ffa1c8b5 + ACBDD7D1847C8E5E20675DE2DCC8DD9C01C0FB3614AB2EE8E3BA3D72A5FDBDB2 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103584.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103584.html + HP Zbook 15/17 G5 Win 10 x64 Driver Pack + false - sp111171 - HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack - 5.00 A 1 + sp144912 + HP EB 8x0 1040 ZB G9 MWS Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 11/18/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111171.exe - 574650288 - 75c775ad8f8826829907363675cb3bc6 - B99C8431937975644EFC975C5EF6FCB2D2314D6BE48A1911A9DE2BDACD2B2D0E - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111171.cva - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111171.html - HP EliteDesk 705 G5 DM Windows 10 x64 Driver Pack + 2/24/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144912.exe + 2507886208 + d6e501602e579038895e0ca54ecc1301 + 0651529DE6672656C057A63308D5EDAD7851BA6D959135279C121813D8E43685 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144912.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144912.html + HP EB 8x0 1040 ZB G9 MWS Windows 10 x64 Driver Pack false - sp113168 - HP EliteDesk 800 G8 DM Windows 10 x64 Driver Pack - 1.00 A 1 + sp110210 + HP Z4G4 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 4/6/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113168.exe - 1190369584 - fa9aed3c86733de41fde0849ed72ac3b - F082A54F546ECEB2EFA456E9625C3C37B6D90A168732230DCFF8ED44DC63DB5C - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113168.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113168.html - HP EliteDesk 800 G8 DM Windows 10 x64 Driver Pack + 9/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110210.exe + 993618120 + 8d1a951e000fbe03d8ae28f6536ec645 + EE8044AEF923FBC405953B2718B595192F09658D6B515AA0E9A11C43FD62FAA4 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110210.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110210.html + HP Z4G4 Windows 10 x64 Driver Pack false - sp89053 - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack - 3.00 A 1 + sp85475 + HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 7/26/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89053.exe - 1005889456 - 16c0f19b9433b3727816000e5b00bf0d - AA5CC4A30881FF4886959811E0736377A72C9F241E8C6C4CD293A39D3C293EBE - https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89053.cva - https://ftp.hp.com/pub/softpaq/sp89001-89500/sp89053.html - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + 2/20/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85475.exe + 1055770520 + 5e17c4c45835ea399b7320911687f319 + 8B6608F4F22455426CA4D6D3A5E68D131AF0143D2B7E1BFEA7240412F8E1CD13 + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85475.cva + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85475.html + HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack false - sp142735 - HP ZBook Power G8 Windows 11 Driver Pack - 2.00 A 1 + sp93466 + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 4/16/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142735.exe - 1225949000 - 3bf7132904d70189f5d814a3cd497c7a - D2D80F2CB2052A662E5479AEE78FDE7E080D161090C854C9AF715DFE2CBDDD3D - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142735.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142735.html - HP ZBook Power G8 Windows 11 Driver Pack + 1/8/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93466.exe + 730278424 + 1821f3b4e3a231007ab6bf29ce5d084b + 9B91902411EC40F382F000F334EF6F8C895BFD8DDCEA09A0363AEB0422E4C460 + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93466.cva + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93466.html + HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack false - sp101918 - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack - 4.00 A 1 + sp142734 + HP Probook 6x0 G8 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/14/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101918.exe - 863083800 - 251e75c954721013995115a6caae568f - 974C59737B1FA3E14A2B12FB9C4D68032D2BC4D263FA61DA950B7EB06FF9B288 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101918.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101918.html - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 9/21/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142734.exe + 1276964016 + 7eb79b87de6e8445fde1c51c76793b09 + CE9E7F37ED0834FDACD8B57A55D968A0BD51EEF678C9235DD61E5BA5492F44CC + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142734.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142734.html + HP Probook 6x0 G8 Windows 11 Driver Pack false - sp108884 - HP ZBook Power G7 Windows 10 x64 Driver Pack + sp72467 + HP Z1 G2 Workstations Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 9/1/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108884.exe - 1489450416 - 97cef7ce1d9343b20b77b1e7df9bb147 - 8FB916AF4BE3AF8EB437A99F8AECE072A353127E134551DA51C0BFEF01E5D76B - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108884.cva - https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108884.html - HP ZBook Power G7 Windows 10 x64 Driver Pack + 8/16/2015 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72467.exe + 517273632 + 47fe122f41563babaa0993915783f279 + 2CE2C4623C4E4351E722A89C174A335887BF04526346623B89FF4B3780701096 + https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72467.cva + https://ftp.hp.com/pub/softpaq/sp72001-72500/sp72467.html + HP Z1 G2 Workstations Windows 10 x64 Driver Pack false - sp168444 - HP EB/ZB 8 G1a/ak NG NB/MWS Windows 11 Driver Pack + sp150832 + HP ZBook Studio G9 MWS Windows 11 Driver Pack 5.00 A 1 Manageability - Driver Pack - 12/17/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168444.exe - 1117245528 - 97A54A38FA237E8851F32AE5636BB0D4 - 518F01250BC79CAE59350362919A3E46D749F78AA93BB23F7059DE4D295C3BCD - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168444.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168444.html - HP EB/ZB 8 G1a/ak NG NB/MWS Windows 11 Driver Pack + 1/10/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150832.exe + 1535767688 + 77c6baae3bc1442d098b3eedb3a469a9 + 05F205C9FADF608970B1E594BAB57DC66DD6BED2B5DBDD98867ED5F3872D962D + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150832.cva + https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150832.html + HP ZBook Studio G9 MWS Windows 11 Driver Pack true - sp113515 - HP Z4G4 Windows 10 x64 Driver Pack - 6.00 A 1 + sp108885 + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 5/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113515.exe - 1071055776 - e4894b1134e03e98a93e946b4d64ba37 - 477EED5419E71BB678A4F277A386EEA706E9002FD754BC5A47CA01907BA69841 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113515.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113515.html - HP Z4G4 Windows 10 x64 Driver Pack + 9/1/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108885.exe + 1346866200 + 2d2c48eea430d985fb21094c5a144cb1 + ADB7F105E246F35FCD07A71A6DD9A8ADADC3D78713DF0E287C0F4DBFC29532F9 + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108885.cva + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108885.html + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack false - sp110349 - HP ProDesk 405 G4 SFF Windows 10 Driver Pack - 5.00 A 1 + sp102027 + HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 10/5/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110349.exe - 1021390624 - b92ccd53efbdb529351b418811e6a772 - A51D32008312CDC18AFBAD134C72D9DE63782D209894F4F794D53F9328E58313 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110349.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110349.html - HP ProDesk 405 G4 SFF Windows 10 Driver Pack + 3/18/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102027.exe + 806162736 + fe242a7eae05e91738d68561f2beb3a7 + 2804D86933DE124DF646183DAA47A33EAA4999ED3F46963CCF9E4DD5AD5693D8 + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102027.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102027.html + HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack false - sp101289 - HP RP9 G1 Win10 x64 Driver Pack + sp101287 + HP Engage Flex Pro G1 Win10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack 1/14/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101289.exe - 523995048 - 55d8d43331c6b2351b004ab3b58f3a5a - 661449449EC73184D6459F3A10E00419EE4F41932F0949B5B2195AF00843EC02 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101289.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101289.html - HP RP9 G1 Win10 x64 Driver Pack + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101287.exe + 775035520 + b54730a188bd5220ac78945d3ecc0e3d + 455D2F408B506A03A06F2EBE61B79EF77EB3C924A159BF31F6E61F68A4D85850 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101287.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101287.html + HP Engage Flex Pro G1 Win10 x64 Driver Pack false - sp153074 - HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack - 6.00 A 1 + sp168475 + HP ZBook Ultra G1a MWS Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 5/27/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153074.exe - 1041220968 - 964434daf06f6660369e4cc4a6407d03 - DDE77851FDE57761F72418A3FC309127317073151C134E5841962B1C5A3EF309 - https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153074.cva - https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153074.html - HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack - true + 12/18/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168475.exe + 1137349240 + 86389DB9D3842199430A6D0EB88357CF + CF3C87F234708B6E502177E68D10BE3590562C5259471D0C931E939FD89966BB + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168475.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168475.html + HP ZBook Ultra G1a MWS Windows 11 Driver Pack + true - sp114220 - HP EliteDesk 705 G5 Windows 10 x64 Driver Pack - 12.0 A 1 + sp145964 + HP Engage One Essential AIO IoT10 2021 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/17/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114220.exe - 948192024 - 4ca290b99b969696161be89619ca5a64 - 12327919BAA7F0170CF17AA9EA73983B863D9808C669BA1C1A711ECD5530C844 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114220.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114220.html - HP EliteDesk 705 G5 Windows 10 x64 Driver Pack + 4/11/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145964.exe + 498656952 + cef777f514faa8553e42ee00f2738ec5 + 47F093778FB6D93FCF954E45B299FC3444798CDDA83253BC6207072D4D85E134 + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145964.cva + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145964.html + HP Engage One Essential AIO IoT10 2021 Driver Pack false - sp99814 + sp149088 + HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 9/4/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149088.exe + 1580264856 + 7bb8421a071d04892d9cc59adbb80964 + B9E515DBF58E98B35FEA6164391B3DE1110E3860DF82C692BF676BDA3E2C486E + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149088.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149088.html + HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + true + + + sp144659 + HP Engage Flex Pro G1 IoT10 2016 Driver Pack + 10.00 A 1 + Manageability - Driver Pack + 1/18/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144659.exe + 977821896 + fdef50e4407c75e1128bcb7646cc1575 + 5BA228D9B517DBB3D02B6A4AB9275F169FDAE606AB6315EEAA689CD6221AF9BF + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144659.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144659.html + HP Engage Flex Pro G1 IoT10 2016 Driver Pack + false + + + sp110313 + HP ProBook x360 435 G7 Windows 10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 9/30/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110313.exe + 974477416 + f7a4d214fb2134ee05dd1fd4832c4cbe + 24E8C5296777C0EA844C20B4049835DD8A8533B669F2E07544F40A696B48FEB2 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110313.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110313.html + HP ProBook x360 435 G7 Windows 10 x64 Driver Pack + false + + + sp142792 + HP EliteBook x360 1030/40 G8 Windows 11 Driver Pack + 3.00 A 1 + Manageability - Driver Pack + 10/15/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142792.exe + 1281992344 + 427b066253b91196318970e4faab5d4c + 49F184ABD28400F53F9C5D65E63311673CEFDB06AEE274A0A7593C5696AB7631 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142792.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142792.html + HP EliteBook x360 1030/40 G8 Windows 11 Driver Pack + false + + + sp112646 + HP MP9 G4 Win10 x64 Driver Pack + 9.00 A 1 + Manageability - Driver Pack + 2/9/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112646.exe + 441546136 + 56e8519b62782e645c6c366e7eadac60 + 42512C8AA435DA75662E62611F42F9316BA29124395CEF4E339690A659852DC2 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112646.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112646.html + HP MP9 G4 Win10 x64 Driver Pack + false + + + sp99720 + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 9.00 A 1 + Manageability - Driver Pack + 11/14/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99720.exe + 890260152 + bf4ced07dd7348f601ce1d177af7bdce + D8FA514DA8DE294D61D48528E7123E1C51D3E858A6003625DF334EB4B689EE99 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99720.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99720.html + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + false + + + sp105672 HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - 18.0 A 1 + 19.0 A 1 Manageability - Driver Pack - 10/25/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99814.exe - 961073272 - a14372c2394f3f6e8c28c54e8e7c1e5c - 3B4B351CA9967DDF6181915815E915B7E0A992A678CFAECA56425B79F02B57E5 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99814.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99814.html + 6/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105672.exe + 975426896 + 062c23c5bc591d728a1554fc92357950 + 03EE77C15EDE7B538E80BD95341A16C5D0C0E50173A64BFBFE9571FA69CF1120 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105672.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105672.html HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack false - sp114045 - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack - 4.00 A 1 + sp123503 + HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 5/28/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114045.exe - 1334838632 - bbf25a9e43a902f37cd9e92b4bfb54f4 - 538C31EFFE888581DCF307228503F5588907EB6F2E045E64A2DC423601FB4417 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114045.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114045.html - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack + 7/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123503.exe + 1528202336 + 225ce361c31a8012cacbdeb63927a910 + BCB65DED88D0ABAA7B4B81C8B45882048CD25BB985F0B0198D3798220E05C814 + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123503.cva + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123503.html + HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack false - sp105671 - HP Elite Slice G2 Windows 10 x64 Driver Pack + sp161789 + HP Engage Flex Pro G2 Win11 x64 Driver Pack + 7.00 A 1 + Manageability - Driver Pack + 8/7/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161789.exe + 2274813368 + 323431EB00D25F04603D735F07FA5D8A + 166AFF95A29CBBC2CA239C2CA2E9B73E395BCBAA808C13B1DEB1D67E1E975223 + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161789.cva + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161789.html + HP Engage Flex Pro G2 Win11 x64 Driver Pack + true + + + sp105920 + HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + 15.0 A 1 + Manageability - Driver Pack + 7/5/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105920.exe + 601163752 + e43728b0c011e6b00ba0b3097d9620b7 + 1D80166C2F417E5F945BA756BAFF8B9FEA2530FCA5ABC53669F767F2B3C05FF3 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105920.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105920.html + HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + false + + + sp172357 + HP Z2 Mini G1a Windows 11 x64 Driver Pack + 3.00 A 1 + Manageability - Driver Pack + 4/17/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172357.zip + 1479460848 + 4FEA3D50DA458EC8539BBF860054EB19 + D9F7D2C883D75E9E25BB0710984A0DD7E961BD29D3A2F2F9CCA011A01FC6AB94 + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172357.zip + https://ftp.hp.com/pub/softpaq/sp172001-172500/sp172357.html + HP Z2 Mini G1a Windows 11 x64 Driver Pack + false + + + sp101912 + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 6.00 A 1 + Manageability - Driver Pack + 3/17/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101912.exe + 793872392 + 1b919db8de50bde4254034b880baad12 + 9CB0CA446CFBDFA0F3C86ACCC4A40C0738069EE57EDD2D6823E1BA833CC1535F + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101912.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101912.html + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + false + + + sp114212 + HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack + 6.00 A 1 + Manageability - Driver Pack + 6/17/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114212.exe + 1608954216 + ac98fd9e94d8b744b6f5dc98ca6d719b + B9A23A401867CFADE80AB8AC5BCC94B769DD20F53C85957DA8F45001C12D8151 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114212.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114212.html + HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack + false + + + sp107648 + HP ProBook 4x5 G7 Windows 10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 8/17/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107648.exe + 437285168 + 9da32a025c6d8105a6f464597c28af34 + 42604271C0954621190A3A3DFFE43BB1352882786251004FD7FF4753408296AE + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107648.cva + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107648.html + HP ProBook 4x5 G7 Windows 10 x64 Driver Pack + false + + + sp80257 + HP Z240 Windows 10 x64 Driver Pack + 06.2017 C 1 + Manageability - Driver Pack + 6/15/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80257.exe + 906813424 + 81c4a2bb8a7b916ae866fc94b2529d2e + AB8BD1BF4205C0BD0E42096CCE20D743DB410CACA333A1C6D5B61B58CA7B9674 + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80257.cva + https://ftp.hp.com/pub/softpaq/sp80001-80500/sp80257.html + HP Z240 Windows 10 x64 Driver Pack + false + + + sp112583 + HP EliteDesk 705 G5 SFF Windows 10 x64 Driver Pack 11.0 A 1 Manageability - Driver Pack - 6/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105671.exe - 489995328 - 6189d7668303353c0cdc3848e91a64d4 - FDFA24267B10838234E625CF4618AC36954B356D6A90F82FA38442E74C7031A9 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105671.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105671.html - HP Elite Slice G2 Windows 10 x64 Driver Pack + 2/1/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112583.exe + 901612064 + e80a9b516cb962e39e7be47f49e36793 + B2D974AA4C9A6D2F9CF7F00A4B2F1348A656D3408A41D4C875F1DA4432146463 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112583.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112583.html + HP EliteDesk 705 G5 SFF Windows 10 x64 Driver Pack false - sp147782 - HP Z4G4 Windows 11 x64 Driver Pack - 5.00 A 1 + sp103581 + HP ElitePro 400/600/800 G4 PC Windows 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 6/12/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147782.exe - 1486910480 - 95171bd51cc7422c9cc03d765a62333a - 041AE54A0532D74A9B69F282AEE71CCD1AA4CCBD293EFDED45C1705962EDF5B6 - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147782.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147782.html - HP Z4G4 Windows 11 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103581.exe + 417375016 + e9dd00dd7bb7a01132b58e91ea6c1b0c + 1C1E7C346187F62C02A7D60FB6541877E8F2F942E65B676B0EE108DA0FCEC4CA + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103581.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103581.html + HP ElitePro 400/600/800 G4 PC Windows 10 x64 Driver Pack false - sp88653 - HP Z2 Mini G3 Windows 10 x64 Driver Pack - 7.2018 K 1 + sp84798 + HP Z440/Z640/Z840 Windows 10 x64 Driver Pack + 2.2018 H 1 Manageability - Driver Pack - 7/10/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88653.exe - 849315320 - 214f88389c5cbaf792ca4fec1a1ef422 - AF8D3566DC971D5878D613E5F467F4B4A374102DED7C0E8AC5EB2AC3F2AFB63A - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88653.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88653.html - HP Z2 Mini G3 Windows 10 x64 Driver Pack + 2/21/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84798.exe + 1048643200 + 2ba9c36f4c332b740ec1cf415e247801 + 88693928E73AAF2A13BF42F65FA71E0BC2D65D1AC46BE8316ECE594517FE1471 + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84798.cva + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84798.html + HP Z440/Z640/Z840 Windows 10 x64 Driver Pack false - sp101496 - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack - 7.00 A 1 + sp101495 + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack 1/31/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101496.exe - 819178504 - ae638cd630e179ebcf04d0874122a164 - 9D97A53A29FB150EDCDC5762CB8D19A543D34395608736EE01093C475A31FA84 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101496.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101496.html - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101495.exe + 756093056 + dd68f93b1fad79a6384075aabcca868e + 419FC15B4B6703A9727881A39D0E7990E1732E814FA5F345B734E40103FE8205 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101495.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101495.html + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack false - sp102028 - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + sp157843 + HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack 9.00 A 1 Manageability - Driver Pack - 3/18/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102028.exe - 823439688 - 62b4180f1ef22f961b42a79261e83394 - E9B98C1DE46E2B16F6BA445BD37925596CCE9B91D73C97C067D0C4DDC414C1BA - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102028.cva - https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102028.html - HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + 12/3/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157843.exe + 3051982312 + 5EA2E9CC807B676372FE9A59B636754F + B209F4176467E11A911F2363BC325302AB92AB85F9E6028DDEE8D89BD8C06B71 + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157843.cva + https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157843.html + HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack + false + + + sp85218 + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 1/31/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85218.exe + 996666624 + e88dbe591be7d5189260396e4af8576d + F615205BFE6827A377A0A8410B586562E1B1500DE6273B5E4E7ECEEAD827FB80 + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85218.cva + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85218.html + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + false + + + sp92270 + HP RP5 5810 Win10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 10/22/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92270.exe + 646467080 + d914ecc7cc20c24ab50c512b964bf985 + 13754F59B8300AE5423A94AA1B8CF22B98489E5CE96C33790A3CC9F0A419707D + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92270.cva + https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92270.html + HP RP5 5810 Win10 x64 Driver Pack false @@ -9340,6 +8875,21 @@ HP ProBook 4x0 G7/ZHAN G3 Windows 11 Driver Pack false + + sp102028 + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + 9.00 A 1 + Manageability - Driver Pack + 3/18/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102028.exe + 823439688 + 62b4180f1ef22f961b42a79261e83394 + E9B98C1DE46E2B16F6BA445BD37925596CCE9B91D73C97C067D0C4DDC414C1BA + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102028.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102028.html + HP Elite x2 1013 G3 Windows 10 x64 Driver Pack + false + sp155214 HP ProBook x360 Fortis 11 G9 Windows 11 Driver Pack @@ -9476,1084 +9026,1414 @@ true - sp169015 - HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 1/16/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169015.exe - 2396144760 - FF5F740D5D7F1AA73ADFC6C61E25FC5B - C2429F52DF394AFEE500C13E9F0B613A1060DA51C9F903757B4943540AF2E811 - https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169015.cva - https://ftp.hp.com/pub/softpaq/sp169001-169500/sp169015.html - HP ZBook Power G11A Mobile Workstation PC Windows 11 Driver Pack - true - - - sp112022 - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - 11.00 A 1 + sp110626 + HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack + 1.00 A 2 Manageability - Driver Pack - 12/31/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112022.exe - 734029488 - af1ab9f7ad24c8d6e974a0e8fa15caa7 - 75180396A6B200AFCBCB10EAF08983DFFF75EB49EB848AACD75431939907FECF - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112022.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112022.html - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 10/26/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110626.exe + 534725648 + d6fe0cacd7a6851b47a86a163583cadc + DB2ADEBDBD325A9DDB604A6B4400A19B3B6621A65E1A4778F06A3A02FBC0B40A + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110626.cva + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110626.html + HP ProBook 635 Aero G7 Windows 10 x64 Driver Pack false - sp110397 - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack - 7.00 A 1 + sp147883 + HP ZCentral 4R Windows 11 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 10/9/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110397.exe - 980671896 - 4ef919e0fd17a129bf42df6225d712be - 122C28EAE9A65116347998B2B116300F9780C6C848CA11CB692CEE4ACD8759AD - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110397.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110397.html - HP Elite x2 G4 Tablet Windows 10 x64 Driver Pack + 6/22/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147883.exe + 1680815424 + b3a5e8340518e35721bb31bd4faae08f + 4D834CE3A44A783A169ABED680A76405909C17F83CBE9798B4F332CFF0D6E5E4 + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147883.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147883.html + HP ZCentral 4R Windows 11 x64 Driver Pack false - sp123510 - HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack - 5.00 A 1 + sp113954 + HP ZBook Power G8 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 7/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123510.exe - 1429883248 - 6af906210e52487ca7481c5148fc7c13 - 9DD1CE173F395C525021D65178A71F7C9378B0EBD9CAC442594CB40955D470CF - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123510.cva - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123510.html - HP ElitePro 4/805 G6 SFF Win 10 x64 Driver Pack + 5/21/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113954.exe + 1292091128 + 2c4ea89b1882e0c3bf3b8fa7d7a55ed8 + 6D3B2C72D16C76E94AF49264B0E0044C21A3032397F289DE6C94E40C02B31CA7 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113954.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113954.html + HP ZBook Power G8 Windows 10 x64 Driver Pack false - sp110423 - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + sp145122 + HP Pro x360 Fortis 11 G10 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 10/12/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110423.exe - 1626029912 - eac4fa200e17e9aff2d36fd44f5b851d - 0B0AD0DA1D1E6C4B8DE341F19B8F36A358A7265456B6804A01A9526DE4365B75 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110423.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110423.html - HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack - false - - - sp142965 - HP Engage One G1 IoT10 2016 Driver Pack - 8.00 A 1 + 3/10/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145122.exe + 962408496 + d715d09d422c2a1f0a153e905d25e299 + 3CDD38E49CFCF9DD18932296271F8D565494A25D4D382B0F13095BA80D19A157 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145122.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145122.html + HP Pro x360 Fortis 11 G10 Windows 10 x64 Driver Pack + true + + + sp99708 + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 10/3/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142965.exe - 403110288 - 1ed0e3673d7a47354526ab78acb84080 - 90CCF5FF7CDEED85CCC503F46D0C2CC2A766E955A0461E1AE2122CC2456475EB - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142965.cva - https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142965.html - HP Engage One G1 IoT10 2016 Driver Pack + 11/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99708.exe + 848397040 + df8cccdfae4ff9eba67364e050b5f204 + B52DF648A7C3F83DBA5142FE3D3F897A3258ADAAA0E4ACEE892D9476E16C0CA5 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99708.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99708.html + HP Elite/ZBook 8x0 G5 Windows 10 x64 Driver Pack false - sp99710 - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack - 6.00 A 1 + sp91854 + HP Probook 6x0 G4 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 11/19/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99710.exe - 847736304 - c39164173a122c5d0250a93bc441f2b0 - 0781CA872AE46B90F58839C2BB52DEA86EB5811FE08A442B6C47F12FC37933D8 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99710.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99710.html - HP EliteBook 7x5 G5 Windows 10 x64 Driver Pack + 9/7/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91854.exe + 944813288 + 2c2148ea330186d0f5e4b08c3fa19fd8 + ABF7C59E8448911C04AC03FC01F1374A3F4AE4905BAFC56439788D07509A1B9A + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91854.cva + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91854.html + HP Probook 6x0 G4 Windows 10 x64 Driver Pack false - sp145158 - HP Elite Dragonfly G2 Windows 10 x64 Driver Pack - 6.00 A 1 + sp83811 + HP Elite Slice Windows 10 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 3/15/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145158.exe - 1191290704 - 9f168b413647abb1316c34960876763e - 62C663FA36E8A7E6CE45ACC2990DABCC444BD40085DF6233FD403B0B06C333B2 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145158.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145158.html - HP Elite Dragonfly G2 Windows 10 x64 Driver Pack + 11/18/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83811.exe + 418721424 + 7225be26e16121b4e8bbe5d5241cdbae + 325ABFE820C8843C5F945D8442BBA71811F672EE82211CCA9CB70986ECBDCA97 + https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83811.cva + https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83811.html + HP Elite Slice Windows 10 x64 Driver Pack + false + + + sp110458 + HP MP9 G4 Win10 x64 Driver Pack + 8.00 A 1 + Manageability - Driver Pack + 10/19/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110458.exe + 420818960 + 3c292803c0c43d8167ea87e186f7fe24 + D8B5CCF70D85824F36EAC25FE0A1234640957BC7457DA3401DFC40567A5E9E47 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110458.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110458.html + HP MP9 G4 Win10 x64 Driver Pack + false + + + sp164412 + HP ZBook Fury G1i MWS Windows 10 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 10/8/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164412.exe + 2634547432 + 23A8BAC75324280E85806EA4B12218A1 + CFB901F07A00E3411D7ADB13DCAC3C6016446175A5BEDFED0BEE45F114119C6A + https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164412.cva + https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164412.html + HP ZBook Fury G1i MWS Windows 10 Driver Pack true - sp149194 - HP ZBook Power G10A MWS Windows 10 x64 Driver Pack + sp150286 + HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 11/30/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150286.exe + 1039380912 + 769c2472dee3471a16f68804d4f4b432 + 0C46EFBA9DEA8CDC3A459C0732CD94AD7AB168D279B5349BAB251DB7E57B0757 + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150286.cva + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150286.html + HP EliteBook 8x5 G9 Windows 10 x64 Driver Pack + true + + + sp147939 + HP Pro x360 435 G10 Windows 10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 9/7/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149194.exe - 1669874344 - a35bfebb016fd043d410f321fd38bb20 - 7A53136FF62D6A6DBE9D46C3ED27DF0926550B680FD7861495A3DF40CC9F94D4 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149194.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149194.html - HP ZBook Power G10A MWS Windows 10 x64 Driver Pack + 7/6/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147939.exe + 852745128 + 5ebfcf74373c82722e70f424bd76ba69 + 069E6B7BEB6C92FDD1918E37715123F6FD365106EB528AAE538BA13908892122 + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147939.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147939.html + HP Pro x360 435 G10 Windows 10 x64 Driver Pack true - sp101913 - HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack - 5.00 A 1 + sp95432 + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 3/16/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101913.exe - 820863664 - dbe2140c2a7b0fed1c5aa2446e10c464 - 8C101FAB3B02CF8A4E18A0640DE4C226B9C83AB120EAA30C567E36E76D599F23 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101913.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101913.html - HP EliteBook x360 1030 G4 Windows 10 x64 Driver Pack + 3/21/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95432.exe + 621437848 + f4993aef972c6f863cf3c7b205ba9d30 + EC7D45BC1F18061671C33047BE7B144F47DF73834F7F04D4BFCC0C0BC1D9DD2F + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95432.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95432.html + HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack false - sp109028 - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + sp111344 + HP EliteBook x360 1030 G4 Win 10 x64 Driver Pack + 8.00 A 1 + Manageability - Driver Pack + 11/30/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111344.exe + 962796088 + 14f7a221f35943750daa1c9286e98b43 + E7426FF9EB5CECD87C1CB59BD4FD26E10FA87B93CDB68C715286A4EC53C83B5F + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111344.cva + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111344.html + HP EliteBook x360 1030 G4 Win 10 x64 Driver Pack + false + + + sp140853 + HP EliteBook x360 830 G7 Windows 11 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 6/29/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140853.exe + 1214360280 + fdc5f719daeb69883bc222dafee809cd + D96A35890215007C872AA9A70D4967FFE6E09D452BEEC543271900457FB60865 + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140853.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140853.html + HP EliteBook x360 830 G7 Windows 11 Driver Pack + false + + + sp110454 + HP RP9 G1 Win10 x64 Driver Pack + 8.00 A 1 + Manageability - Driver Pack + 10/14/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110454.exe + 541804944 + c421facdd82918eb106426902672d881 + 576340A4729118739C9174BE9C7EA9FBC09A1DFA903A17AC9269A304D4E81B80 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110454.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110454.html + HP RP9 G1 Win10 x64 Driver Pack + false + + + sp153445 + HP ProBook/EliteBook 4/6x5 G11 Windows 10 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 6/25/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153445.exe + 982367240 + 7be949d3ad8feb9990f5a21f0f1b7e13 + 8E6C270835184C96076024D25642054DEF1FB1CEF204828EE3E61A977FA1E0DF + https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153445.cva + https://ftp.hp.com/pub/softpaq/sp153001-153500/sp153445.html + HP ProBook/EliteBook 4/6x5 G11 Windows 10 Driver Pack + true + + + sp103578 + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack 5.00 A 1 Manageability - Driver Pack - 9/10/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109028.exe - 909840496 - 00f2a25d0bc94daf90556d89bd634fbe - 5B3E255B5FBA49C4B2561B3DB399D121771E43D0027249AC54DEEC5658C857FE - https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109028.cva - https://ftp.hp.com/pub/softpaq/sp109001-109500/sp109028.html - HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103578.exe + 921618616 + 0c57909ca5e213dd03a4485d190fad87 + 7F54F3C5C9A2F82CAEE0CEB28AE4B8EE8DF0FF06FE9406E9B7CB85BEB121BDEA + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103578.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103578.html + HP ProBook 4x5 G6 Windows 10 x64 Driver Pack false - sp101775 - HP ElitePro 400/600/800 G4 AiO Windows 10 x64 Driver Pack - 11.0 A 1 + sp101450 + HP ProDesk 405 G4 DM Windows 10 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 2/27/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101775.exe - 413851664 - 9a7e6f3ec48a96aeb2de40b659b307a8 - 19E38C1B5CC8FBBDDC133DEA23C278BE1A095D9BAF83E6059DB6AEEFD884B3BF - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101775.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101775.html - HP ElitePro 400/600/800 G4 AiO Windows 10 x64 Driver Pack + 1/27/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101450.exe + 358223976 + 91a260484af20c5ab32db3aab9acde89 + 5FCC2210E1E34AE44D45C9690763F46B62A19224BF2B29AD24ED1FE6FA0D7549 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101450.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101450.html + HP ProDesk 405 G4 DM Windows 10 Driver Pack false - sp114135 - HP Probook 6x0 G5 Windows 10 x64 Driver Pack - 9.00 A 1 + sp88880 + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 6/7/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114135.exe - 1524828880 - 76c3f5eb2f4fefb336a708a4f860e011 - 38DABC6EA2C4D4058350E06F580A3CBA99F7B8C88BED7933805F352EF5441E07 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114135.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114135.html - HP Probook 6x0 G5 Windows 10 x64 Driver Pack + 7/6/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88880.exe + 716498704 + dc9a712e5a3104981e18e2a8acf8bc1d + 013231C5A92CE9DB5ECB38C9C4853F315080D92ADDDF14FE19F3E4D1F267BE1F + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88880.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88880.html + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack false - sp135797 - HP ZBook 15v G5 Windows 10 x64 Driver Pack - 6.00 A 1 + sp151779 + HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 10/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135797.exe - 1005138856 - a1463fceeefefbcaf8c589013b166d5f - 83F05B1348B1DE97E9C3C9CB3F6BB2121B98ABF706E624B15D319D4A5EC5500B - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135797.cva - https://ftp.hp.com/pub/softpaq/sp135501-136000/sp135797.html - HP ZBook 15v G5 Windows 10 x64 Driver Pack + 3/15/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151779.exe + 1040300624 + 594d9c6ae46304f0416396f99f5a2317 + BE9BDB46276DF66967D1E64289E201B06D42F00AC99529297E2244E165E71158 + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151779.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151779.html + HP Engage Go 13.5 inch Mobile System Win11 x64 Driver Pack + true + + + sp100592 + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + 8.00 A 1 + Manageability - Driver Pack + 12/9/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100592.exe + 807097888 + c233f6f5d79ec06f9191e3b4f92d6a72 + 6394E192E49205C83CC6A789F4F00633D49FDB9BA4FC297F4AFECD67040CB173 + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100592.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100592.html + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack false - sp111437 - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack - 11.0 A 1 + sp113980 + HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 12/3/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111437.exe - 970378096 - dd3d41abcc4f0e674ba12e9c2d0acf04 - 21FC219B79780139799A50340A581E2CC95ABA8B85D972043ABD81F15FAFD688 - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111437.cva - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111437.html - HP EliteDesk 705 G4 Windows 10 x64 Driver Pack + 5/25/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113980.exe + 1336715096 + 0856d43f2e70fa9500d2cf594a7fee6c + 0354C74DAB93B43349D57D37FEF38230C334BA39C63A694984FA0F87F40325A6 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113980.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113980.html + HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack false - sp101288 - HP Engage One G1 Win10 x64 Driver Pack - 6.00 A 1 + sp170064 + HP Fortis Flip G1i Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 1/14/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101288.exe - 413196288 - 4dc0c29b00e00d07c8873c7ca8e2d81d - F99AAA08859449CCB38DDB33F31571501A73A3782AC77A13105EB1438D91A332 - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101288.cva - https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101288.html - HP Engage One G1 Win10 x64 Driver Pack + 1/22/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170064.exe + 1307607424 + B09328C223C1CCF282E0FEB9150D332B + 96F6B5D6DCD7FF4A758DDA35D00B8590F0B8878591C96D161A5933A557A8BD14 + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170064.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170064.html + HP Fortis Flip G1i Windows 11 Driver Pack + true + + + sp114120 + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 8.00 A 1 + Manageability - Driver Pack + 6/4/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114120.exe + 1435067520 + 7e8428673dab1880c2f3bba19f9fa209 + A66BB6A4ADFD2EE588EF73205527626426EE4E26BCBA8A03539BDF418347C472 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114120.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114120.html + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack false - sp168480 - HP Engage Flex Mini Windows 11 IoT Driver Pack + sp91373 + HP Engage Flex Pro G1 Win10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 12/18/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168480.exe - 942928528 - 384437B38EBB0D94543D001EA4059044 - FD914D91FA901934A791B8FC9FE81A39F1BC98BF23AE5637E480230A0D444225 - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168480.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168480.html - HP Engage Flex Mini Windows 11 IoT Driver Pack + 9/13/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91373.exe + 1069692464 + afa9171e79f40a34c154047fed7c509d + D20ACFAA834D06517EB4A756936AC7F2F2F62E23EFD6AC4F66CFFFEE636DD636 + https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91373.cva + https://ftp.hp.com/pub/softpaq/sp91001-91500/sp91373.html + HP Engage Flex Pro G1 Win10 x64 Driver Pack + false + + + sp168962 + HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack + 10.00 A 1 + Manageability - Driver Pack + 1/13/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168962.exe + 2597799912 + 3DA636CBF1ECA15A5ED1D8F527BBF24B + 66C05D5CD25D3ED3198696E5501BE392D478964BA052151B7021374D4AF8C0D2 + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168962.cva + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168962.html + HP ZB Firefly/EB x360 8x0 MWS/NB Windows 11 Driver Pack true - sp160149 - HP Engage Go 13.5 inch Mobile System IoT11 2024 Driver Pack - 1.00 A 1 + sp83810 + HP EliteDesk 705 G3 Win10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 6/10/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160149.exe - 1368960152 - A5280CDF8BC28DE5AC13544C2258743F - B16EE1C08EFA34516B0D420A1772248C91E4487E6660318BF0FCFE448918D1B8 - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160149.cva - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160149.html - HP Engage Go 13.5 inch Mobile System IoT11 2024 Driver Pack + 11/18/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83810.exe + 752907528 + 5fb9dfede8aafb05a89a5ce2e5563067 + 3E6AE2A134C3EC5F6F0191886C732421244037C9FDD6F120B5E0FA5588D56E99 + https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83810.cva + https://ftp.hp.com/pub/softpaq/sp83501-84000/sp83810.html + HP EliteDesk 705 G3 Win10 x64 Driver Pack + false + + + sp114269 + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + 14.00 A 1 + Manageability - Driver Pack + 6/25/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114269.exe + 1672904048 + 014d2020fccb4e2d9c44133aa8798425 + 2145E0F5C436AACC45A32DCD186DDC195F3B8F4A62B1FB6D5D1C17687DB1ACB7 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114269.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114269.html + HP Zbook 15/17 G5 Windows 10 x64 Driver Pack + false + + + sp168731 + HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack + 10.00 A 1 + Manageability - Driver Pack + 1/5/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168731.exe + 2004336480 + 0720C9D06586E3254DBB33115DB001BD + C109B2BEABF3A20600828A8493733315FE9C4E2702E6EED51098A8AA04620E6B + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168731.cva + https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168731.html + HP ProOne 440 23.8 G9 AIO Windows 11 Driver Pack true - sp103610 - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack - 11.0 A 1 + sp142908 + HP ProBook 4x0 G8/ZHAN G4 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103610.exe - 683147368 - be4810f4b4202c56fc5660e155d836fe - 4656B9F13A9D6257337103DF1D727B19B84EB7A51E1337052D3593FC0D8F8879 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103610.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103610.html - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack + 10/7/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142908.exe + 1298060736 + 4d3a123d8205f7fd5a669a50677e8c96 + 65A55D5DB573679D0FCE48B5CF2BEA68B08A15B9CDD78D8CBF2CF4CF5EC6225F + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142908.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142908.html + HP ProBook 4x0 G8/ZHAN G4 Windows 11 Driver Pack false - sp157671 - HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack - 9.00 A 1 + sp146391 + HP Z2G9 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 12/4/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157671.exe - 2011622232 - 073F3826544276EE38F5EC1896C01CDC - EE5082FF28DDFC9563B7400505F016CB1C4F5DB8EAC47A531F75E72028531234 - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157671.cva - https://ftp.hp.com/pub/softpaq/sp157501-158000/sp157671.html - HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack + 4/18/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp146001-146500/sp146391.exe + 3162207144 + e79bf077ae14a93672cd076a689407a1 + 228228B34C4372E1884BA03BCAB328D1C30D4B5CCA4BC4FB9620BF3F8BDA8211 + https://ftp.hp.com/pub/softpaq/sp146001-146500/sp146391.cva + https://ftp.hp.com/pub/softpaq/sp146001-146500/sp146391.html + HP Z2G9 Windows 10 x64 Driver Pack false - sp143649 - HP ElitePro 6/8x0 G6 PC Win 11 Driver Pack + sp144873 + HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack + 8.00 A 1 + Manageability - Driver Pack + 2/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144873.exe + 2097523360 + fb094e562805d9fcb753c04e1060c5d5 + 5D78D22B9672744DFF73EF810C1A033423DC39DCFC895FB05289F65A8F88C1BF + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144873.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144873.html + HP EliteOne 800 G6 AiO Win 10 x64 Driver Pack + true + + + sp114161 + HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack + 6.00 A 1 + Manageability - Driver Pack + 6/9/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114161.exe + 1702525096 + 60a521a44053671ecfab3370261f3238 + 688913E21B3711A4BF1CA5354F9E45C855B7566854A89823FD61D9605FDCF502 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114161.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114161.html + HP Elite/ZBook 8x0 G6 Windows 10 x64 Driver Pack + false + + + sp114158 + HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 6/8/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114158.exe + 572739648 + c0cbcf76b3155c9d5bf69a7625c5bd7a + 97F3086BC1EA5444C0B3F4BDD7AF30A0A9980B34AF59D854188D247CFFD033D2 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114158.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114158.html + HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack + false + + + sp167307 + HP EliteBook 1040 G11 Windows 11 Driver Pack 4.00 A 1 Manageability - Driver Pack - 11/26/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143649.exe - 2750204664 - 53ab8a3dbc020a7323b127585c713900 - BB07CF982FEE4CE49DCFDD4E668A053E5E0E7F12EE6641EAE0437C9431A32406 - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143649.cva - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143649.html - HP ElitePro 6/8x0 G6 PC Win 11 Driver Pack + 12/11/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167307.exe + 2560566056 + 9AECAD0BC1AEA84911EEE2C8C3D0BEF8 + A195BB225EF2A09846394CD476CA3737FCF91E9DDEB4F4B0C8B60E53126775DD + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167307.cva + https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167307.html + HP EliteBook 1040 G11 Windows 11 Driver Pack + true + + + sp103984 + HP EliteBook x360 830 G7 Windows 10 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 5/13/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103984.exe + 923157712 + 564c5b059bdcc3817b103b12e9e482bd + 5ABF6D24A408C32F1DB44C1AFFD542444546444225AE147208D3DA7D5A376881 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103984.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103984.html + HP EliteBook x360 830 G7 Windows 10 Driver Pack false - sp149130 - HP Dragonfly Folio G3 Windows 11 Driver Pack + sp147514 + HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 9/4/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149130.exe - 987756536 - 99a8239cbddd8343bb438b814ae9a639 - C37960FB5D0F6AE581CD558016A1665363365F105C5836CEE8A01F1C8BF1AC60 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149130.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149130.html - HP Dragonfly Folio G3 Windows 11 Driver Pack + 6/1/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147514.exe + 1660192312 + 05e7dd20cf84aafff3ec74a938325ff1 + 5C05E39EBA85CC311EE1D20D66CAA649774F318024F8EB81558CC5398098B66C + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147514.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147514.html + HP EB/PB/ZH 6x0/4x0/Pro G10/G6 Windows 10 x64 Driver Pack true - sp173512 - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack - 11.00 A 1 + sp103625 + HP ProBook x360 435 G7 Win 10 x64 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 4/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103625.exe + 911044048 + 6a9ca37031f21acf6c35a4e8bf44739c + FE853F182A7EB9E8AE0F5B2B5B4BC97B0F63E8F8EF74AD95F38C9F212F4186C0 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103625.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103625.html + HP ProBook x360 435 G7 Win 10 x64 Driver Pack + false + + + sp145051 + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + 8.00 A 1 + Manageability - Driver Pack + 3/1/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145051.exe + 1812436448 + fafb6ebee1c54f0ec6de07d51fcac049 + 5B25A202254B6BB65BF24DB9A9D453E5D0DD7BE6B908D1445B3FF51A991B3F1D + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145051.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145051.html + HP ProBook 4x0 G8/ZHAN G4 Windows 10 x64 Driver Pack + true + + + sp79203 + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + 6.00 A 1 + Manageability - Driver Pack + 2/24/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79203.exe + 923155376 + dddf0af739701d2e81c7095c7b1187a3 + 1C7F7BF69F21366511FB001784CB8F74E165FDD27CFBB7AD944DD5C366BF9923 + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79203.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79203.html + HP ElitePro 600/800 G2 PC Win10 x64 Driver Pack + false + + + sp95968 + HP EliteBook x360 830 G6 Windows 10 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 4/26/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95968.exe + 691615016 + 3e4e983e2d98f5d22711a85e78ac74e7 + A1FA128B8CE8EE37994A7588C8DDD6727E3C69EEEC77F7575F8D8FA6509EB268 + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95968.cva + https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95968.html + HP EliteBook x360 830 G6 Windows 10 Driver Pack + false + + + sp174297 + HP Elite/ZBook 8 G1i NB/MWS Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 6/8/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173512.exe - 3932107416 - 10F5033C2E72C614E9AA7EFF2B81964F - 4267DA417F35382566C28802476C69DD1D8A03E27097B85D935F106845810C26 - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173512.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173512.html - HP Elite Tower/SFF 6x0/8x0 G9/Z1 Windows 11 Driver Pack + 8/11/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174297.exe + 2269152728 + 25ECE6752DEE697AAB316189D91E15B0 + 6912DD15671EF87B9C90D87496C159DB5F137695E8825DB0F13743A7A85517B0 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174297.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174297.html + HP Elite/ZBook 8 G1i NB/MWS Windows 11 Driver Pack true - sp84800 - HP Z2 Mini G3 Windows 10 x64 Driver Pack - 2.2018 H 1 + sp85217 + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 2/21/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84800.exe - 849337896 - 63658dc88cbada3775bd7f8d8717e426 - 0FCBFC1223DF5340B6C331C96A42220F73AAF72FFFE3BB9F72BD67C30BEDC2F7 - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84800.cva - https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84800.html - HP Z2 Mini G3 Windows 10 x64 Driver Pack + 1/31/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85217.exe + 919984744 + 4995b14818f9bf011f8560c52fb5661f + D86048864034DE44B1B77B04EBFCAD47483F4F261EA258268A420AFDA79E5A24 + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85217.cva + https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85217.html + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack false - sp103614 - HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack - 11.0 A 1 + sp162923 + HP ProBook/EliteBook 6 G1iR Windows 10 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 5/21/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103614.exe - 812558928 - 397cd8d5df24da9d324e31289c2cce3f - 22D15984F9C1AD4DCEC9A94003109A5F6AF830842D3CFD2780E09E9168D4454A - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103614.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103614.html - HP EliteBook x360 1030 G3 Windows 10 x64 Driver Pack - false + 8/22/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp162501-163000/sp162923.exe + 1888821632 + 3710F5047A9B389AA8AD2334B087A3A7 + F07B380BFD5C105B20BA75CE8E6DE5598C9827335A4E3DFBB1AFADE43DED7495 + https://ftp.hp.com/pub/softpaq/sp162501-163000/sp162923.cva + https://ftp.hp.com/pub/softpaq/sp162501-163000/sp162923.html + HP ProBook/EliteBook 6 G1iR Windows 10 Driver Pack + true - sp110137 - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack - 5.00 A 1 + sp112401 + HP ElitePro 4/6/800 G6 DM Win 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 9/17/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110137.exe - 984462456 - 285add0d86f55ca3ca5c7104f510406f - B2747965DA96C5DB8CD0B201584809729C1C494C247AC626DC688998E8A9385F - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110137.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110137.html - HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + 1/20/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112401.exe + 1498481472 + 7ecbd0fdd4a7374c3d5419328fa58c9f + EAA67F31BB66942DF8EF15DE4789221E9C0743A9B937E054DD8CEBD7A0D0232B + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112401.cva + https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112401.html + HP ElitePro 4/6/800 G6 DM Win 10 x64 Driver Pack false - sp147614 - HP ZBook Power G10 MWS Windows 10 x64 Driver Pack - 2.00 A 1 + sp152764 + HP EliteBook 1040 G11 Windows 10 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/9/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147614.exe - 1625250344 - 6892669d22c8a381f3bf09a7dda73439 - 324CF1BE2D3BCF317B2733FA9E1C49DF3E38565EEE82C17EAAAD6CDC60AA4BCB - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147614.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147614.html - HP ZBook Power G10 MWS Windows 10 x64 Driver Pack + 5/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152764.exe + 2414320552 + 7d7a71c5cbe166c68a0bf464e14cecd6 + 4A911192E92FBA8EC90280213757A518E3601131FE6D41D2624538AD844B0961 + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152764.cva + https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152764.html + HP EliteBook 1040 G11 Windows 10 Driver Pack true - sp85276 - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack - 11.0 A 1 + sp90193 + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 2/2/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85276.exe - 1013976592 - 26c0937623d6ccaf946069807fa215fe - C15F629ABD9BFF1AF5863B2A0D8C68BE00EC49F345433F3D094A06702C2D3D1A - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85276.cva - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85276.html - HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 7/31/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90193.exe + 986174397 + aa7cc5735809de57461a1dd8c5919b5c + 5D3FE7334354905AFDA665C546B177213877085F840DAB5B872704793DA6E26C + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90193.cva + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90193.html + HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack false - sp144698 - HP ProDesk 4/600 G6/G7 SFF Windows 10 x64 Driver Pack - 7.00 A 1 + sp99624 + HP ProDesk 405 G4 DM Win 10 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/13/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144698.exe - 2400780224 - 4f73d71a8ca2b82771d35f30bbc84969 - 44BE969C998176B4318EAD7D238046ECABDF196FA03598B2EFE845912A6A3E76 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144698.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144698.html - HP ProDesk 4/600 G6/G7 SFF Windows 10 x64 Driver Pack - true + 10/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99624.exe + 397164064 + FC8F643113A63657255261439A2BB7E8 + 6756600709E391ECFF0839D8BA32DB4774F9FB602E2DCDF1DB4774947E5C53AE + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99624.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99624.html + HP ProDesk 405 G4 DM Win 10 Driver Pack + false - sp111982 - HP ProDesk 4x0 G4 SFF/MT Windows 10 x64 Driver Pack - 10.0 A 1 + sp161611 + HP ZBook/EliteBook 8x5 G11/A Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 12/29/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111982.exe - 1356163408 - 67bf6d81f1ad952f4ecc62ef6893cf55 - A84058278A2294B452D8D57D32EED7378807B3A8C64D3115721FD38549F2294F - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111982.cva - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111982.html - HP ProDesk 4x0 G4 SFF/MT Windows 10 x64 Driver Pack + 12/2/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161611.exe + 1195483304 + 4F787443F760D887426D6CC9018AD8A7 + 12EDD9B402FAE65B38C0B89516F6160355DE026B4C97895A8AF3134D79D8D356 + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161611.cva + https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161611.html + HP ZBook/EliteBook 8x5 G11/A Windows 11 Driver Pack false - sp111033 - HP ElitePro 4/805 G6 SFF Windows 10 x64 Driver Pack - 2.00 A 1 + sp145114 + HP ZCentral 4R Windows 11 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 11/12/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111033.exe - 898589120 - fec0c4af08c1ffc0a386eebc7800b520 - 38F93A81FB526E0546FC43BB166C88C105BA81391E10C1305A743BE00BCBDD35 - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111033.cva - https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111033.html - HP ElitePro 4/805 G6 SFF Windows 10 x64 Driver Pack + 3/6/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145114.exe + 1647288840 + 6935c587740bf1413184ca1e6ff50638 + C1B8FC227032F630210B43074F5BDAECF0D53F6600F6F26A39FC10DC5037B2D8 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145114.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145114.html + HP ZCentral 4R Windows 11 x64 Driver Pack false - sp149060 - HP Pro x360 Fortis G10 Windows 11 Driver Pack - 3.00 A 1 + sp150287 + HP EliteBook 8x5 G9 Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 8/31/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149060.exe - 767658592 - e65d4c9a917a3df72ddd99cae646ad67 - CDA338092918D6AE9D79DA1267DAE0A0D6F0E5A35BC4DA2897AB6D1B52A7F4F0 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149060.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149060.html - HP Pro x360 Fortis G10 Windows 11 Driver Pack + 12/3/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150287.exe + 953887624 + 380849d31d4a5b244883d0ec71977dea + 4F4B9DCC6E31D17A64B60239C923237A9C11A15062F36C5BA6ADDF9A85DEED76 + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150287.cva + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150287.html + HP EliteBook 8x5 G9 Windows 11 Driver Pack true - sp140882 - HP ZBook Power G7 Windows 11 Driver Pack + sp112708 + HP ProBook x360 435 G8 Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 7/12/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140882.exe - 1338303768 - 6ab169fc756e7108b0683e38af5655f0 - 23D93036A4DB38B89EF510AC7AA6D07F3F69CD47DE186854197EE5A71E0C5BBD - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140882.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140882.html - HP ZBook Power G7 Windows 11 Driver Pack + 2/22/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112708.exe + 601408816 + 4d8e9853d778b6e3c7e9f258703011d1 + 359591CF48CEB77C5C3B67E714F9419185A789D30A981DEE8595EF71AB014CD1 + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112708.cva + https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112708.html + HP ProBook x360 435 G8 Windows 10 x64 Driver Pack false - sp114068 - HP Probook 6x0 G8 Windows 10 x64 Driver Pack - 4.00 A 1 + sp99813 + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 6/1/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114068.exe - 1344850896 - 5ed3876b14ebefa412a36013fcadd0f8 - 7018BD853B790C39EEF95DE8FB27729CE371802C8A85428192D00E50AC5A5E01 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114068.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114068.html - HP Probook 6x0 G8 Windows 10 x64 Driver Pack + 10/25/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99813.exe + 962806512 + afe329a60af7a2915feefa0bbcc4e7d4 + 4C7ECCFB43F3FCD53105F06AE4D5E98A747651AD2599D030C1EAAEE9F5F0009E + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99813.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99813.html + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack false - sp94910 - HP Engage One G1 Win10 x64 Driver Pack - 3.00 A 1 + sp100011 + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 5/15/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94910.exe - 420818944 - f095a7daf23bbd0e1dde1d4fa469bfb8 - 92B9CF5BF3C3FCB02F78C3DAD363A9EA9648EA44FB16786C6224FA061DAC8BBD - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94910.cva - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94910.html - HP Engage One G1 Win10 x64 Driver Pack + 11/12/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100011.exe + 622043528 + 3237e0a70d8d2edbccb2aa8f316415d5 + 13C51BE5572C2CFA3E530476386333CB3E086ED6A4492459380F92ED0EFC046A + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100011.cva + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100011.html + HP ProBook x360 11 G5 Windows 10 x64 Driver Pack false - sp114224 - HP EliteBook x360 830 G6 Windows 10 Driver Pack - 7.00 A 1 + sp140867 + HP EliteBook x360 10x0 G7 Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/18/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114224.exe - 1180968168 - 7a359f90d46679d30c6b8799364d8485 - 62600AC5153F556C6F3A8F9A5E992746B9DB122FE913F4A83142BEE1EDFF29A9 - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114224.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114224.html - HP EliteBook x360 830 G6 Windows 10 Driver Pack + 6/30/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140867.exe + 1336698768 + 43d019da9a8e068971db9f1428e048e0 + 253C23D61E512E71016D8F6994085C0F38841668A7BF15CAF9CB4A5890FF7FDE + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140867.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140867.html + HP EliteBook x360 10x0 G7 Windows 11 Driver Pack false - sp140851 - HP ProBook x360 435 G7 Windows 11 Driver Pack + sp92706 + HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 6/29/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140851.exe - 998728560 - 537e05c765e9e6a3b73b5888a845002d - C6458B60A863A1921F4336CBD50CD3A5BCBA5BFDF66B4151A69B47829A24C849 - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140851.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140851.html - HP ProBook x360 435 G7 Windows 11 Driver Pack + 11/14/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92706.exe + 870293 + 9e9876b8bd3e03e68bd408bfa4481dbf + 3AF9FD5F61ADA79A1683AF3430C200FBCE85EE5DCE23F59AC36AE6554B682850 + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92706.cva + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92706.html + HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack false - sp90224 - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - 5.00 A 1 + sp103582 + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 7/26/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90224.exe - 636415168 - 4a22131edae0bed7c5884fd5d72d8e3f - 37CFBC6E79185E3500C9C85D02539CA66892A8289F76563F2DF2193E1A0173D3 - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90224.cva - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90224.html - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103582.exe + 417076376 + 980fe0aa57a0aaf181c3bb471fac51b8 + 1514CD95F26D3A40BA4F27293040DAA87AE1049287A31EA610A76BE0E106F631 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103582.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103582.html + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack false - sp150833 - HP EB/ZB/x360 8x0/1040/FF G10 Windows 11 Driver Pack - 4.00 A 1 + sp173464 + HP Pro/EliteBook 4/6 G2a NB Next Gen AI Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 1/12/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150833.exe - 1635333944 - 70e16f2d80ecda524bdfdfae6fdbbc6d - 66635977AAD6C3C90A1AE5C43BE5D28D888E5F78F5414C788D7D7E559BF6D12D - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150833.cva - https://ftp.hp.com/pub/softpaq/sp150501-151000/sp150833.html - HP EB/ZB/x360 8x0/1040/FF G10 Windows 11 Driver Pack + 6/3/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173464.exe + 1481732736 + 97DB2F2FBDF2814C6EB5B20369A0E1DF + 5034E5E4D34A8A4C7581011453C39D7714EC7F03260D4DABC3720A01E6FE549C + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173464.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173464.html + HP Pro/EliteBook 4/6 G2a NB Next Gen AI Windows 11 Driver Pack true - sp167338 - HP Engage One Pro AIO G2 Windows 11 x64 Driver Pack + sp149120 + HP EliteBook/ProBook 6x0/4x0 G10 Windows 11 Driver Pack 3.00 A 1 Manageability - Driver Pack - 12/12/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167338.exe - 1292726432 - 377FAA22A0F0A8DF4E25528C710ACE39 - 9B3955A6B3CADDCF637EE7CA75DE340F35C7B686F68E045F401BAB3561BD5F47 - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167338.cva - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167338.html - HP Engage One Pro AIO G2 Windows 11 x64 Driver Pack + 9/20/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149120.exe + 1614352832 + 8835eca05048ca85305a0076a258131b + 3B2FD24C3C6C045D5747F31A1648019CC11E0F21E189F7FAF7E5546776172803 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149120.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149120.html + HP EliteBook/ProBook 6x0/4x0 G10 Windows 11 Driver Pack true - sp138311 - HP ProBook x360 11 G7 Windows 10 x64 Driver Pack - 3.00 A 1 + sp149689 + HP Z4 Rack G5 Windows 10 + 2.0 A 1 Manageability - Driver Pack - 2/8/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138311.exe - 1169577312 - 76de0d8b9a61300be65f8eaa1e49ac82 - EFAFF87259387411ABB2066C21D9EC6D4AEC1E501A7777A12F65908847964B1D - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138311.cva - https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138311.html - HP ProBook x360 11 G7 Windows 10 x64 Driver Pack + 10/19/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149689.exe + 1886895528 + 8ce1cf6fb1f35cc96e38a13a3c64ab95 + 6EBB1093A874F05E03D0DDC78027AFAB259D30AC9D93577B8F9B73F973141BE2 + https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149689.cva + https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149689.html + HP Z4 Rack G5 Windows 10 false - sp144635 - HP EliteOne 8x0 27 G9 AIO Win 10 x64 Driver Pack - 3.00 A 1 + sp123507 + HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 2/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144635.exe - 1496072384 - 6909d8047d47c460de0da660a2144e61 - 4772DD5CA2538856F022EF4BC86436EF1CB3CDC6941715558A92E9FDB115803A - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144635.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144635.html - HP EliteOne 8x0 27 G9 AIO Win 10 x64 Driver Pack - true + 7/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123507.exe + 1684494984 + 2eec91663d6a6a8b4d4279268d9e6f7d + F1CEB2AC35FB3EFF772FC77453C263A2452836F8E1432ACE037DC1D0EF0B1B36 + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123507.cva + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123507.html + HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack + false - sp100030 - HP EliteDesk 705 G3 Windows 10 x64 Driver Pack - 17.0 A 1 + sp105670 + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 11/6/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100030.exe - 706613624 - 29B2CBDF4BE4F74C1BEC975149B89F85 - 41D763338DFA853199391A7500F487E0BA2E86C70F95C5E89E43C282F09F2DC0 - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100030.cva - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100030.html - HP EliteDesk 705 G3 Windows 10 x64 Driver Pack + 6/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105670.exe + 656656832 + e5d239724f3c49fa53cd01744b680cae + E20F04CB2C987AFDF65A67D52D097B6826C7BB069B3C13DB898E4DDE18FF7087 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105670.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105670.html + HP EliteBook 1040 G4 Windows 10 x64 Driver Pack false - sp101928 - HP EliteDesk 705 G5 Windows 10 x64 Driver Pack - 7.00 A 1 + sp136223 + HP ProBook 4x5 G8 Windows 11 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 3/30/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101928.exe - 727977256 - 769c3fadd37e54d3dc66f05179b7c628 - 568E8A5032D7849FFDFF911EF30B3FE80B839A1DAA882EF522ABF274366B94D0 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101928.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101928.html - HP EliteDesk 705 G5 Windows 10 x64 Driver Pack + 11/17/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136223.exe + 1153356552 + 42a2471e5d3c2c64ed1e49abccd921b1 + 9E9F4A3AFEFDA9EC8DDDF9D179A85B463EB0C1BD7D756A5011D0107005938C95 + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136223.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136223.html + HP ProBook 4x5 G8 Windows 11 Driver Pack false - sp144592 - HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack - 7.00 A 1 + sp110196 + HP Probook 6x0 G7 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 2/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144592.exe - 3000741464 - 72e583ebac72d1ece9229d8f38c2b216 - 551E036EEE1BEF42208973E55C28133BA066DF3E641F99ABDA59CD8A46430B23 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144592.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144592.html - HP ElitePro 4/6/8x0 G6/7 PC Windows 10 x64 Driver Pack - true + 9/22/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110196.exe + 987167560 + a9f8f664b20400ddc283816e151e89a6 + 6DBC12390D0CA4FABE5311D95539B94A6B537D2305207543A47BDBA6A8DEFF2C + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110196.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110196.html + HP Probook 6x0 G7 Windows 10 x64 Driver Pack + false - sp87514 - HP Z240 Windows 10 x64 Driver Pack - 5.2018 J 1 + sp100598 + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 5/9/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87514.exe - 1033541248 - 4e930d4543fc8e8671a64295074ec7ad - 05415C1C2C7F10042CB79D458DA2C2E377C3799C255B76BFE5DF1AA5895ED8EF - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87514.cva - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87514.html - HP Z240 Windows 10 x64 Driver Pack + 1/14/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100598.exe + 800046288 + b62f25e25a0e4137341132537480b7a6 + 8D4CA91BD3E30B1DA7A45766A70315E54D0E4D1A6B80935488B7B74ECAE8B9E1 + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100598.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100598.html + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack false - sp114184 - HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack - 3.00 A 1 + sp107667 + HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/11/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114184.exe - 1357462352 - 5dcdce40d55954b127ab5ffb1a6c72c6 - AABFED3A5FDF49C5C9016A2FA79DFD19F72E48D0DC6351FB1EF831B60DB8280C - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114184.cva - https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114184.html - HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack + 8/18/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107667.exe + 1337174760 + d4176fd0b02f1a043f59f9e5174c3a69 + 0705B3D36D8D3E1C23A2AF13DA3AA6D8D4E0F1B7DFCBEAEA5BA71B6E02227103 + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107667.cva + https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107667.html + HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack false - sp103577 - HP ProBook 4x5R G6 Windows 10 x64 Driver Pack - 5.00 A 1 + sp111957 + HP EliteDesk 705 G3 Windows 10 x64 Driver Pack + 19.0 A 1 Manageability - Driver Pack - 5/4/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103577.exe - 921589632 - 3e081dba361eb23ef7369dbf4003638e - 936CF78157F55DA701F23AC6035403DA963AFA12CF0F090C41638B958ADC0D4B - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103577.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103577.html - HP ProBook 4x5R G6 Windows 10 x64 Driver Pack + 12/28/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111957.exe + 704988344 + 1fcd03b45b78beaee4f4588d0a71fe23 + 6F6D754826DE8B9CFC658D360EB9989E17220E3D8F60EB47FC09BEAEAAE7108E + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111957.cva + https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111957.html + HP EliteDesk 705 G3 Windows 10 x64 Driver Pack false - sp173280 - HP EliteBoard G1a Next Gen AI Windows 11 Driver Pack - 2.00 A 1 + sp113514 + HP Z6/Z8 Windows 10 x64 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/2/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173280.exe - 1051817152 - 576B913A01A05F8EFCF4F0F9EB050CAC - 226C31B0B5CC0F55004C11557DFDA3B3510A4F2B1FD10262D107E9F62E5089A8 - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173280.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173280.html - HP EliteBoard G1a Next Gen AI Windows 11 Driver Pack - true + 5/19/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113514.exe + 1072468152 + fa6c46fe32e0a48fe80a4c41a1fff753 + 8A39A830AAE1F2D9B01E7321CAF1B983599EDAFC3AB8FAFC1DAF7F0363A0AF27 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113514.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113514.html + HP Z6/Z8 Windows 10 x64 Driver Pack + false - sp151781 - HP Engage Go 10 Mobile System Win11 x64 Driver Pack - 5.00 A 1 + sp110931 + HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/15/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151781.exe - 1040300744 - a56f5765cec64d0e504674dd8b4e60ef - BE5E3BF6924F0400C222692C622BAF9487478B08A46112F1C9F4369E243F4945 - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151781.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151781.html - HP Engage Go 10 Mobile System Win11 x64 Driver Pack - true + 11/6/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110931.exe + 507441800 + 49033a4fc19f25cfc204e83ab1e26279 + C414AD9FB4CEE33A9F1EFF1458661EC5881AEB0D73EF90D6C3AEB52F676E3A72 + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110931.cva + https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110931.html + HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack + false - sp174398 - HP EliteBook G1i NB Next Gen Windows 11 Driver Pack - 4.00 A 1 + sp99544 + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 8/18/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174398.exe - 1229009304 - 732E708172D8F5F06FAA134B6546E2A5 - A5709D108B0E39945461087414D501B25405446063BC90A8973938F7F06FB41B - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174398.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174398.html - HP EliteBook G1i NB Next Gen Windows 11 Driver Pack - true + 10/9/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99544.exe + 901882232 + 4c26e35b4656e344796a9ea9ed49ac8f + C078831E211B90A64E6358499D6FB4D263A52F5164C6DD471EAE5493FE03E262 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99544.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99544.html + HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + false - sp96758 - HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack + sp88717 + HP EliteBook 840r G4 Windows 10 x64 Driver Pack 2.00 A 1 Manageability - Driver Pack - 5/29/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96758.exe - 900475256 - ee96507bd1530ae92e134ab781320a03 - A717EB418E19F452950A24CB30C6CF18B0AFA63308BF2CD128EEA844C8EBE6D1 - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96758.cva - https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96758.html - HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack + 6/26/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88717.exe + 786478632 + f4b57099d75a08b2eb31b60a05632d56 + 3F468F680288895300BDADEEC81E988EAE26B12ABCA7991351E72E1E272AB8B4 + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88717.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88717.html + HP EliteBook 840r G4 Windows 10 x64 Driver Pack false - sp90254 - HP Folio 1040 G3 Windows 10 x64 Driver Pack - 12.0 A 1 + sp96059 + HP EliteDesk 705 G3 Win10 x64 Driver Pack + 16.0 A 1 Manageability - Driver Pack - 7/27/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90254.exe - 540762400 - 0c8aba391441c036052ad587cdc928c9 - D34A57F902B4DB0BA783275BAA525482BE008278BCABC98F009738FB15D6ED67 - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90254.cva - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90254.html - HP Folio 1040 G3 Windows 10 x64 Driver Pack + 5/2/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96059.exe + 789795000 + 82b73924a228c9fd12d24e74d7f40f3c + 532D17DBB2ADE328DAD3583DC1619CD32CBEE7D5BB10BAC4FBC99330460A8C86 + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96059.cva + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96059.html + HP EliteDesk 705 G3 Win10 x64 Driver Pack false - sp121400 - HP ElitePro 4/805 G8 DM Windows 10 x64 Driver Pack - 1.00 A 1 + sp138601 + HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 7/12/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121400.exe - 1118428792 - 8abd07de9645c77378bec828969aa586 - 3B68D59CF23C5D388452314D0B4D50379588E9B5ED2CD8B6FBCEDFB84E392AEC - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121400.cva - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121400.html - HP ElitePro 4/805 G8 DM Windows 10 x64 Driver Pack + 3/3/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138601.exe + 1527476312 + 66f3ffba1ecf5b8ed1bf7ad02b4bf5c0 + D94BF76E06D3A2A9B662A7CEC48BC61FE6A129D7699DCE576ED7ECB572ABB888 + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138601.cva + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138601.html + HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack false - sp95968 - HP EliteBook x360 830 G6 Windows 10 Driver Pack + sp158689 + HP EliteBook G1i NB Next Gen Windows 10 Driver Pack 1.00 A 1 Manageability - Driver Pack - 4/26/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95968.exe - 691615016 - 3e4e983e2d98f5d22711a85e78ac74e7 - A1FA128B8CE8EE37994A7588C8DDD6727E3C69EEEC77F7575F8D8FA6509EB268 - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95968.cva - https://ftp.hp.com/pub/softpaq/sp95501-96000/sp95968.html - HP EliteBook x360 830 G6 Windows 10 Driver Pack + 5/20/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158689.exe + 1450240888 + 420BF0E159F4605BC05DB89BBBC71803 + 921556317C78FC5CA510FDC5DEEEAC58203FBA186B9D0920D4720E45B103FD5B + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158689.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158689.html + HP EliteBook G1i NB Next Gen Windows 10 Driver Pack false - sp174297 - HP Elite/ZBook 8 G1i NB/MWS Windows 11 Driver Pack - 5.00 A 1 + sp160040 + HP Engage One Pro AIO G2 IoT10 2021 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 8/11/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174297.exe - 2269152728 - 25ECE6752DEE697AAB316189D91E15B0 - 6912DD15671EF87B9C90D87496C159DB5F137695E8825DB0F13743A7A85517B0 - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174297.cva - https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174297.html - HP Elite/ZBook 8 G1i NB/MWS Windows 11 Driver Pack + 5/28/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160040.exe + 1180504440 + 3E2BC764DF77F912B2F169E5937A4BF0 + 1DC8D5A50521247988B0990F41AFE05B90ED100DB507F71ED4837017D3CB163C + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160040.cva + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160040.html + HP Engage One Pro AIO G2 IoT10 2021 Driver Pack true - sp85217 - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack - 1.00 A 1 + sp110418 + HP Engage Flex Pro G1 Win10 x64 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 1/31/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85217.exe - 919984744 - 4995b14818f9bf011f8560c52fb5661f - D86048864034DE44B1B77B04EBFCAD47483F4F261EA258268A420AFDA79E5A24 - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85217.cva - https://ftp.hp.com/pub/softpaq/sp85001-85500/sp85217.html - HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 10/13/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110418.exe + 836850952 + 831e2d780c6a506378fd4bd996d1c2d7 + 8A3AF61BF4525034E554998230406937D169DE3B07FBCB07D17CAF5A3839ED31 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110418.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110418.html + HP Engage Flex Pro G1 Win10 x64 Driver Pack false - sp162923 - HP ProBook/EliteBook 6 G1iR Windows 10 Driver Pack + sp108939 + HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack 2.00 A 1 Manageability - Driver Pack - 8/22/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp162501-163000/sp162923.exe - 1888821632 - 3710F5047A9B389AA8AD2334B087A3A7 - F07B380BFD5C105B20BA75CE8E6DE5598C9827335A4E3DFBB1AFADE43DED7495 - https://ftp.hp.com/pub/softpaq/sp162501-163000/sp162923.cva - https://ftp.hp.com/pub/softpaq/sp162501-163000/sp162923.html - HP ProBook/EliteBook 6 G1iR Windows 10 Driver Pack - true + 9/4/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108939.exe + 975004656 + 99ae460ca72423c76743b2847076e02c + 95CAB9B22DCB2A41CCAA5EBD3F9B361427D29869475B025A0C491CFE121EA06E + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108939.cva + https://ftp.hp.com/pub/softpaq/sp108501-109000/sp108939.html + HP EliteBook x360 1030/40 G7 Windows 10 Driver Pack + false - sp112401 - HP ElitePro 4/6/800 G6 DM Win 10 x64 Driver Pack + sp88958 + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + 13.0 A 1 + Manageability - Driver Pack + 7/24/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88958.exe + 947806080 + 2994960e336ea8714b0375c2585361a1 + 6CA9DFA69C98429F79DCF1C9E77057ACD44FC1B9ACEB2AB8E31415198D1EE9CC + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88958.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88958.html + HP ElitePro 600/800 G3 PC Win10 x64 Driver Pack + false + + + sp110361 + HP ZBook Studio G7 Windows 10 x64 Driver Pack 3.00 A 1 Manageability - Driver Pack - 1/20/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112401.exe - 1498481472 - 7ecbd0fdd4a7374c3d5419328fa58c9f - EAA67F31BB66942DF8EF15DE4789221E9C0743A9B937E054DD8CEBD7A0D0232B - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112401.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112401.html - HP ElitePro 4/6/800 G6 DM Win 10 x64 Driver Pack + 10/6/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110361.exe + 993965424 + 0441c6100a4578690391a5f87a20dd87 + C9E70F4B7C98A432D4046FD369729F74CC80D90B70F8195EE0452C6B0EDD9708 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110361.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110361.html + HP ZBook Studio G7 Windows 10 x64 Driver Pack false - sp152764 - HP EliteBook 1040 G11 Windows 10 Driver Pack - 1.00 A 1 + sp144946 + HP Engage Go 10 Mobile System Win10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 5/20/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152764.exe - 2414320552 - 7d7a71c5cbe166c68a0bf464e14cecd6 - 4A911192E92FBA8EC90280213757A518E3601131FE6D41D2624538AD844B0961 - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152764.cva - https://ftp.hp.com/pub/softpaq/sp152501-153000/sp152764.html - HP EliteBook 1040 G11 Windows 10 Driver Pack + 2/17/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144946.exe + 986054656 + 2124fd5ea5e9a64d39f972c44df6ff0a + 251EC97895F9E35638398DF416FD4B449BF67E6EFC319FDF994DEA4BE347595D + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144946.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144946.html + HP Engage Go 10 Mobile System Win10 x64 Driver Pack true - sp90193 - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack - 3.00 A 1 + sp123509 + HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 7/31/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90193.exe - 986174397 - aa7cc5735809de57461a1dd8c5919b5c - 5D3FE7334354905AFDA665C546B177213877085F840DAB5B872704793DA6E26C - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90193.cva - https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90193.html - HP ZHAN 66 Pro G1 Windows 10 x64 Driver Pack + 7/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123509.exe + 1554374400 + e8889e39a0d33623c3f26e0f866bfef5 + 57E6944EC343E4409C9E71A5AA6E1BCFD5F572457FFCAC7BCC8E4953FAE06407 + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123509.cva + https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123509.html + HP ProOne 4/600 G6 AiO Win 10 x64 Driver Pack false - sp99624 - HP ProDesk 405 G4 DM Win 10 Driver Pack - 4.00 A 1 + sp103579 + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 11.0 A 1 Manageability - Driver Pack - 10/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99624.exe - 397164064 - FC8F643113A63657255261439A2BB7E8 - 6756600709E391ECFF0839D8BA32DB4774F9FB602E2DCDF1DB4774947E5C53AE - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99624.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99624.html - HP ProDesk 405 G4 DM Win 10 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103579.exe + 773112816 + b7a592af86e0a35b516ab41630503eb9 + 22C157374A931FE11ADAAF27B87BC567102F635C27359F0DD68A172B6C7DEE94 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103579.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103579.html + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack false - sp161611 - HP ZBook/EliteBook 8x5 G11/A Windows 11 Driver Pack - 3.00 A 1 + sp114246 + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 13.00 A 1 Manageability - Driver Pack - 12/2/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161611.exe - 1195483304 - 4F787443F760D887426D6CC9018AD8A7 - 12EDD9B402FAE65B38C0B89516F6160355DE026B4C97895A8AF3134D79D8D356 - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161611.cva - https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161611.html - HP ZBook/EliteBook 8x5 G11/A Windows 11 Driver Pack + 6/23/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114246.exe + 1488636064 + 57143ed172cb829247de51069e940ae5 + D3EA79319E4844A414506F3AFA72022F01E19092C617B7DBD5C971446F76015C + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114246.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114246.html + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack false - sp145114 - HP ZCentral 4R Windows 11 x64 Driver Pack + sp168390 + HP EB X G1a Windows 11 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 12/16/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168390.exe + 1099258296 + D09A149059CF704B0C7C8CC8C8183603 + 6E26B58B0FF8EC70EFFB0AE65E855D58570F27E797DB881D6D3E2B0A2F8D3BEF + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168390.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168390.html + HP EB X G1a Windows 11 Driver Pack + true + + + sp144694 + HP Engage Flex Mini Win10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 3/6/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145114.exe - 1647288840 - 6935c587740bf1413184ca1e6ff50638 - C1B8FC227032F630210B43074F5BDAECF0D53F6600F6F26A39FC10DC5037B2D8 - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145114.cva - https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145114.html - HP ZCentral 4R Windows 11 x64 Driver Pack - false + 1/24/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144694.exe + 740546280 + c8f3dd1fdda723ef51ee1c5fc9a54620 + EBD9DAEEE9192718D5168ABA2F6CAA640BA88D259E57DBDC654B7C014CA52080 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144694.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144694.html + HP Engage Flex Mini Win10 x64 Driver Pack + true - sp150287 - HP EliteBook 8x5 G9 Windows 11 Driver Pack - 6.00 A 1 + sp174327 + HP EliteBook X G1i NB Windows 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 12/3/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150287.exe - 953887624 - 380849d31d4a5b244883d0ec71977dea - 4F4B9DCC6E31D17A64B60239C923237A9C11A15062F36C5BA6ADDF9A85DEED76 - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150287.cva - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150287.html - HP EliteBook 8x5 G9 Windows 11 Driver Pack + 8/12/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174327.exe + 1228324696 + 5BC4910829EDA5E66085F0928DAF5E0A + 2085D3A72266BA016BA86850AB48F43C0DDA1017DA5EFD24A14CF41BA4280248 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174327.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174327.html + HP EliteBook X G1i NB Windows 11 Driver Pack true - sp112708 - HP ProBook x360 435 G8 Windows 10 x64 Driver Pack - 1.00 A 1 + sp114239 + HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 10.00 A 1 Manageability - Driver Pack - 2/22/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112708.exe - 601408816 - 4d8e9853d778b6e3c7e9f258703011d1 - 359591CF48CEB77C5C3B67E714F9419185A789D30A981DEE8595EF71AB014CD1 - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112708.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112708.html - HP ProBook x360 435 G8 Windows 10 x64 Driver Pack + 6/22/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114239.exe + 1193956376 + 8d86c2180cfc39029ed7ec1b936ee639 + CFAA7022AA7389E5D9A804E08ECA877F787EE638F71CD7425A4DEBF00DE53446 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114239.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114239.html + HP Probook 6x5 G4 Windows 10 x64 Driver Pack false - sp99813 - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + sp145107 + HP ZBook Fury 16 G9 MWS Windows 10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 3/16/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145107.exe + 2667499160 + 70974441c52f710a7552722c41fa6885 + 176346BE4C44E99F962540AFB744F89F6E546741128A7440CDB3FF2B0C05C841 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145107.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145107.html + HP ZBook Fury 16 G9 MWS Windows 10 x64 Driver Pack + true + + + sp111365 + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack 8.00 A 1 Manageability - Driver Pack - 10/25/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99813.exe - 962806512 - afe329a60af7a2915feefa0bbcc4e7d4 - 4C7ECCFB43F3FCD53105F06AE4D5E98A747651AD2599D030C1EAAEE9F5F0009E - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99813.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99813.html - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + 12/1/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111365.exe + 1352863552 + 657639fae78dcea296b4cc77d4f723bc + A164814D9047BBC3B1B7F1A8F7B9B7BE71242DE0F8A9B9AE1A2A0915A501A402 + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111365.cva + https://ftp.hp.com/pub/softpaq/sp111001-111500/sp111365.html + HP ProDesk 680 G4 MT Win 10 x64 Driver Pack false - sp100011 - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + sp140810 + HP ProBook x360 11 G6 Windows 11 Driver Pack 1.00 A 1 Manageability - Driver Pack - 11/12/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100011.exe - 622043528 - 3237e0a70d8d2edbccb2aa8f316415d5 - 13C51BE5572C2CFA3E530476386333CB3E086ED6A4492459380F92ED0EFC046A - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100011.cva - https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100011.html - HP ProBook x360 11 G5 Windows 10 x64 Driver Pack + 6/24/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140810.exe + 676665144 + 277fcf863d02cbdfc8827b3608e47018 + C0DA16F2151C89E1902FDE5DC474069E2230469CA56CF94D1C8AFC803FDD68CD + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140810.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140810.html + HP ProBook x360 11 G6 Windows 11 Driver Pack false - sp140867 - HP EliteBook x360 10x0 G7 Windows 11 Driver Pack - 1.00 A 1 + sp103623 + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 6/30/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140867.exe - 1336698768 - 43d019da9a8e068971db9f1428e048e0 - 253C23D61E512E71016D8F6994085C0F38841668A7BF15CAF9CB4A5890FF7FDE - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140867.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140867.html - HP EliteBook x360 10x0 G7 Windows 11 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103623.exe + 793097208 + c12464bf48b6116de30bca70577faf72 + 645956698F8AF586877FC894F243133EF05CECC923BF973267D996B43AB148E1 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103623.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103623.html + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack false - sp92706 - HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack - 1.00 A 1 + sp101914 + HP EliteBook x360 1040 G6 Windows 10 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 11/14/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92706.exe - 870293 - 9e9876b8bd3e03e68bd408bfa4481dbf - 3AF9FD5F61ADA79A1683AF3430C200FBCE85EE5DCE23F59AC36AE6554B682850 - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92706.cva - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92706.html - HP ElitePro 400-800 G1 PC Win10 x64 Driver Pack + 3/16/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101914.exe + 832819512 + 2353390a1ae1be1b1f69cb2eec9e23e9 + 3C82581B0287E72B416DF3A1C859D3FFCA7A3A42C56431C9B8B5C1D7E03AEF18 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101914.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101914.html + HP EliteBook x360 1040 G6 Windows 10 Driver Pack false - sp103582 - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack - 11.0 A 1 + sp114188 + HP EliteBook x360 1030 G3 Win 10 x64 Driver Pack + 13.00 A 1 Manageability - Driver Pack - 4/23/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103582.exe - 417076376 - 980fe0aa57a0aaf181c3bb471fac51b8 - 1514CD95F26D3A40BA4F27293040DAA87AE1049287A31EA610A76BE0E106F631 - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103582.cva - https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103582.html - HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + 6/14/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114188.exe + 1599070328 + 8b88d8a0d8788e426d9bb57f01b24096 + 897BAFBCB651B2311F26A3366EC9798684CF5FA758CF62A087C1B78C8EB9E595 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114188.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114188.html + HP EliteBook x360 1030 G3 Win 10 x64 Driver Pack false - sp173464 - HP Pro/EliteBook 4/6 G2a NB Next Gen AI Windows 11 Driver Pack - 2.00 A 1 + sp115294 + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + 14.00 A 1 Manageability - Driver Pack - 6/3/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173464.exe - 1481732736 - 97DB2F2FBDF2814C6EB5B20369A0E1DF - 5034E5E4D34A8A4C7581011453C39D7714EC7F03260D4DABC3720A01E6FE549C - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173464.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173464.html - HP Pro/EliteBook 4/6 G2a NB Next Gen AI Windows 11 Driver Pack - true + 6/29/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115294.exe + 1120535560 + fa0df33f370a354208be2696f6b23cb0 + E75F438BBB8F02E1CA2DB83A5F08EC8E9E701F58EF1E85E3DDC532F801AC6F86 + https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115294.cva + https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115294.html + HP EliteOne 1000 G2 AiO Win10 x64 Driver Pack + false sp94975 @@ -10750,21 +10630,6 @@ HP Probook 6x0 G4 Windows 10 x64 Driver Pack false - - sp113944 - HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 5/20/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113944.exe - 1343421016 - 75d042ec7431f3217231b7e1f808f468 - 9523333E0E69ED765B53F39859E49541F3F6570E8CD6AD9116C9BEE25A027917 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113944.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113944.html - HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack - false - sp114253 HP Elite Dragonfly G2 Windows 10 x64 Driver Pack @@ -10780,6 +10645,21 @@ HP Elite Dragonfly G2 Windows 10 x64 Driver Pack false + + sp113944 + HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack + 4.00 A 1 + Manageability - Driver Pack + 5/20/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113944.exe + 1343421016 + 75d042ec7431f3217231b7e1f808f468 + 9523333E0E69ED765B53F39859E49541F3F6570E8CD6AD9116C9BEE25A027917 + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113944.cva + https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113944.html + HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack + false + sp147117 HP Z6/Z8 Windows 11 x64 Driver Pack @@ -10826,1068 +10706,1188 @@ false - sp92710 - HP EliteBook 7x0/8x0 G1 Windows 10 x64 Driver Pack + sp150165 + HP Pro x360 Fortis G11 Windows 11 Driver Pack + 4.00 A 1 + Manageability - Driver Pack + 11/16/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150165.exe + 830874144 + f826c217675321efdb773613e133adb8 + 94B0D08AA04D6470920CC62340B2C6E2372D12D8855131702FB1813233EF7618 + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150165.cva + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150165.html + HP Pro x360 Fortis G11 Windows 11 Driver Pack + true + + + sp105595 + HP EliteDesk 705 G3 Windows10 x64 Driver Pack + 18.0 A 1 + Manageability - Driver Pack + 6/18/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105595.exe + 746736296 + 36ea4720bd728b017737a02646d9ecf5 + 5E690EAB403928431CFD68872AE593098150A37F50AD4CF6B1E30297EBE3F733 + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105595.cva + https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105595.html + HP EliteDesk 705 G3 Windows10 x64 Driver Pack + false + + + sp84351 + HP Probook 6x5 G4 Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 11/14/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92710.exe - 596764840 - 2ea16c24ec9a5c6c3c1f00a4dc7c000d - BBE860541399897BDFA671450C1D6A2183DB5677B8E82D152F803ECC5A4ED5B4 - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92710.cva - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92710.html - HP EliteBook 7x0/8x0 G1 Windows 10 x64 Driver Pack + 12/20/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84351.exe + 592765928 + fab16fc00c4eb2e44532262966807f9f + 15BF0043246576223E4390C951964DB53B62CA2093A41820F40773D0EB61CA81 + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84351.cva + https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84351.html + HP Probook 6x5 G4 Windows 10 x64 Driver Pack false - sp168466 - HP EliteOne 8x0 27 G9 AIO Windows 11 Driver Pack - 10.00 A 1 + sp96028 + HP ElitePro 4/6/800 G2 PC Win 10 x64 Driver Pack + 13.0 A 1 Manageability - Driver Pack - 12/18/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168466.exe - 1369723640 - F18184BB64160C2F62020FC9F4ECD142 - 4DDB203BE01C71BE0E33846290E6D4A2B840DA11FFBC3FAA9E44FD28104FFD24 - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168466.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168466.html - HP EliteOne 8x0 27 G9 AIO Windows 11 Driver Pack + 5/1/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96028.exe + 834454408 + f4fd4fa16098b96e51499c76e2dfb608 + 417899D00C7512DDF7335B5C20676E1AC8A72F585E66A139753B73D5A36CE4D1 + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96028.cva + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96028.html + HP ElitePro 4/6/800 G2 PC Win 10 x64 Driver Pack + false + + + sp95331 + HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + 12.0 A 1 + Manageability - Driver Pack + 3/12/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95331.exe + 616276760 + da750a0a12c535376f919fd3e66446cf + 19828AACCF1215454E465B3738D19D3B9871CC501E6C30B8C507FD373B6E8882 + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95331.cva + https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95331.html + HP ElitePro 600/800 G2 AiO Win10 x64 Driver Pack + false + + + sp79202 + HP EliteDesk 705 G2 Win10 x64 Driver Pack + 6.00 A 1 + Manageability - Driver Pack + 2/24/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79202.exe + 682817032 + 618cfe4cbff332f467f757be06d854a1 + 6DEC8051E9C8C45C37127199B75226E9EFD1A092EF4621BD8A49CC29BAF8F3BF + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79202.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79202.html + HP EliteDesk 705 G2 Win10 x64 Driver Pack + false + + + sp174387 + HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack + 12.00 A 1 + Manageability - Driver Pack + 8/18/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174387.exe + 2366000856 + B4FA68EAC3392CD0D26D9A92CEC3DBE7 + C50ACBB697AA4FFAA43FA6C04B8929C64BAE56376063F6FBA4A9E044E3380586 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174387.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174387.html + HP Elite SFF 805 G9 Desktop PC Windows 11 Driver Pack true - sp170270 - HP Engage Go 13.5 inch Mobile System Windows 11 x64 Driver Pack - 7.00 A 1 + sp149082 + HP ZBook Fury G9 MWS Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 2/4/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170270.exe - 1568589832 - 743A690D5F5ADB61389B6FD398B48357 - A3581EC40C18DCF81492CDE60ADBB84A8659C8E34B5328AF349654A81113A2D4 - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170270.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170270.html - HP Engage Go 13.5 inch Mobile System Windows 11 x64 Driver Pack + 8/31/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149082.exe + 2180501496 + b7f2b9b37b3b1cd2592ddc218c761418 + DA98B40674A9AB74AB9DA6D30F1BAE3E377726D301980B9297FA352FF64A1901 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149082.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149082.html + HP ZBook Fury G9 MWS Windows 11 Driver Pack true - sp100638 - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack - 8.00 A 1 + sp151777 + HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 12/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100638.exe - 857206720 - c0856a1bcd5884f70843149d297f7f01 - 7F43066335BABC5112F281EB64D39D389E09A20923F3C4DF25EE28E2818A08F8 - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100638.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100638.html - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack - false + 3/20/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151777.exe + 1164146832 + 223975fea3cc26db0557d04b5a60687a + 3AD4BD9612BDED4309CE0211A5D81689EDBA7A609431FB3ED746F20CBDDC7451 + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151777.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151777.html + HP Pro/EliteBook 4/6x5 G10 Windows 11 x64 Driver Pack + true - sp87513 - HP Z440/Z640/Z840 Windows 10 x64 Driver Pack - 5.2018 J 1 + sp103538 + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 5/9/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87513.exe - 729843336 - b20f57da46d2612be620414dc9cafa1b - EF6B17B561F3D29DB1A96067BE3268F6B3F8E2C94DC5C5EBECAA832FD8B4D9B8 - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87513.cva - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87513.html - HP Z440/Z640/Z840 Windows 10 x64 Driver Pack + 4/20/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103538.exe + 796261808 + 6915293e4e101b5512cc08b9d80c9b51 + A5EB30EE8D80DD45CD68DE4E5ADA1ACA31AB7E11D92D8A95FB36D1575D596D87 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103538.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103538.html + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack false - sp80904 - HP Folio 1040 G3 Windows 10 x64 Driver Pack - 8.00 A 1 + sp96027 + HP ElitePro 4/6/800 G2 AiO Win 10 x64 Driver Pack + 13.0 A 1 Manageability - Driver Pack - 6/23/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80904.exe - 420414032 - 99f44b012491bf3ae6747c10b907311b - 420B90437740763A4BB00FDBAE1C2737DB6D57EC37B7C14511154A4E9C21C7DB - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80904.cva - https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80904.html - HP Folio 1040 G3 Windows 10 x64 Driver Pack + 5/1/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96027.exe + 785697008 + a866ec67a09821919e6adca373d72ae8 + 34B6485BC73A830EB1553D8CBDA6688AEA355F44900F8DDB7E80213B9DA376A8 + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96027.cva + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96027.html + HP ElitePro 4/6/800 G2 AiO Win 10 x64 Driver Pack false - sp147284 - HP Pro/EliteBook 4/6x5 G10 Windows 10 x64 Driver Pack + sp147680 + HP ProBook x360 435 G8 Windows 11 Driver Pack 2.00 A 1 Manageability - Driver Pack - 5/22/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147284.exe - 872470216 - 4e9162ac83649b6ce51f6ab47a2dfb61 - 32771130739BC51470B6FB301817C7F26591517451FE2F16C7543CA700A226F9 - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147284.cva - https://ftp.hp.com/pub/softpaq/sp147001-147500/sp147284.html - HP Pro/EliteBook 4/6x5 G10 Windows 10 x64 Driver Pack + 6/7/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147680.exe + 934364800 + 03625def9176cc45cd149a921f02fe35 + 04402493C393F6A62551A0B8450335C6CCBD87CC246920ACD894CA3E1DAE1246 + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147680.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147680.html + HP ProBook x360 435 G8 Windows 11 Driver Pack true - sp168524 - HP Engage One Pro AIO Windows 11 IoT Driver Pack - 1.00 A 1 + sp174401 + HP Engage One G2 AiO System Windows 11 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 12/19/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168524.exe - 933359904 - 62637A592B7E89F5AA35669CB532D08A - EABA823D9370A9AB27EC95F2963C25BAE2F99FC6F5C91B8ED198604B9C5C290F - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168524.cva - https://ftp.hp.com/pub/softpaq/sp168501-169000/sp168524.html - HP Engage One Pro AIO Windows 11 IoT Driver Pack + 8/18/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174401.exe + 1051379352 + A9601F1EB16E55D24F71FF13350890DA + 1857EADB0C0779EA44EEFFC7E60EC08681AB6C0B5FFB45DAA1C5414D30164DB6 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174401.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174401.html + HP Engage One G2 AiO System Windows 11 x64 Driver Pack true - sp155856 - HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack - 11.00 A 1 + sp114257 + HP Elite Slice Windows 10 x64 Driver Pack + 21.00 A 1 Manageability - Driver Pack - 11/21/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155856.exe - 2680757000 - 2482E22E21471F2409E74C1BB9684946 - 58F4CA20825F1E7A208E0AF03FAABFE668E822DBC637D38040C1129CB1575095 - https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155856.cva - https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155856.html - HP Z4 G5, Z6 G5, Z8 G5 Windows 11 x64 Driver Pack + 6/24/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114257.exe + 544124168 + 9b951906242503c0461b8e5c41d3be23 + 33D208CDDE8E3D87EBA44EE6C069FE1E87FB0578FC65C04168B4EEE49CD30DBC + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114257.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114257.html + HP Elite Slice Windows 10 x64 Driver Pack false - sp99651 - HP ProDesk 680 G4 MT Windows 10 x64 Driver Pack + sp80891 + HP Spectre Pro x360 G2 Windows 10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 6/23/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80891.exe + 404084848 + 23e5efd7d3e01649b5cb52c572b77815 + 8C065D686049FB4A5C436ED9B44AD2AB7D6A82933041E56F7BB443B02A484F6A + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80891.cva + https://ftp.hp.com/pub/softpaq/sp80501-81000/sp80891.html + HP Spectre Pro x360 G2 Windows 10 x64 Driver Pack + false + + + sp96024 + HP Z VR Backpack G2 Windows 10 x64 Driver Pack + 05.2019 A 1 + Manageability - Driver Pack + 5/7/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96024.exe + 457864576 + 49ef17eca4be032199e05c5305d3755c + 4E51E2E10C644CC9CF6A144C7315B5C17ACE64E569547CD12C5DEB76B9410EFB + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96024.cva + https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96024.html + HP Z VR Backpack G2 Windows 10 x64 Driver Pack + false + + + sp147679 + HP ProBook x360 435 G8 Windows 10 x64 Driver Pack 4.00 A 1 Manageability - Driver Pack - 10/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99651.exe - 817336008 - 6ee749d402f24d47a45ff5c74e95d4b5 - DECE7CE4D745EB7A8F60DEE4D83C6C2DE58A5D726E3160E1B522E4484355154F - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99651.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99651.html - HP ProDesk 680 G4 MT Windows 10 x64 Driver Pack + 6/7/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147679.exe + 929051944 + 177e71e02a7de43d38d1715daf9e9a4d + 0129FC1D6CC8119721ED53483D2C8CC811B2F98633922D94B004BB7429797FFA + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147679.cva + https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147679.html + HP ProBook x360 435 G8 Windows 10 x64 Driver Pack + true + + + sp91750 + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 2.00 A 1 + Manageability - Driver Pack + 8/27/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91750.exe + 769844016 + 77bb1117cbe259246961eca2326b4c12 + 68F60B2B981B433E92285645E87FCC51116A3CB958B588A358D136411E968E3F + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91750.cva + https://ftp.hp.com/pub/softpaq/sp91501-92000/sp91750.html + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + false + + + sp151810 + HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack + 6.00 A 1 + Manageability - Driver Pack + 3/27/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151810.exe + 1057437280 + b2ca4dcb1518501f341b60a206f4311a + 07327A7758F26562258B7B2C420E8005E99C354F8F07E8B00D0BF67B549248B4 + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151810.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151810.html + HP ZHAN/Pro/Elite 4/6x5 Windows 11 Driver Pack + true + + + sp114221 + HP EliteDesk 705 G5 DM Win10 x64 Driver Pack + 7.00 A 1 + Manageability - Driver Pack + 6/17/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114221.exe + 410068800 + 2228f27d80819f2e8ffacccfcf9323c5 + 3E317EC7EDFFC5DBE4249C302B733222B44B0F6324129A7D4F6E83219047BC19 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114221.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114221.html + HP EliteDesk 705 G5 DM Win10 x64 Driver Pack false - sp136330 - HP ElitePro 4/6/8x0 G6/7 PC Win 11 Driver Pack - 1.00 A 1 + sp173588 + HP Engage Flex Pro G2 Windows 11 x64 Driver Pack + 9.00 A 1 Manageability - Driver Pack - 11/24/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136330.exe - 1075315208 - 1e9252df81b94d657e476ca306d3d8f2 - FE0B9D2562C98272F397C876EFB22ADCC35D2D100D6C5B97984619FF0CC870C4 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136330.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136330.html - HP ElitePro 4/6/8x0 G6/7 PC Win 11 Driver Pack + 6/15/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173588.exe + 2473983504 + FCF4361EA2F67CD1514E2BA34994818A + 22C72E3F2E22027464E064E312C28733990D80BA403C4C1C175485991EC1CB90 + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173588.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173588.html + HP Engage Flex Pro G2 Windows 11 x64 Driver Pack false - sp112839 - HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack - 1.00 A 1 + sp145104 + HP ZBook Studio 16.0 G9 MWS Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 3/2/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112839.exe - 554155496 - c600882fb59124d28d81e5dc78079dc9 - 91381776716EBFC03B49638CD527415461D312691B1D54BB5E984BC00EDA9E0F - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112839.cva - https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112839.html - HP ProBook 635 Aero G8 Windows 10 x64 Driver Pack - false + 3/10/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145104.exe + 2119334360 + a933f42a9e5d89087c151c016f1348c1 + DCE2843483C333A474425FC1E1B8960A87B27BA181491F579879B45D38839B16 + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145104.cva + https://ftp.hp.com/pub/softpaq/sp145001-145500/sp145104.html + HP ZBook Studio 16.0 G9 MWS Windows 10 x64 Driver Pack + true - sp113468 - HP ElitePro 4/6/800 G6 DM Windows 10 x64 Driver Pack - 4.00 A 1 + sp110038 + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 13.0 A 1 Manageability - Driver Pack - 4/26/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113468.exe - 1536814072 - 0258a9a34f05197b2a69a83437123612 - C92F4302D48A011B8F44DDB65CAC95AC10A722F02AEEFC841D512F26075723D1 - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113468.cva - https://ftp.hp.com/pub/softpaq/sp113001-113500/sp113468.html - HP ElitePro 4/6/800 G6 DM Windows 10 x64 Driver Pack + 9/11/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110038.exe + 1492441416 + a1bd3a212ad3af9af3351e206092f6a6 + 09D89240BE4848AF7536EEE779CCC66DDAD67B5B101062B7005A5DE5F91BACF6 + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110038.cva + https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110038.html + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack false - sp95456 - HP ElitePro 4/6/800 G4 AiO Win10 x64 Driver Pack - 6.00 A 1 + sp154015 + HP Z6 G5 A Windows 11 + 5.00 A 1 Manageability - Driver Pack - 3/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95456.exe - 598812944 - e25763075571cdb92842f551c4e6c041 - 6D40114322A2C0618969ABA198863B0D0BFC6E49E58F0CD12391830947DCDE8D - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95456.cva - https://ftp.hp.com/pub/softpaq/sp95001-95500/sp95456.html - HP ElitePro 4/6/800 G4 AiO Win10 x64 Driver Pack + 8/5/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154015.exe + 1724761512 + 14CA513082FBB9DD6B693D7FCB4AA78B + 882389A5814299FFDFFE689E2923A90480B22D0301756EDD9F9977A1687AFBBC + https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154015.cva + https://ftp.hp.com/pub/softpaq/sp154001-154500/sp154015.html + HP Z6 G5 A Windows 11 false - sp151310 - HP Engage One Pro AIO Win11 x64 Driver Pack - 5.00 A 1 + sp173315 + HP EliteDesk 8 Mini G2i Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 2/5/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151310.exe - 617779696 - 833c03541624bc6556fb0e91e4e2c853 - ABF87165E738CDBCDEC186515A6A51841144A6A8E3E2420FC0AC5FC2D1133512 - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151310.cva - https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151310.html - HP Engage One Pro AIO Win11 x64 Driver Pack + 5/29/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173315.exe + 2408590592 + 111CF41D479EF8CF187AB83CBAA8190D + 6B098DA4C2F299590D488F5CD34EAF67E1DAE43A6160058602CBA84C66ECA064 + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173315.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173315.html + HP EliteDesk 8 Mini G2i Windows 11 Driver Pack true - sp115298 - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack - 11.00 A 1 + sp144683 + HP Probook 6x0 G8 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 6/30/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115298.exe - 1627039704 - 40dea0e5a94d5ef9b89bef4bde9fc9e2 - C831F8A3397B2B035C6BEFBEB0DED7B3E62AAA3AEA60FA0F1A53335B94EEF504 - https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115298.cva - https://ftp.hp.com/pub/softpaq/sp115001-115500/sp115298.html - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 2/2/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144683.exe + 1618021104 + 541bbe7479369db4c0e395194af29141 + FB98348B91BADC1BDD86080126E9361E8A624D9D2776E7489FE37CAF1C4765F5 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144683.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144683.html + HP Probook 6x0 G8 Windows 10 x64 Driver Pack false - sp92312 - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack - 2.00 A 1 + sp103580 + HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 10/19/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92312.exe - 627241760 - e61cf6f2eac97af0c0fa98f0587b1a4b - 3717A741B5A2EEE96A0C6189C35A0517A61BD627062F35D596F74D17F528833E - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92312.cva - https://ftp.hp.com/pub/softpaq/sp92001-92500/sp92312.html - HP EliteBook x360 1040 G5 Windows 10 x64 Driver Pack + 4/23/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103580.exe + 420116848 + fae470e85c868cdfc76138464e9acd02 + 6D7CD9F87434F6CA26452F7AE95E487C1C14263DC93781FD9DA0F5B9BB455FF9 + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103580.cva + https://ftp.hp.com/pub/softpaq/sp103501-104000/sp103580.html + HP ElitePro 400/600/800 G4 AiO Win10 x64 Driver Pack false - sp113956 - HP EliteBook x360 830 G7 Windows 10 Driver Pack - 5.00 A 1 + sp96760 + HP ZBook 15v G5 Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 5/21/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113956.exe - 1214304392 - 53e003fd40c41fc7cae87b702a6d8c44 - 785172C3F45D86138ECF02D2D5E3B7F4CC1E788A37D564E167E04AEC795CC757 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113956.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113956.html - HP EliteBook x360 830 G7 Windows 10 Driver Pack + 5/29/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96760.exe + 931778688 + 5c664d71495205cab3fdea6861fc1b65 + 0D0CFE088E4822F5267F6103F5DF5D4848FFF6D5E639D356AF703B02BF2431D1 + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96760.cva + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96760.html + HP ZBook 15v G5 Windows 10 x64 Driver Pack false - sp136241 - HP ProBook x360 11 G7 Windows 11 Driver Pack + sp138876 + HP Presence Control Kit Windows 10 x64 Driver Pack 1.00 A 1 Manageability - Driver Pack - 11/18/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136241.exe - 1157406744 - c5e581fbde97d2960ac2ed3e57204947 - AE93ABB3AB36023BDAA705FC12F256C10823550B7C547EF7B659B1E492F02981 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136241.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136241.html - HP ProBook x360 11 G7 Windows 11 Driver Pack + 3/15/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138876.exe + 805242392 + b58d2a70d18beca0cbdf4c33dbb2cbb5 + 28A034E7AA31C427BEF2B9854B4035804F33315C81A929B422CAD54DE9BCC30D + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138876.cva + https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138876.html + HP Presence Control Kit Windows 10 x64 Driver Pack false - sp164397 - HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack - 5.00 A 1 + sp101806 + HP ProDesk 405 G4 SFF Windows 10 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 10/1/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164397.exe - 2427362408 - 9C2FB3DD2A35D543DCD2AC59B949C266 - 729D9B4383264032473268B90A2912BF61EA2B42CBFAC022F9EC37993ABF06E1 - https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164397.cva - https://ftp.hp.com/pub/softpaq/sp164001-164500/sp164397.html - HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack - true + 3/2/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101806.exe + 831201696 + e8763b7212d1c0d57f47646e1dd99b3b + B6181D188288E428614F0EA3DA2228D64F8FAF034780A1566C0F8711F0F24D52 + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101806.cva + https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101806.html + HP ProDesk 405 G4 SFF Windows 10 Driver Pack + false - sp140361 - HP Z2G8 Windows 10 x64 Driver Pack + sp94743 + HP EliteBook x360 830 G5 Windows 10 Driver Pack + 1.00 A 1 + Manageability - Driver Pack + 1/22/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94743.exe + 617205528 + b7c3b25d3b44b910761bc3ea168714b3 + 93E6AFC81D1140217032C1B22422FCE260AC12108516D711FAB704EFFDD73E79 + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94743.cva + https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94743.html + HP EliteBook x360 830 G5 Windows 10 Driver Pack + false + + + sp93540 + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack 5.00 A 1 Manageability - Driver Pack - 5/16/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140361.exe - 1686022488 - f6aaa19cfb98fe15c77cd5c05eedc542 - 03B433B5A1F7ED74B56A74DF49755E1C864CF88177714BF583E84E2152D90B18 - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140361.cva - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140361.html - HP Z2G8 Windows 10 x64 Driver Pack + 1/11/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93540.exe + 865656488 + 1e54c6dde98fa1000423dc36611ae1ea + B759BCD38A632E03CE1B21D2864BFB6B62B451B01F60F0BFC782A0C0C1309ED5 + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93540.cva + https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93540.html + HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack false - sp144661 - HP Engage Flex Pro G1 Win10 x64 Driver Pack - 12.00 A 1 + sp143754 + HP ElitePro 6/800 G6 SFF Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 1/18/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144661.exe - 1170094944 - bdd5bd381ecdac1186e35569db0071d4 - 9EFFB77F655C156523DD87A3F3900FE2A1652D2FD77359538B75D1F8F6CFA795 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144661.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144661.html - HP Engage Flex Pro G1 Win10 x64 Driver Pack - true + 11/28/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143754.exe + 1226001688 + d5f2b06d204a514e0fd93fc6163004db + 5CB6061990A2154194889DBC1A9D922299ECE28660E2CE829C50EC69733B2494 + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143754.cva + https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143754.html + HP ElitePro 6/800 G6 SFF Windows 11 Driver Pack + false - sp167339 - HP Engage One Pro AIO G2 Windows 11 IoT Driver Pack - 3.00 A 1 + sp92593 + HP Z2 Mini G3 Windows 10 x64 Driver Pack + 12.2018 M 1 Manageability - Driver Pack - 12/12/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167339.exe - 1292726488 - 487A4C4DB8EA384AD745F55A72FBFDFD - EC9F12AEAB425DB5A8B793EAE1E2E298A6ED1F02D470DE61E9D4A6DAC6ECD691 - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167339.cva - https://ftp.hp.com/pub/softpaq/sp167001-167500/sp167339.html - HP Engage One Pro AIO G2 Windows 11 IoT Driver Pack - true + 12/3/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92593.exe + 736600160 + 2cf4084da531239ed1e37c2888156c3e + 5A0CF7FA28EAC2D9D1D64E05297C5EEF96F27207C26BECBAA70980FD52A52411 + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92593.cva + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92593.html + HP Z2 Mini G3 Windows 10 x64 Driver Pack + false - sp92562 - HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack - 6.00 A 1 + sp140568 + HP ZBook Power G7 Windows 10 x64 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 11/8/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92562.exe - 506033224 - ea8bf4e1c02c4f41c075652a534c15ca - 6EA8160DAC9C2DE5D6B10E993C3453BF0032F5E1D1E68E22EDD5945E0C3152C5 - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92562.cva - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92562.html - HP Elite/Pro G1 Tablet Windows 10 x64 Driver Pack + 6/2/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140568.exe + 1338253608 + 3127b5791ddef10e3738045645f1df6c + 324AFD2F73D2A49E53168E65FA032B09E4F6C595213107D5CD0CED0D437D12D0 + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140568.cva + https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140568.html + HP ZBook Power G7 Windows 10 x64 Driver Pack false - sp170165 - HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack - 6.00 A 1 + sp155095 + HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack + 8.00 A 1 Manageability - Driver Pack - 1/29/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170165.exe - 2606385576 - E8861E457156925F17E989D3E1E0A0B5 - 2EB3F2391D7DFE4BBEB291B9D9FECE14DCE9CF37A980283F36C146B0DEB71F0C - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170165.cva - https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170165.html - HP Pro/EliteBook 4x0/6x0 G11 Windows 11 Driver Pack + 11/21/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155095.exe + 2088474584 + BEEBB93DBD4FF71B410CFCB0B132C85C + F4582C68C98A25F3328ABC43B144B102017A2BE3226D75056373D8B5A8AC00F8 + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155095.cva + https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155095.html + HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack true - sp136447 - HP ZBook Fury G8 Windows 10 x64 Driver Pack - 3.00 A 1 + sp87516 + HP Z2 Mini G3 Windows 10 x64 Driver Pack + 5.2018 J 1 Manageability - Driver Pack - 11/30/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136447.exe - 1675693936 - bcafe8bcf252ad73d0426eda4d2717dd - 4968A9A2132C8665D3CA3FD3BACC79E9C812A777AB2F5D7BE81519BEC9A1D4A0 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136447.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136447.html - HP ZBook Fury G8 Windows 10 x64 Driver Pack + 5/9/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87516.exe + 851531072 + 690e079b22cd9f9b7cb90d9af7fc7b5a + D699F04D2ACFF489CC53645C71E2D4662BEF1C728E8DF6BDC7D4E357CDF98A0C + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87516.cva + https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87516.html + HP Z2 Mini G3 Windows 10 x64 Driver Pack false - sp84239 - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + sp136423 + HP ElitePro 6/800 G8 DM Win 11 Driver Pack 1.00 A 1 Manageability - Driver Pack - 12/14/2017 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84239.exe - 1049692384 - a2b96f06d028b6b776867305ccc7e459 - 0915D48905D3A17CA02ABAE80D5D48DE981E6F643B332A27C16A0DB30003566E - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84239.cva - https://ftp.hp.com/pub/softpaq/sp84001-84500/sp84239.html - HP ProBook 4x0 G5 Windows 10 x64 Driver Pack + 2/26/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136423.exe + 1449185032 + 52dd83c3beb915e06ee1f35deaadfd65 + E011CCD75461C2465DB362B15F90263F54FB2936A83B667C608B339B4CC09EEC + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136423.cva + https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136423.html + HP ElitePro 6/800 G8 DM Win 11 Driver Pack false - sp151792 - HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack - 4.00 A 1 - Manageability - Driver Pack - 3/25/2024 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151792.exe - 1164102512 - e2786315b93f21aa960e4d0731371117 - EC1F4E7B0D59084E74CC157C84D22CC647232E42880FA165621F3F8F1FF8B7B3 - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151792.cva - https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151792.html - HP ZBook/EliteBook 8x5 G10/A Windows 11 Driver Pack - true - - - sp149195 - HP ZBook Power G10A MWS Windows 11 Driver Pack - 3.00 A 1 - Manageability - Driver Pack - 9/7/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149195.exe - 1669827432 - 493b65f2f922383537c39e5fbd4d153f - 0647BC88C17E867F6A3AB601FEBBE0902D612A7781496C2A1B135CD3362CAF45 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149195.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149195.html - HP ZBook Power G10A MWS Windows 11 Driver Pack - true - - - sp113578 - HP ProBook 4x5 G8 Windows 10 x64 Driver Pack - 2.00 A 1 + sp140433 + HP Z2G5 Windows 10 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 5/3/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113578.exe - 1116523344 - dee0a66126a46b03a74f7e397e2bfc20 - 16A29A971BDD6D6AF0AB6752EED93E2B88CAD3CC505EA577C05F98B59E5B16F6 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113578.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113578.html - HP ProBook 4x5 G8 Windows 10 x64 Driver Pack + 6/10/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140433.exe + 1588293256 + 3095c2b0084a7f4c0fb7c3c7f934f482 + 14EA0F3AD6228B4AD09A2CA0D390BAAF154F8D90910CDF067EEFC340F945179E + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140433.cva + https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140433.html + HP Z2G5 Windows 10 x64 Driver Pack false - sp168418 - HP Engage Flex Pro G2 Windows 10 IoT Driver Pack - 7.00 A 1 + sp149133 + HP ProBook x360 Fortis G9 Windows 11 Driver Pack + 5.00 A 1 Manageability - Driver Pack - 12/16/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168418.exe - 2490567520 - 1AF553A05C5E34018A6225321D0D8412 - 40B618AC3F2DD7762F797E4753802C2640FB56A151736E66DDEDEB1682C55944 - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168418.cva - https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168418.html - HP Engage Flex Pro G2 Windows 10 IoT Driver Pack + 9/4/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149133.exe + 770093592 + d2c9273c45cf290f7271377c215acf09 + AB09812B39A07AAE61C85A59BDAD7BF75E697DFF956AC5D739BE2EE8B8C7E8CC + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149133.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149133.html + HP ProBook x360 Fortis G9 Windows 11 Driver Pack true - sp147884 - HP ZCentral 4R Windows 10 x64 Driver Pack - 9.00 A 1 + sp150285 + HP EliteBook 8x5 G8 Windows 11 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/22/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147884.exe - 1680920248 - 1d691ba34fd8d9cc46aa5a737b78185e - 57BC33E27183CE9AF0D6BA92D28C629D9CC9F9BFE0000E91A99B677735A021E6 - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147884.cva - https://ftp.hp.com/pub/softpaq/sp147501-148000/sp147884.html - HP ZCentral 4R Windows 10 x64 Driver Pack + 11/29/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150285.exe + 966180600 + 1c946da93a00ac9284861ec796fcfca8 + 459FABB556B5486E08A21CFF7BE42E5A04C273725C172657B464888273B897EF + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150285.cva + https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150285.html + HP EliteBook 8x5 G8 Windows 11 Driver Pack false - sp173107 - HP Pro/EliteBook 4/6 G2a/G2ah NB Windows 11 Driver Pack - 2.00 A 1 - Manageability - Driver Pack - 5/15/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173107.exe - 1486121856 - F180689E0CBADEE01086F6B9E1992B9E - CCF8A3E34143AA31F66AC5497D19583A9DCB1BF0C169284E2200058C9D7E559B - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173107.cva - https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173107.html - HP Pro/EliteBook 4/6 G2a/G2ah NB Windows 11 Driver Pack + sp149137 + HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack + 5.00 A 1 + Manageability - Driver Pack + 9/4/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149137.exe + 1601075504 + 1e8da8a24a0cb2f733c9bc52df9ee7a9 + E32EAA6FDAC1B5E63BAE175E6949B9765E1E5E569C60D68FA1BAD6D2ED33A234 + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149137.cva + https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149137.html + HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack true - sp112210 - HP ProBook x360 11 G7 Windows 10 x64 Driver Pack - 1.00 A 1 + sp99671 + HP ProBook x360 11 G3 Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 1/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112210.exe - 538373680 - fdd8b206dd8f0912e9b03931fe04b795 - D8F049A58C8B1D1F0775095C67F280574345CB0E117F7A434AC4B90C2BE7CB3A - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112210.cva - https://ftp.hp.com/pub/softpaq/sp112001-112500/sp112210.html - HP ProBook x360 11 G7 Windows 10 x64 Driver Pack + 11/19/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99671.exe + 682289688 + 31e34c28897494dee4ac8c7a9b7e8eaf + 143404C64F695C48E8F37CDB30182648C648D292D31FD263362BD4BA09A688E7 + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99671.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99671.html + HP ProBook x360 11 G3 Windows 10 x64 Driver Pack false - sp173804 - HP EB/ZB 8 G2a NB/MWS Windows 11 Driver Pack - 3.00 A 1 + sp144918 + HP Engage Go 13.5 inch Mobile System Win10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 7/9/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173804.exe - 1233902536 - 3B5B69FE01A15F637906A37B2D680D8D - BD80CF524DA6931F3FEAB95A40A88F446A90342E99FC8E9C8E77FBA0E22D4CCF - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173804.cva - https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173804.html - HP EB/ZB 8 G2a NB/MWS Windows 11 Driver Pack + 2/16/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144918.exe + 986054576 + 566c303e075712e8ecfac50853e8fdd5 + 09663C938D58BF3835136A1BDA2C2BB85CDD71778764B4EA5E0F55E1ED5594C2 + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144918.cva + https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144918.html + HP Engage Go 13.5 inch Mobile System Win10 x64 Driver Pack true - sp99719 - HP Probook 6x5 G4 Windows 10 x64 Driver Pack - 6.00 A 1 + sp90256 + HP Elite Slice Windows 10 x64 Driver Pack + 12.0 A 1 Manageability - Driver Pack - 12/9/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99719.exe - 814213376 - 2196cca0455bd7befb71b8d935bf8346 - 54BC09AF7D48A8B25C9ABE857B11885241FBBA840045B36672AA3A7B6467BB33 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99719.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99719.html - HP Probook 6x5 G4 Windows 10 x64 Driver Pack + 8/2/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90256.exe + 423286792 + de30a617914332bd1e4cf45c1031f57d + DCD4641E3B500F15B85C4EDBD5CCDDF00588EE02B832A82588CC4BAF1FB3BB98 + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90256.cva + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90256.html + HP Elite Slice Windows 10 x64 Driver Pack false - sp121402 - HP ZBook Fury G8 Windows 10 x64 Driver Pack - 2.00 A 2 + sp158930 + HP Z6 G5 A Windows 11 + 7.00 A 1 Manageability - Driver Pack - 7/12/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121402.exe - 1706492104 - f8c88474f5535ba97490def879015ae8 - 0E818DAD3767BDF11440FC4F09F5779D8ED86EB47E985F88F02A98717A16D37C - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121402.cva - https://ftp.hp.com/pub/softpaq/sp121001-121500/sp121402.html - HP ZBook Fury G8 Windows 10 x64 Driver Pack + 5/20/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158930.exe + 3392323704 + 5DCD39E35F1E576D69E096A115AA2087 + A43F9F01DC261394B2F3CC9F7FCB3A35784D1171C3072E490767D70E430B795A + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158930.cva + https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158930.html + HP Z6 G5 A Windows 11 false - sp111581 - HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack - 1.00 A 1 + sp173547 + HP Pro4 AOI G1i AI PC Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 12/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111581.exe - 1213481008 - 953f9d2d395e767ddc5aff0a0f3fb528 - EECC3F09C2E430C1D48A3F156A7AEC1922BC852DC97DA00081C28F1005F1F7F0 - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111581.cva - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111581.html - HP EliteBook x360 1030/40 G8 Windows 10 Driver Pack - false + 6/10/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173547.exe + 3039754952 + 75A056A2C916D33ADBC4B8D14A11BD2D + 474C4130774B20393806E5EA2E4BFCFB392AF89834D82AB31D11712C9C4F33F6 + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173547.cva + https://ftp.hp.com/pub/softpaq/sp173501-174000/sp173547.html + HP Pro4 AOI G1i AI PC Windows 11 Driver Pack + true - sp144988 - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack - 8.00 A 1 + sp143099 + HP EliteOne 800 G6 AiO Win 11 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/24/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144988.exe - 1932939584 - 13cd9acc0905294bd078ce90a8b041f3 - E3C4433BA20E7716D7D65D326CEDC044B5E6598BA8F6E381DE5394AF95DF1357 - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144988.cva - https://ftp.hp.com/pub/softpaq/sp144501-145000/sp144988.html - HP Elite/ZBook 8x0 G8 Windows 10 x64 Driver Pack - true + 11/7/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143099.exe + 820741584 + 97caeb95b2fef8f45a68b406fd43e508 + 114567DF4A0CB68A477B4C156A400D71C445CCB2C18830C6750D48BCB17B42E6 + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143099.cva + https://ftp.hp.com/pub/softpaq/sp143001-143500/sp143099.html + HP EliteOne 800 G6 AiO Win 11 Driver Pack + false - sp149120 - HP EliteBook/ProBook 6x0/4x0 G10 Windows 11 Driver Pack - 3.00 A 1 + sp173495 + HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack + 11.00 A 1 Manageability - Driver Pack - 9/20/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149120.exe - 1614352832 - 8835eca05048ca85305a0076a258131b - 3B2FD24C3C6C045D5747F31A1648019CC11E0F21E189F7FAF7E5546776172803 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149120.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149120.html - HP EliteBook/ProBook 6x0/4x0 G10 Windows 11 Driver Pack + 6/5/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173495.exe + 1300961200 + 2A373361861BDDF6C30A25C06A62FB81 + 9B84ACF644C44E49B327481EA76725510CD9B15D7843D6F4D55F6C13ED99CB42 + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173495.cva + https://ftp.hp.com/pub/softpaq/sp173001-173500/sp173495.html + HP EliteOne 8x0 27 G9 AIO Win 11 Driver Pack true - sp149689 - HP Z4 Rack G5 Windows 10 - 2.0 A 1 + sp96860 + HP Z4G4 Windows 10 x64 Driver Pack + 4.2019 G 2 Manageability - Driver Pack - 10/19/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149689.exe - 1886895528 - 8ce1cf6fb1f35cc96e38a13a3c64ab95 - 6EBB1093A874F05E03D0DDC78027AFAB259D30AC9D93577B8F9B73F973141BE2 - https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149689.cva - https://ftp.hp.com/pub/softpaq/sp149501-150000/sp149689.html - HP Z4 Rack G5 Windows 10 + 6/4/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96860.exe + 698936808 + b3040ff6d62d7ac3986f453c8b25ddf5 + EA4A9551B1BD732FD7B8B83877EC382E55DAE82950BE5A75B0AB6B30D62B647D + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96860.cva + https://ftp.hp.com/pub/softpaq/sp96501-97000/sp96860.html + HP Z4G4 Windows 10 x64 Driver Pack false - sp123507 - HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack - 5.00 A 1 + sp101468 + HP Elite Slice Windows 10 x64 Driver Pack + 18.0 A 1 Manageability - Driver Pack - 7/23/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123507.exe - 1684494984 - 2eec91663d6a6a8b4d4279268d9e6f7d - F1CEB2AC35FB3EFF772FC77453C263A2452836F8E1432ACE037DC1D0EF0B1B36 - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123507.cva - https://ftp.hp.com/pub/softpaq/sp123501-124000/sp123507.html - HP ElitePro 4/6/8x0 G6/7 PC Win 10 x64 Driver Pack + 1/28/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101468.exe + 468612200 + 2f090051f8291d46858f7390f19a0e7e + 4B0BAA48503211D649E973AC1189D4EA2E1058022739CA4AFC0DB43CD5E1B251 + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101468.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101468.html + HP Elite Slice Windows 10 x64 Driver Pack false - sp105670 - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - 10.0 A 1 + sp151808 + HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 6/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105670.exe - 656656832 - e5d239724f3c49fa53cd01744b680cae - E20F04CB2C987AFDF65A67D52D097B6826C7BB069B3C13DB898E4DDE18FF7087 - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105670.cva - https://ftp.hp.com/pub/softpaq/sp105501-106000/sp105670.html - HP EliteBook 1040 G4 Windows 10 x64 Driver Pack - false + 3/25/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151808.exe + 1803198400 + 972f74b2586ed51ed6a7cdb65806f864 + 754E7F937479BD0D52F10F37042FBBD4C3F33FE5067A271CFBCFACCF54F71B2D + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151808.cva + https://ftp.hp.com/pub/softpaq/sp151501-152000/sp151808.html + HP EB 4/6x0 G9 ZHAN Windows 11 Driver Pack + true - sp136223 - HP ProBook 4x5 G8 Windows 11 Driver Pack - 1.00 A 1 + sp90191 + HP EliteDesk 705 G3 Win10 x64 Driver Pack + 13.0 A 1 Manageability - Driver Pack - 11/17/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136223.exe - 1153356552 - 42a2471e5d3c2c64ed1e49abccd921b1 - 9E9F4A3AFEFDA9EC8DDDF9D179A85B463EB0C1BD7D756A5011D0107005938C95 - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136223.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136223.html - HP ProBook 4x5 G8 Windows 11 Driver Pack + 7/25/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90191.exe + 663952432 + 39582bfc408d68d17cfe4c6f7ede0b58 + D9BF39B801C9BA8588017F7A92541F443F586136765EAE5E055336CEBBA5C13C + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90191.cva + https://ftp.hp.com/pub/softpaq/sp90001-90500/sp90191.html + HP EliteDesk 705 G3 Win10 x64 Driver Pack false - sp110196 - HP Probook 6x0 G7 Windows 10 x64 Driver Pack - 2.00 A 1 + sp114259 + HP ProDesk 405 G4 SFF Win 10 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 9/22/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110196.exe - 987167560 - a9f8f664b20400ddc283816e151e89a6 - 6DBC12390D0CA4FABE5311D95539B94A6B537D2305207543A47BDBA6A8DEFF2C - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110196.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110196.html - HP Probook 6x0 G7 Windows 10 x64 Driver Pack + 6/24/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114259.exe + 1112690824 + 2a2cc4abcb146dda2ad93d5a3a3d57f5 + 7AC44A76A0F3A7400D3EE0E9B5DA87EA0AA5AF7A1CF5A78B4AD00B194F5814C9 + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114259.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114259.html + HP ProDesk 405 G4 SFF Win 10 Driver Pack false - sp100598 - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack - 5.00 A 1 + sp86888 + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 1/14/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100598.exe - 800046288 - b62f25e25a0e4137341132537480b7a6 - 8D4CA91BD3E30B1DA7A45766A70315E54D0E4D1A6B80935488B7B74ECAE8B9E1 - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100598.cva - https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100598.html - HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 7/31/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp86501-87000/sp86888.exe + 753219208 + 65fde438dc21b5f8f81de262410db968 + FE4425EA4EA62A28B5939D4F658C23D58BF9BDE0359F7DD6B9DE86424D4DD3BF + https://ftp.hp.com/pub/softpaq/sp86501-87000/sp86888.cva + https://ftp.hp.com/pub/softpaq/sp86501-87000/sp86888.html + HP ProDesk 4x0 G5 SFF/MT Win10 x64 Driver Pack false - sp107667 - HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack - 1.00 A 1 + sp142804 + HP EliteBook 8x5 G7 Windows 11 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 8/18/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107667.exe - 1337174760 - d4176fd0b02f1a043f59f9e5174c3a69 - 0705B3D36D8D3E1C23A2AF13DA3AA6D8D4E0F1B7DFCBEAEA5BA71B6E02227103 - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107667.cva - https://ftp.hp.com/pub/softpaq/sp107501-108000/sp107667.html - HP ZBook Fury 15/17 G7 Windows 10 x64 Driver Pack + 10/6/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142804.exe + 685557256 + 533dc63cf36d3e19f3e56ba2e62c4e25 + E3AFE21084A6C58401E096359ADA6C06A9D9D625E5DEC58235DB02B348DFE70E + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142804.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142804.html + HP EliteBook 8x5 G7 Windows 11 Driver Pack false - sp111957 - HP EliteDesk 705 G3 Windows 10 x64 Driver Pack - 19.0 A 1 + sp151266 + HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 12/28/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111957.exe - 704988344 - 1fcd03b45b78beaee4f4588d0a71fe23 - 6F6D754826DE8B9CFC658D360EB9989E17220E3D8F60EB47FC09BEAEAAE7108E - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111957.cva - https://ftp.hp.com/pub/softpaq/sp111501-112000/sp111957.html - HP EliteDesk 705 G3 Windows 10 x64 Driver Pack - false + 2/13/2024 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151266.exe + 1578922200 + 486e8ff49b97faae32eda2b5dd978b31 + DC5D493D2DEF39A78E5D7F91943F7A4D57756E2C006E08563FFC7D72A7223E09 + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151266.cva + https://ftp.hp.com/pub/softpaq/sp151001-151500/sp151266.html + HP Pro/Elite Mini 4/6/800 G9 Win 11 Driver Pack + true - sp113514 - HP Z6/Z8 Windows 10 x64 Driver Pack + sp102074 + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack 6.00 A 1 Manageability - Driver Pack - 5/19/2021 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113514.exe - 1072468152 - fa6c46fe32e0a48fe80a4c41a1fff753 - 8A39A830AAE1F2D9B01E7321CAF1B983599EDAFC3AB8FAFC1DAF7F0363A0AF27 - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113514.cva - https://ftp.hp.com/pub/softpaq/sp113501-114000/sp113514.html - HP Z6/Z8 Windows 10 x64 Driver Pack + 3/20/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102074.exe + 794676896 + 38b396f3ef8c9c988fc0841a53bc0428 + A43899A3023067DB049E63D2C3BA6CBE88919E4F478A6D268DACE9496A529149 + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102074.cva + https://ftp.hp.com/pub/softpaq/sp102001-102500/sp102074.html + HP ProBook 4x0 G6/ZHAN G2 Windows 10 x64 Driver Pack false - sp110931 - HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack - 2.00 A 1 + sp145710 + HP EliteOne 8x0 27 G9 AIO Windows 10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 11/6/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110931.exe - 507441800 - 49033a4fc19f25cfc204e83ab1e26279 - C414AD9FB4CEE33A9F1EFF1458661EC5881AEB0D73EF90D6C3AEB52F676E3A72 - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110931.cva - https://ftp.hp.com/pub/softpaq/sp110501-111000/sp110931.html - HP EliteBook 8x5 G7 Windows 10 x64 Driver Pack - false + 4/26/2023 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145710.exe + 1473673504 + 0f6d6630ca01bdd76b9a77e0165f45f1 + 0A030B4EF670BED94BF520C848684AC7EBB07994C461B7A238CD1CCA3994B81B + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145710.cva + https://ftp.hp.com/pub/softpaq/sp145501-146000/sp145710.html + HP EliteOne 8x0 27 G9 AIO Windows 10 x64 Driver Pack + true - sp99544 - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack - 2.00 A 1 + sp84654 + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 10/9/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99544.exe - 901882232 - 4c26e35b4656e344796a9ea9ed49ac8f - C078831E211B90A64E6358499D6FB4D263A52F5164C6DD471EAE5493FE03E262 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99544.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99544.html - HP ZBook 15/17 G6 Windows 10 x64 Driver Pack + 1/10/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84654.exe + 698137688 + 3233aec6a4edbcddfdc5a87cbb60b432 + D26B91429FB1C7A80B4C917BFC3FD6DB99B77BEAB769841DC59026E0992FA5C2 + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84654.cva + https://ftp.hp.com/pub/softpaq/sp84501-85000/sp84654.html + HP ProBook x360 440 G1 Windows 10 x64 Driver Pack false - sp88717 - HP EliteBook 840r G4 Windows 10 x64 Driver Pack - 2.00 A 1 + sp93458 + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 6/26/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88717.exe - 786478632 - f4b57099d75a08b2eb31b60a05632d56 - 3F468F680288895300BDADEEC81E988EAE26B12ABCA7991351E72E1E272AB8B4 - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88717.cva - https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88717.html - HP EliteBook 840r G4 Windows 10 x64 Driver Pack + 3/1/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93458.exe + 596794608 + 2f0943ae99b68b09cd12c16d40358d0c + 19256ED13FF97AD5A5302913E6D1C1F1B4884EA285EA48ACB1B9BCCC07E0DB36 + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93458.cva + https://ftp.hp.com/pub/softpaq/sp93001-93500/sp93458.html + HP ProBook x360 11 G4 Windows 10 x64 Driver Pack false - sp96059 - HP EliteDesk 705 G3 Win10 x64 Driver Pack - 16.0 A 1 + sp92710 + HP EliteBook 7x0/8x0 G1 Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 5/2/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96059.exe - 789795000 - 82b73924a228c9fd12d24e74d7f40f3c - 532D17DBB2ADE328DAD3583DC1619CD32CBEE7D5BB10BAC4FBC99330460A8C86 - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96059.cva - https://ftp.hp.com/pub/softpaq/sp96001-96500/sp96059.html - HP EliteDesk 705 G3 Win10 x64 Driver Pack + 11/14/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92710.exe + 596764840 + 2ea16c24ec9a5c6c3c1f00a4dc7c000d + BBE860541399897BDFA671450C1D6A2183DB5677B8E82D152F803ECC5A4ED5B4 + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92710.cva + https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92710.html + HP EliteBook 7x0/8x0 G1 Windows 10 x64 Driver Pack false - sp138601 - HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack - 2.00 A 1 + sp168466 + HP EliteOne 8x0 27 G9 AIO Windows 11 Driver Pack + 10.00 A 1 Manageability - Driver Pack - 3/3/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138601.exe - 1527476312 - 66f3ffba1ecf5b8ed1bf7ad02b4bf5c0 - D94BF76E06D3A2A9B662A7CEC48BC61FE6A129D7699DCE576ED7ECB572ABB888 - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138601.cva - https://ftp.hp.com/pub/softpaq/sp138501-139000/sp138601.html - HP ElitePro 4/805 G8 SFF Windows 10 x64 Driver Pack - false + 12/18/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168466.exe + 1369723640 + F18184BB64160C2F62020FC9F4ECD142 + 4DDB203BE01C71BE0E33846290E6D4A2B840DA11FFBC3FAA9E44FD28104FFD24 + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168466.cva + https://ftp.hp.com/pub/softpaq/sp168001-168500/sp168466.html + HP EliteOne 8x0 27 G9 AIO Windows 11 Driver Pack + true - sp158689 - HP EliteBook G1i NB Next Gen Windows 10 Driver Pack - 1.00 A 1 + sp170270 + HP Engage Go 13.5 inch Mobile System Windows 11 x64 Driver Pack + 7.00 A 1 Manageability - Driver Pack - 5/20/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158689.exe - 1450240888 - 420BF0E159F4605BC05DB89BBBC71803 - 921556317C78FC5CA510FDC5DEEEAC58203FBA186B9D0920D4720E45B103FD5B - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158689.cva - https://ftp.hp.com/pub/softpaq/sp158501-159000/sp158689.html - HP EliteBook G1i NB Next Gen Windows 10 Driver Pack + 2/4/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170270.exe + 1568589832 + 743A690D5F5ADB61389B6FD398B48357 + A3581EC40C18DCF81492CDE60ADBB84A8659C8E34B5328AF349654A81113A2D4 + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170270.cva + https://ftp.hp.com/pub/softpaq/sp170001-170500/sp170270.html + HP Engage Go 13.5 inch Mobile System Windows 11 x64 Driver Pack + true + + + sp138480 + HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack + 3.00 A 1 + Manageability - Driver Pack + 2/21/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138480.exe + 1172344968 + 34c76021151d4ecf4373288ca6779730 + F2516EABFFA4CAAA0AB18B99CB7109D9A2C7968A0C8410D88A967F903A0B8D32 + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138480.cva + https://ftp.hp.com/pub/softpaq/sp138001-138500/sp138480.html + HP ElitePro 6/8x0 G8 PC Win 10 x64 Driver Pack false - sp160040 - HP Engage One Pro AIO G2 IoT10 2021 Driver Pack + sp174402 + HP Engage One G2 AiO System Windows 11 IoT 24H2 Driver Pack 2.00 A 1 Manageability - Driver Pack - 5/28/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160040.exe - 1180504440 - 3E2BC764DF77F912B2F169E5937A4BF0 - 1DC8D5A50521247988B0990F41AFE05B90ED100DB507F71ED4837017D3CB163C - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160040.cva - https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160040.html - HP Engage One Pro AIO G2 IoT10 2021 Driver Pack + 8/18/2026 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174402.exe + 1051379344 + 88DA5CD6FE3D64FBDEC06A0DCF1ADFCC + 5DEC02D395F37B53E2F5D53D879C65FDA3BC081E9B29963F88B99DB78A770687 + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174402.cva + https://ftp.hp.com/pub/softpaq/sp174001-174500/sp174402.html + HP Engage One G2 AiO System Windows 11 IoT 24H2 Driver Pack true - sp110418 - HP Engage Flex Pro G1 Win10 x64 Driver Pack - 8.00 A 1 + sp99542 + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 10/13/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110418.exe - 836850952 - 831e2d780c6a506378fd4bd996d1c2d7 - 8A3AF61BF4525034E554998230406937D169DE3B07FBCB07D17CAF5A3839ED31 - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110418.cva - https://ftp.hp.com/pub/softpaq/sp110001-110500/sp110418.html - HP Engage Flex Pro G1 Win10 x64 Driver Pack + 10/9/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99542.exe + 751569776 + 8444FF03352A5BF67313A87D0475EE93 + 0512FA4DB4F3C493297F59F61F5907B19F2C2F56735986475F9A801341D3A43F + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99542.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99542.html + HP EliteBook 7x5 G6 Windows 10 x64 Driver Pack false - sp101806 - HP ProDesk 405 G4 SFF Windows 10 Driver Pack - 3.00 A 1 + sp88881 + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 3/2/2020 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101806.exe - 831201696 - e8763b7212d1c0d57f47646e1dd99b3b - B6181D188288E428614F0EA3DA2228D64F8FAF034780A1566C0F8711F0F24D52 - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101806.cva - https://ftp.hp.com/pub/softpaq/sp101501-102000/sp101806.html - HP ProDesk 405 G4 SFF Windows 10 Driver Pack + 7/6/2018 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88881.exe + 724641272 + 00a3f300debb05aa98685c19d47ff117 + 1382ADB3801171458FE602345C1803289C4053C290F9F656A4152C70620E4912 + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88881.cva + https://ftp.hp.com/pub/softpaq/sp88501-89000/sp88881.html + HP ZB Studio G5/EB 1050 G1 Windows 10 x64 Driver Pack false - sp94743 - HP EliteBook x360 830 G5 Windows 10 Driver Pack - 1.00 A 1 + sp100850 + HP ElitePro 600/800 G2 AiO Windows 10 x64 Driver Pack + 14.0 A 1 Manageability - Driver Pack - 1/22/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94743.exe - 617205528 - b7c3b25d3b44b910761bc3ea168714b3 - 93E6AFC81D1140217032C1B22422FCE260AC12108516D711FAB704EFFDD73E79 - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94743.cva - https://ftp.hp.com/pub/softpaq/sp94501-95000/sp94743.html - HP EliteBook x360 830 G5 Windows 10 Driver Pack + 12/19/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100850.exe + 580069008 + c5437f21ea20cab0e4b8de9f8bb3ef65 + 49B400D2A32131B3F77D586B2F91B8031F706BD7390B6B033B893917B4066053 + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100850.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100850.html + HP ElitePro 600/800 G2 AiO Windows 10 x64 Driver Pack false - sp93540 - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + sp79214 + HP EliteBook 7x5 G2 Windows 10 x64 Driver Pack 5.00 A 1 Manageability - Driver Pack - 1/11/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93540.exe - 865656488 - 1e54c6dde98fa1000423dc36611ae1ea - B759BCD38A632E03CE1B21D2864BFB6B62B451B01F60F0BFC782A0C0C1309ED5 - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93540.cva - https://ftp.hp.com/pub/softpaq/sp93501-94000/sp93540.html - HP ProDesk 4x0 G4 SFF/MT Win10 x64 Driver Pack + 2/24/2017 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79214.exe + 425155176 + 43cc60329abaaec5fd62b9d6806d94ef + A524576E8129F191042E87CC337B6FC1E1825A079E3E46F011600CC772DF6421 + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79214.cva + https://ftp.hp.com/pub/softpaq/sp79001-79500/sp79214.html + HP EliteBook 7x5 G2 Windows 10 x64 Driver Pack false - sp143754 - HP ElitePro 6/800 G6 SFF Windows 11 Driver Pack - 5.00 A 1 + sp100529 + HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 11/28/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143754.exe - 1226001688 - d5f2b06d204a514e0fd93fc6163004db - 5CB6061990A2154194889DBC1A9D922299ECE28660E2CE829C50EC69733B2494 - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143754.cva - https://ftp.hp.com/pub/softpaq/sp143501-144000/sp143754.html - HP ElitePro 6/800 G6 SFF Windows 11 Driver Pack + 12/5/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100529.exe + 816693544 + a3c50b60291730e00c3e5438b7d9eef1 + F7DA5C5A2CA856BED4B81AAB83602FEF9B33004E921C41274D51022327CCED34 + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100529.cva + https://ftp.hp.com/pub/softpaq/sp100501-101000/sp100529.html + HP ProBook 4x0 G7/ZHAN G3 Windows 10 x64 Driver Pack false - sp92593 - HP Z2 Mini G3 Windows 10 x64 Driver Pack - 12.2018 M 1 + sp160036 + HP ProBook x360 Fortis G9 Windows 11 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 12/3/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92593.exe - 736600160 - 2cf4084da531239ed1e37c2888156c3e - 5A0CF7FA28EAC2D9D1D64E05297C5EEF96F27207C26BECBAA70980FD52A52411 - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92593.cva - https://ftp.hp.com/pub/softpaq/sp92501-93000/sp92593.html - HP Z2 Mini G3 Windows 10 x64 Driver Pack + 6/2/2025 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160036.exe + 937327600 + E9820CCEEFCD19DEA32B808EA096CB5F + 98C4A6E4EF3152321161574960A35D0A37994329A7C9E8AD5F71C1D0CFAF5CC8 + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160036.cva + https://ftp.hp.com/pub/softpaq/sp160001-160500/sp160036.html + HP ProBook x360 Fortis G9 Windows 11 Driver Pack false - sp140568 - HP ZBook Power G7 Windows 10 x64 Driver Pack - 5.00 A 1 + sp101209 + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack + 3.00 A 1 Manageability - Driver Pack - 6/2/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140568.exe - 1338253608 - 3127b5791ddef10e3738045645f1df6c - 324AFD2F73D2A49E53168E65FA032B09E4F6C595213107D5CD0CED0D437D12D0 - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140568.cva - https://ftp.hp.com/pub/softpaq/sp140501-141000/sp140568.html - HP ZBook Power G7 Windows 10 x64 Driver Pack + 1/6/2020 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101209.exe + 420851608 + 4118a69f9d80d994dabd57de80825780 + 5C71091C06364EDA6FF7292ACD4827ECB05B3FC9D6B30FDCDCD4E873A3AE4B3B + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101209.cva + https://ftp.hp.com/pub/softpaq/sp101001-101500/sp101209.html + HP ElitePro 4/6/800 G5 AiO Windows 10 x64 Driver Pack false - sp155095 - HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack - 8.00 A 1 - Manageability - Driver Pack - 11/21/2025 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155095.exe - 2088474584 - BEEBB93DBD4FF71B410CFCB0B132C85C - F4582C68C98A25F3328ABC43B144B102017A2BE3226D75056373D8B5A8AC00F8 - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155095.cva - https://ftp.hp.com/pub/softpaq/sp155001-155500/sp155095.html - HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack - true - - - sp87516 - HP Z2 Mini G3 Windows 10 x64 Driver Pack - 5.2018 J 1 + sp114225 + HP EliteBook x360 830 G5 Windows 10 Driver Pack + 6.00 A 1 Manageability - Driver Pack - 5/9/2018 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87516.exe - 851531072 - 690e079b22cd9f9b7cb90d9af7fc7b5a - D699F04D2ACFF489CC53645C71E2D4662BEF1C728E8DF6BDC7D4E357CDF98A0C - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87516.cva - https://ftp.hp.com/pub/softpaq/sp87501-88000/sp87516.html - HP Z2 Mini G3 Windows 10 x64 Driver Pack + 6/18/2021 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114225.exe + 1264780176 + 318b8b998e23fe4bddd3ef2bb7813d30 + 1F77BCED74EC03536D4CED7E8938D8979D19A03B28E9EDCD4E37D16EFD0DA52D + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114225.cva + https://ftp.hp.com/pub/softpaq/sp114001-114500/sp114225.html + HP EliteBook x360 830 G5 Windows 10 Driver Pack false - sp136423 - HP ElitePro 6/800 G8 DM Win 11 Driver Pack - 1.00 A 1 + sp142940 + HP Engage One Pro AIO Win10 x64 Driver Pack + 4.00 A 1 Manageability - Driver Pack - 2/26/2026 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136423.exe - 1449185032 - 52dd83c3beb915e06ee1f35deaadfd65 - E011CCD75461C2465DB362B15F90263F54FB2936A83B667C608B339B4CC09EEC - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136423.cva - https://ftp.hp.com/pub/softpaq/sp136001-136500/sp136423.html - HP ElitePro 6/800 G8 DM Win 11 Driver Pack + 9/30/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142940.exe + 691109648 + d47723e8d0416b448aed39497736eda5 + E0372C55672327D13C3C7834B86F28319DCC24BABA1E4A309A751A2659066668 + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142940.cva + https://ftp.hp.com/pub/softpaq/sp142501-143000/sp142940.html + HP Engage One Pro AIO Win10 x64 Driver Pack false - sp140433 - HP Z2G5 Windows 10 x64 Driver Pack - 7.00 A 1 + sp100497 + HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack + 10.0 A 1 Manageability - Driver Pack - 6/10/2022 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140433.exe - 1588293256 - 3095c2b0084a7f4c0fb7c3c7f934f482 - 14EA0F3AD6228B4AD09A2CA0D390BAAF154F8D90910CDF067EEFC340F945179E - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140433.cva - https://ftp.hp.com/pub/softpaq/sp140001-140500/sp140433.html - HP Z2G5 Windows 10 x64 Driver Pack + 12/4/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100497.exe + 843131728 + 1dfd07f0e7c77e4ae7b9914296e2d564 + 1E556C10463C23805B37488D7D15B7529A408E73471AC49E8952919C7B541538 + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100497.cva + https://ftp.hp.com/pub/softpaq/sp100001-100500/sp100497.html + HP ElitePro 4/6/800 G4 PC Win10 x64 Driver Pack false - sp149133 - HP ProBook x360 Fortis G9 Windows 11 Driver Pack - 5.00 A 1 - Manageability - Driver Pack - 9/4/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149133.exe - 770093592 - d2c9273c45cf290f7271377c215acf09 - AB09812B39A07AAE61C85A59BDAD7BF75E697DFF956AC5D739BE2EE8B8C7E8CC - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149133.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149133.html - HP ProBook x360 Fortis G9 Windows 11 Driver Pack - true - - - sp150285 - HP EliteBook 8x5 G8 Windows 11 Driver Pack - 3.00 A 1 + sp139593 + HP Z2G5 Windows 11 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 11/29/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150285.exe - 966180600 - 1c946da93a00ac9284861ec796fcfca8 - 459FABB556B5486E08A21CFF7BE42E5A04C273725C172657B464888273B897EF - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150285.cva - https://ftp.hp.com/pub/softpaq/sp150001-150500/sp150285.html - HP EliteBook 8x5 G8 Windows 11 Driver Pack + 4/15/2022 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139593.exe + 1482251416 + dd3bd1c3382c6892847c6bb4491077fb + 609EDB7ECF2ED35BABE0B454863FBB1A8D62B55FC35AB99E0F13FFE66B146773 + https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139593.cva + https://ftp.hp.com/pub/softpaq/sp139501-140000/sp139593.html + HP Z2G5 Windows 11 x64 Driver Pack false - sp149137 - HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack - 5.00 A 1 + sp97057 + HP Elite Dragonfly Windows 10 x64 Driver Pack + 1.00 A 1 Manageability - Driver Pack - 9/4/2023 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149137.exe - 1601075504 - 1e8da8a24a0cb2f733c9bc52df9ee7a9 - E32EAA6FDAC1B5E63BAE175E6949B9765E1E5E569C60D68FA1BAD6D2ED33A234 - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149137.cva - https://ftp.hp.com/pub/softpaq/sp149001-149500/sp149137.html - HP EB 8x0 1040 ZB G9 MWS Windows 11 Driver Pack - true + 6/13/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97057.exe + 778516464 + 00cb0554440cba4e01dda3d51a1de94f + 4EA4139871D383C17B1ABC12CBB630ED168FD8752233B999181B641CB4AB6558 + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97057.cva + https://ftp.hp.com/pub/softpaq/sp97001-97500/sp97057.html + HP Elite Dragonfly Windows 10 x64 Driver Pack + false - sp99671 - HP ProBook x360 11 G3 Windows 10 x64 Driver Pack - 4.00 A 1 + sp99623 + HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack + 2.00 A 1 Manageability - Driver Pack - 11/19/2019 12:00:00 AM - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99671.exe - 682289688 - 31e34c28897494dee4ac8c7a9b7e8eaf - 143404C64F695C48E8F37CDB30182648C648D292D31FD263362BD4BA09A688E7 - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99671.cva - https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99671.html - HP ProBook x360 11 G3 Windows 10 x64 Driver Pack + 10/17/2019 12:00:00 AM + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99623.exe + 830748224 + caf952f16ff2264132facff1524b72a9 + 169C110F2C7D886D669E2B674A597434B73D865E0B8DCF7EC38D764193464ADF + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99623.cva + https://ftp.hp.com/pub/softpaq/sp99501-100000/sp99623.html + HP ProDesk 4x0 G6 SFF/MT Windows 10 x64 Driver Pack false @@ -12094,7 +12094,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 1607 4243 @@ -12104,7 +12104,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 1607 4243 @@ -12444,7 +12444,7 @@ 64-bit Desktops - 82b3,829d + 829d,82b3 HP ProDesk 680 G3 Microtower PC Windows 10 64-bit, 1607 4243 @@ -12534,7 +12534,7 @@ 64-bit Workstations - 82c0,82bf + 82bf,82c0 HP Z2 Mini G3 Workstation Windows 10 64-bit, 1607 4243 @@ -12544,7 +12544,7 @@ 64-bit Workstations - 1906,8014,233F + 233F,8014,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 1607 4243 @@ -13034,7 +13034,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 1703 4244 @@ -13044,7 +13044,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 1703 4244 @@ -13054,7 +13054,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 1703 4244 @@ -13094,7 +13094,7 @@ 64-bit Desktops - 845a,8409,83e2 + 845a,83e2,8409 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 1703 4244 @@ -13114,7 +13114,7 @@ 64-bit Desktops - 83e2,8409,845a + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 1703 4244 @@ -13124,7 +13124,7 @@ 64-bit Desktops - 845a,8409,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 1703 4244 @@ -13634,7 +13634,7 @@ 64-bit Desktops - 82b3,829d + 829d,82b3 HP ProDesk 680 G3 Microtower PC Windows 10 64-bit, 1703 4244 @@ -13774,7 +13774,7 @@ 64-bit Workstations - 1906,8014,233F + 8014,233F,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 1703 4244 @@ -13994,7 +13994,7 @@ 64-bit Desktops - 81c3,8396 + 8396,81c3 HP Elite Slice Windows 10 64-bit, 1709 4249 @@ -14004,7 +14004,7 @@ 64-bit Desktops - 8396,81c3 + 81c3,8396 HP Elite Slice for Meeting Rooms Windows 10 64-bit, 1709 4249 @@ -14434,7 +14434,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 1709 4249 @@ -14444,7 +14444,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 1709 4249 @@ -14454,7 +14454,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 1709 4249 @@ -14494,7 +14494,7 @@ 64-bit Desktops - 845a,8409,83e2 + 845a,83e2,8409 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 1709 4249 @@ -14514,7 +14514,7 @@ 64-bit Desktops - 83e2,8409,845a + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 1709 4249 @@ -14524,7 +14524,7 @@ 64-bit Desktops - 845a,8409,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 1709 4249 @@ -14784,7 +14784,7 @@ 64-bit POS Systems/Retail Solutions - 83ef,8A39 + 8A39,83ef HP MP9 G4 Retail System Windows 10 64-bit, 1709 4249 @@ -15104,7 +15104,7 @@ 64-bit Desktops - 83ec,83ed + 83ed,83ec HP ProDesk 600 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 1709 4249 @@ -15144,7 +15144,7 @@ 64-bit Desktops - 82b3,829d + 829d,82b3 HP ProDesk 680 G3 Microtower PC Windows 10 64-bit, 1709 4249 @@ -15154,7 +15154,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 680 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 1709 4249 @@ -15224,7 +15224,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1709 4249 @@ -15294,7 +15294,7 @@ 64-bit Desktops - 83eb,83ea + 83ea,83eb HP ProOne 600 G4 21.5-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1709 4249 @@ -15304,7 +15304,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 600 G4 21.5-inch Touch All-in-One Business PC Windows 10 64-bit, 1709 4249 @@ -15334,7 +15334,7 @@ 64-bit Workstations - 82c0,82bf + 82bf,82c0 HP Z2 Mini G3 Workstation Windows 10 64-bit, 1709 4249 @@ -15344,7 +15344,7 @@ 64-bit Workstations - 8457,8458 + 8458,8457 HP Z2 Mini G4 Workstation Windows 10 64-bit, 1709 4249 @@ -15374,7 +15374,7 @@ 64-bit Workstations - 1906,8014,233F + 233F,8014,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 1709 4249 @@ -15614,7 +15614,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP Zhan60 G1 21.5-inch FHD Non-Touch GPU All-in-One Business PC Windows 10 64-bit, 1709 4249 @@ -15644,7 +15644,7 @@ 64-bit Desktops - 81c3,8396 + 8396,81c3 HP Elite Slice Windows 10 64-bit, 1803 4254 @@ -15654,7 +15654,7 @@ 64-bit Desktops - 8396,81c3 + 81c3,8396 HP Elite Slice for Meeting Rooms Windows 10 64-bit, 1803 4254 @@ -16154,7 +16154,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 1803 4254 @@ -16164,7 +16164,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 1803 4254 @@ -16174,7 +16174,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 1803 4254 @@ -16214,7 +16214,7 @@ 64-bit Desktops - 845a,8409,83e2 + 845a,83e2,8409 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 1803 4254 @@ -16234,7 +16234,7 @@ 64-bit Desktops - 83e2,8409,845a + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 1803 4254 @@ -16244,7 +16244,7 @@ 64-bit Desktops - 845a,8409,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 1803 4254 @@ -16624,7 +16624,7 @@ 64-bit POS Systems/Retail Solutions - 83ef,8A39 + 8A39,83ef HP MP9 G4 Retail System Windows 10 64-bit, 1803 4254 @@ -16974,7 +16974,7 @@ 64-bit Desktops - 859a,8599 + 8599,859a HP ProDesk 480 G6 Microtower PC Windows 10 64-bit, 1803 4254 @@ -17094,7 +17094,7 @@ 64-bit Desktops - 83ec,83ed + 83ed,83ec HP ProDesk 600 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 1803 4254 @@ -17174,7 +17174,7 @@ 64-bit Desktops - 82b3,829d + 829d,82b3 HP ProDesk 680 G3 Microtower PC Windows 10 64-bit, 1803 4254 @@ -17194,7 +17194,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 680 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 1803 4254 @@ -17264,7 +17264,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1803 4254 @@ -17284,7 +17284,7 @@ 64-bit Desktops - 85A1,85A2 + 85A2,85A1 HP ProOne 400 G5 20-inch All-in-One Business PC Windows 10 64-bit, 1803 4254 @@ -17294,7 +17294,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 1803 4254 @@ -17314,7 +17314,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 1803 4254 @@ -17364,7 +17364,7 @@ 64-bit Desktops - 83eb,83ea + 83ea,83eb HP ProOne 600 G4 21.5-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1803 4254 @@ -17374,7 +17374,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 600 G4 21.5-inch Touch All-in-One Business PC Windows 10 64-bit, 1803 4254 @@ -17454,7 +17454,7 @@ 64-bit Workstations - 8458,8457 + 8457,8458 HP Z2 Mini G4 Workstation Windows 10 64-bit, 1803 4254 @@ -17514,7 +17514,7 @@ 64-bit Workstations - 233F,1906,8014 + 8014,233F,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 1803 4254 @@ -17904,7 +17904,7 @@ 64-bit POS Systems/Retail Solutions - 83ef,8A39 + 8A39,83ef HP MP9 G4 Retail System Windows 10 IoT Enterprise 2016 LTSB, 64-bit 4260 @@ -18034,7 +18034,7 @@ 64-bit POS Systems/Retail Solutions - 8A39,83ef + 83ef,8A39 HP MP9 G4 Retail System Windows 10 IoT Enterprise 2019 LTSC, 64-bit 4261 @@ -18044,7 +18044,7 @@ 64-bit POS Systems/Retail Solutions - 8397,8139 + 8139,8397 HP RP9 G1 Retail System Model 9115 Windows 10 IoT Enterprise 2019 LTSC, 64-bit 4261 @@ -18054,7 +18054,7 @@ 64-bit POS Systems/Retail Solutions - 8139,8397 + 8397,8139 HP RP9 G1 Retail System Model 9118 Windows 10 IoT Enterprise 2019 LTSC, 64-bit 4261 @@ -18064,7 +18064,7 @@ 64-bit Desktops - 874e,874d + 874d,874e HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 1809 4263 @@ -18094,7 +18094,7 @@ 64-bit Desktops - 81c3,8396 + 8396,81c3 HP Elite Slice Windows 10 64-bit, 1809 4263 @@ -18104,7 +18104,7 @@ 64-bit Desktops - 8396,81c3 + 81c3,8396 HP Elite Slice for Meeting Rooms Windows 10 64-bit, 1809 4263 @@ -18594,7 +18594,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 1809 4263 @@ -18604,7 +18604,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 1809 4263 @@ -18614,7 +18614,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 1809 4263 @@ -18674,7 +18674,7 @@ 64-bit Desktops - 8409,845a,83e2 + 845a,83e2,8409 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 1809 4263 @@ -18694,7 +18694,7 @@ 64-bit Desktops - 83e2,845a,8409 + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 1809 4263 @@ -18704,7 +18704,7 @@ 64-bit Desktops - 8409,845a,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 1809 4263 @@ -18794,7 +18794,7 @@ 64-bit Desktops - 8595,8594,8593 + 8593,8595,8594 HP EliteDesk 800 G5 Desktop Mini PC Windows 10 64-bit, 1809 4263 @@ -18824,7 +18824,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 1809 4263 @@ -18904,7 +18904,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 1809 4263 @@ -18984,7 +18984,7 @@ 64-bit Desktops - 829b,929C,829c + 829b,829c,929C HP EliteOne 800 G3 23.8-inch Non-Touch All-in-One PC Windows 10 64-bit, 1809 4263 @@ -19094,7 +19094,7 @@ 64-bit Desktops - 874e,874d + 874d,874e HP EliteOne 800 G6 24 All-in-One PC Windows 10 64-bit, 1809 4263 @@ -19174,7 +19174,7 @@ 64-bit POS Systems/Retail Solutions - 83ef,8A39 + 8A39,83ef HP MP9 G4 Retail System Windows 10 64-bit, 1809 4263 @@ -19734,7 +19734,7 @@ 64-bit Desktops - 83ec,83ed + 83ed,83ec HP ProDesk 600 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 1809 4263 @@ -19834,7 +19834,7 @@ 64-bit Desktops - 82b3,829d + 829d,82b3 HP ProDesk 680 G3 Microtower PC Windows 10 64-bit, 1809 4263 @@ -19934,7 +19934,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1809 4263 @@ -19954,7 +19954,7 @@ 64-bit Desktops - 85A1,85A2 + 85A2,85A1 HP ProOne 400 G5 20-inch All-in-One Business PC Windows 10 64-bit, 1809 4263 @@ -19964,7 +19964,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 1809 4263 @@ -19974,7 +19974,7 @@ 64-bit Desktops - 880f,8810,871b,871c + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 1809 4263 @@ -19984,7 +19984,7 @@ 64-bit Desktops - 871C,871B,880F,8810 + 8810,880F,871C,871B HP ProOne 400 G6 24 All-in-One PC Windows 10 64-bit, 1809 4263 @@ -20004,7 +20004,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 1809 4263 @@ -20014,7 +20014,7 @@ 64-bit Desktops - 8810,880f,871b,871c + 871b,871c,880f,8810 HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 1809 4263 @@ -20064,7 +20064,7 @@ 64-bit Desktops - 83eb,83ea + 83ea,83eb HP ProOne 600 G4 21.5-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1809 4263 @@ -20074,7 +20074,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 600 G4 21.5-inch Touch All-in-One Business PC Windows 10 64-bit, 1809 4263 @@ -20094,7 +20094,7 @@ 64-bit Desktops - 871c,871b + 871b,871c HP ProOne 600 G6 22 All-in-One PC Windows 10 64-bit, 1809 4263 @@ -20164,7 +20164,7 @@ 64-bit Workstations - 870b,870c + 870c,870b HP Z1 Entry Tower G6 Windows 10 64-bit, 1809 4263 @@ -20174,7 +20174,7 @@ 64-bit Workstations - 82c0,82bf + 82bf,82c0 HP Z2 Mini G3 Workstation Windows 10 64-bit, 1809 4263 @@ -20244,7 +20244,7 @@ 64-bit Workstations - 233F,1906,8014 + 233F,8014,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 1809 4263 @@ -20474,7 +20474,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 1809 4263 @@ -20644,7 +20644,7 @@ 64-bit Desktops - 871c,871b,880f,8810 + 880f,871b,871c,8810 HP ZHAN 66 Pro G3 24 All-in-One PC Windows 10 64-bit, 1809 4263 @@ -20654,7 +20654,7 @@ 64-bit Desktops - 83eb,83ea + 83ea,83eb HP Zhan60 G1 21.5-inch FHD Non-Touch GPU All-in-One Business PC Windows 10 64-bit, 1809 4263 @@ -20674,7 +20674,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 1903 4279 @@ -20704,7 +20704,7 @@ 64-bit Desktops - 81c3,8396 + 8396,81c3 HP Elite Slice Windows 10 64-bit, 1903 4279 @@ -20714,7 +20714,7 @@ 64-bit Desktops - 8396,81c3 + 81c3,8396 HP Elite Slice for Meeting Rooms Windows 10 64-bit, 1903 4279 @@ -21044,7 +21044,7 @@ 64-bit Notebooks & Tablets - 880D,8AB8,8AB3 + 880D,8AB3,8AB8 HP EliteBook 840 G8 Notebook PC Windows 10 64-bit, 1903 4279 @@ -21334,7 +21334,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 1903 4279 @@ -21344,7 +21344,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 1903 4279 @@ -21354,7 +21354,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 1903 4279 @@ -21364,7 +21364,7 @@ 64-bit Desktops - 83e8,8463,8462 + 83e8,8462,8463 HP EliteDesk 705 G4 Small Form Factor PC Windows 10 64-bit, 1903 4279 @@ -21414,7 +21414,7 @@ 64-bit Desktops - 8409,845a,83e2 + 845a,83e2,8409 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 1903 4279 @@ -21434,7 +21434,7 @@ 64-bit Desktops - 83e2,845a,8409 + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 1903 4279 @@ -21444,7 +21444,7 @@ 64-bit Desktops - 8409,845a,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 1903 4279 @@ -21514,7 +21514,7 @@ 64-bit Desktops - 8594,8595,8593 + 8593,8594,8595 HP EliteDesk 800 G5 Desktop Mini PC Windows 10 64-bit, 1903 4279 @@ -21544,7 +21544,7 @@ 64-bit Desktops - 870f,8710,8711 + 8710,8711,870f HP EliteDesk 800 G6 Desktop Mini PC Windows 10 64-bit, 1903 4279 @@ -21554,7 +21554,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 1903 4279 @@ -21634,7 +21634,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 1903 4279 @@ -21714,7 +21714,7 @@ 64-bit Desktops - 829b,929C,829c + 829b,829c,929C HP EliteOne 800 G3 23.8-inch Non-Touch All-in-One PC Windows 10 64-bit, 1903 4279 @@ -21824,7 +21824,7 @@ 64-bit Desktops - 874e,874d + 874d,874e HP EliteOne 800 G6 24 All-in-One PC Windows 10 64-bit, 1903 4279 @@ -21904,7 +21904,7 @@ 64-bit POS Systems/Retail Solutions - 83ef,8A39 + 8A39,83ef HP MP9 G4 Retail System Windows 10 64-bit, 1903 4279 @@ -22504,7 +22504,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 600 G4 Microtower PC Windows 10 64-bit, 1903 4279 @@ -22514,7 +22514,7 @@ 64-bit Desktops - 83ec,83ed + 83ed,83ec HP ProDesk 600 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 1903 4279 @@ -22624,7 +22624,7 @@ 64-bit Desktops - 82b3,829d + 829d,82b3 HP ProDesk 680 G3 Microtower PC Windows 10 64-bit, 1903 4279 @@ -22724,7 +22724,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1903 4279 @@ -22744,7 +22744,7 @@ 64-bit Desktops - 85A1,85A2 + 85A2,85A1 HP ProOne 400 G5 20-inch All-in-One Business PC Windows 10 64-bit, 1903 4279 @@ -22754,7 +22754,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 1903 4279 @@ -22764,7 +22764,7 @@ 64-bit Desktops - 8810,880f,871c,871b + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 1903 4279 @@ -22774,7 +22774,7 @@ 64-bit Desktops - 871C,871B,880F,8810 + 8810,880F,871C,871B HP ProOne 400 G6 24 All-in-One PC Windows 10 64-bit, 1903 4279 @@ -22794,7 +22794,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 1903 4279 @@ -22804,7 +22804,7 @@ 64-bit Desktops - 8810,880f,871b,871c + 871b,880f,8810,871c HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 1903 4279 @@ -22934,7 +22934,7 @@ 64-bit Workstations - 870b,870c + 870c,870b HP Z1 Entry Tower G6 Windows 10 64-bit, 1903 4279 @@ -22964,7 +22964,7 @@ 64-bit Workstations - 8457,8458 + 8458,8457 HP Z2 Mini G4 Workstation Windows 10 64-bit, 1903 4279 @@ -23034,7 +23034,7 @@ 64-bit Workstations - 233F,1906,8014 + 8014,233F,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 1903 4279 @@ -23254,7 +23254,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 1903 4279 @@ -23474,7 +23474,7 @@ 64-bit Desktops - 871b,880f,8810,871c + 871b,880f,871c,8810 HP ZHAN 66 Pro G3 24 All-in-One PC Windows 10 64-bit, 1903 4279 @@ -23484,7 +23484,7 @@ 64-bit Desktops - 83eb,83ea + 83ea,83eb HP Zhan60 G1 21.5-inch FHD Non-Touch GPU All-in-One Business PC Windows 10 64-bit, 1903 4279 @@ -23504,7 +23504,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 1909 4283 @@ -23554,7 +23554,7 @@ 64-bit Desktops - 81c3,8396 + 8396,81c3 HP Elite Slice Windows 10 64-bit, 1909 4283 @@ -23564,7 +23564,7 @@ 64-bit Desktops - 8396,81c3 + 81c3,8396 HP Elite Slice for Meeting Rooms Windows 10 64-bit, 1909 4283 @@ -23774,7 +23774,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 830 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -23894,7 +23894,7 @@ 64-bit Notebooks & Tablets - 880D,8AB8,8AB3 + 880D,8AB3,8AB8 HP EliteBook 840 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -24204,7 +24204,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 1909 4283 @@ -24214,7 +24214,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 1909 4283 @@ -24224,7 +24224,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 1909 4283 @@ -24234,7 +24234,7 @@ 64-bit Desktops - 83e8,8463,8462 + 83e8,8462,8463 HP EliteDesk 705 G4 Small Form Factor PC Windows 10 64-bit, 1909 4283 @@ -24284,7 +24284,7 @@ 64-bit Desktops - 8409,845a,83e2 + 845a,83e2,8409 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 1909 4283 @@ -24304,7 +24304,7 @@ 64-bit Desktops - 83e2,845a,8409 + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 1909 4283 @@ -24314,7 +24314,7 @@ 64-bit Desktops - 8409,845a,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 1909 4283 @@ -24404,7 +24404,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 1909 4283 @@ -24534,7 +24534,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 1909 4283 @@ -24604,7 +24604,7 @@ 64-bit Desktops - 829b,929C,829c + 829b,829c,929C HP EliteOne 800 G3 23.8-inch Non-Touch All-in-One PC Windows 10 64-bit, 1909 4283 @@ -24824,7 +24824,7 @@ 64-bit POS Systems/Retail Solutions - 83ef,8A39 + 8A39,83ef HP MP9 G4 Retail System Windows 10 64-bit, 1909 4283 @@ -24864,7 +24864,7 @@ 64-bit Notebooks & Tablets - 87DF,8A73,8A83 + 8A83,87DF,8A73 HP ProBook 430 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -24904,7 +24904,7 @@ 64-bit Notebooks & Tablets - 87E0,8A84,8A86,8A74,8A76,8807 + 8A74,87E0,8A84,8A86,8A76,8807 HP ProBook 440 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -24934,7 +24934,7 @@ 64-bit Notebooks & Tablets - 8861,8A8E + 8A8E,8861 HP ProBook 445 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -24984,7 +24984,7 @@ 64-bit Notebooks & Tablets - 87E1,8A85,8A77,8A75,8808 + 8A75,8A85,8A77,8808,87E1 HP ProBook 450 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -25014,7 +25014,7 @@ 64-bit Notebooks & Tablets - 8864,8A90 + 8A90,8864 HP ProBook 455 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -25104,7 +25104,7 @@ 64-bit Notebooks & Tablets - 87ED,87EA + 87EA,87ED HP ProBook 640 G8 Notebook PC Windows 10 64-bit, 1909 4283 @@ -25464,7 +25464,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 600 G4 Microtower PC Windows 10 64-bit, 1909 4283 @@ -25474,7 +25474,7 @@ 64-bit Desktops - 83ec,83ed + 83ed,83ec HP ProDesk 600 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 1909 4283 @@ -25584,7 +25584,7 @@ 64-bit Desktops - 82b3,829d + 829d,82b3 HP ProDesk 680 G3 Microtower PC Windows 10 64-bit, 1909 4283 @@ -25654,7 +25654,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 1909 4283 @@ -25674,7 +25674,7 @@ 64-bit Desktops - 85A1,85A2 + 85A2,85A1 HP ProOne 400 G5 20-inch All-in-One Business PC Windows 10 64-bit, 1909 4283 @@ -25684,7 +25684,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 1909 4283 @@ -25694,7 +25694,7 @@ 64-bit Desktops - 8810,880f,871c,871b + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 1909 4283 @@ -25704,7 +25704,7 @@ 64-bit Desktops - 871C,871B,880F,8810 + 8810,880F,871C,871B HP ProOne 400 G6 24 All-in-One PC Windows 10 64-bit, 1909 4283 @@ -25724,7 +25724,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 1909 4283 @@ -25734,7 +25734,7 @@ 64-bit Desktops - 8810,880f,871b,871c + 871b,880f,8810,871c HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 1909 4283 @@ -25804,7 +25804,7 @@ 64-bit Desktops - 871c,871b + 871b,871c HP ProOne 600 G6 22 All-in-One PC Windows 10 64-bit, 1909 4283 @@ -25864,7 +25864,7 @@ 64-bit Workstations - 870b,870c + 870c,870b HP Z1 Entry Tower G6 Windows 10 64-bit, 1909 4283 @@ -25894,7 +25894,7 @@ 64-bit Workstations - 82c0,82bf + 82bf,82c0 HP Z2 Mini G3 Workstation Windows 10 64-bit, 1909 4283 @@ -25904,7 +25904,7 @@ 64-bit Workstations - 8457,8458 + 8458,8457 HP Z2 Mini G4 Workstation Windows 10 64-bit, 1909 4283 @@ -25974,7 +25974,7 @@ 64-bit Workstations - 233F,1906,8014 + 233F,8014,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 1909 4283 @@ -26194,7 +26194,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 1909 4283 @@ -26374,7 +26374,7 @@ 64-bit Notebooks & Tablets - 87E2,8809 + 8809,87E2 HP ZHAN 66 Pro 14 G4 Notebook PC Windows 10 64-bit, 1909 4283 @@ -26414,7 +26414,7 @@ 64-bit Notebooks & Tablets - 8867,8A92 + 8A92,8867 HP ZHAN 66 Pro A 14 G4 Notebook PC Windows 10 64-bit, 1909 4283 @@ -26454,7 +26454,7 @@ 64-bit Desktops - 871c,871b + 871b,871c HP ZHAN 66 Pro G3 22 All-in-One PC Windows 10 64-bit, 1909 4283 @@ -26464,7 +26464,7 @@ 64-bit Desktops - 871b,880f,8810,871c + 871b,880f,871c,8810 HP ZHAN 66 Pro G3 24 All-in-One PC Windows 10 64-bit, 1909 4283 @@ -26474,7 +26474,7 @@ 64-bit Desktops - 83eb,83ea + 83ea,83eb HP Zhan60 G1 21.5-inch FHD Non-Touch GPU All-in-One Business PC Windows 10 64-bit, 1909 4283 @@ -26494,7 +26494,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 2004 4285 @@ -26544,7 +26544,7 @@ 64-bit Desktops - 81c3,8396 + 8396,81c3 HP Elite Slice Windows 10 64-bit, 2004 4285 @@ -26554,7 +26554,7 @@ 64-bit Desktops - 8396,81c3 + 81c3,8396 HP Elite Slice for Meeting Rooms Windows 10 64-bit, 2004 4285 @@ -26754,7 +26754,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 830 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -26874,7 +26874,7 @@ 64-bit Notebooks & Tablets - 880D,8AB8,8AB3 + 880D,8AB3,8AB8 HP EliteBook 840 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -27184,7 +27184,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 2004 4285 @@ -27194,7 +27194,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 2004 4285 @@ -27204,7 +27204,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 2004 4285 @@ -27214,7 +27214,7 @@ 64-bit Desktops - 83e8,8463,8462 + 83e8,8462,8463 HP EliteDesk 705 G4 Small Form Factor PC Windows 10 64-bit, 2004 4285 @@ -27264,7 +27264,7 @@ 64-bit Desktops - 8409,845a,83e2 + 845a,8409,83e2 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 2004 4285 @@ -27284,7 +27284,7 @@ 64-bit Desktops - 83e2,845a,8409 + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 2004 4285 @@ -27294,7 +27294,7 @@ 64-bit Desktops - 8409,845a,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 2004 4285 @@ -27374,7 +27374,7 @@ 64-bit Desktops - 8711,870f,8710 + 8710,8711,870f HP EliteDesk 800 G6 Desktop Mini PC Windows 10 64-bit, 2004 4285 @@ -27384,7 +27384,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 2004 4285 @@ -27394,7 +27394,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 10 64-bit, 2004 4285 @@ -27504,7 +27504,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 2004 4285 @@ -27574,7 +27574,7 @@ 64-bit Desktops - 829b,929C,829c + 829b,829c,929C HP EliteOne 800 G3 23.8-inch Non-Touch All-in-One PC Windows 10 64-bit, 2004 4285 @@ -27804,7 +27804,7 @@ 64-bit POS Systems/Retail Solutions - 8A39,83ef + 83ef,8A39 HP MP9 G4 Retail System Windows 10 64-bit, 2004 4285 @@ -27844,7 +27844,7 @@ 64-bit Notebooks & Tablets - 87DF,8A83,8A73 + 8A83,87DF,8A73 HP ProBook 430 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -27884,7 +27884,7 @@ 64-bit Notebooks & Tablets - 87E0,8A74,8A76,8A84,8A86,8807 + 8A74,87E0,8A84,8A86,8A76,8807 HP ProBook 440 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -27914,7 +27914,7 @@ 64-bit Notebooks & Tablets - 8861,8A8E + 8A8E,8861 HP ProBook 445 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -27964,7 +27964,7 @@ 64-bit Notebooks & Tablets - 87E1,8A85,8A77,8A75,8808 + 8A75,8A85,8A77,8808,87E1 HP ProBook 450 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -27994,7 +27994,7 @@ 64-bit Notebooks & Tablets - 8864,8A90 + 8A90,8864 HP ProBook 455 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -28084,7 +28084,7 @@ 64-bit Notebooks & Tablets - 87ED,87EA + 87EA,87ED HP ProBook 640 G8 Notebook PC Windows 10 64-bit, 2004 4285 @@ -28444,7 +28444,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 600 G4 Microtower PC Windows 10 64-bit, 2004 4285 @@ -28624,7 +28624,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 2004 4285 @@ -28654,7 +28654,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 2004 4285 @@ -28664,7 +28664,7 @@ 64-bit Desktops - 8810,880f,871c,871b + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 2004 4285 @@ -28674,7 +28674,7 @@ 64-bit Desktops - 871C,871B,880F,8810 + 8810,880F,871C,871B HP ProOne 400 G6 24 All-in-One PC Windows 10 64-bit, 2004 4285 @@ -28694,7 +28694,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 2004 4285 @@ -28704,7 +28704,7 @@ 64-bit Desktops - 8810,880f,871b,871c + 871b,8810,880f,871c HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 2004 4285 @@ -28874,7 +28874,7 @@ 64-bit Workstations - 8457,8458 + 8458,8457 HP Z2 Mini G4 Workstation Windows 10 64-bit, 2004 4285 @@ -28884,7 +28884,7 @@ 64-bit Workstations - 8755,8754 + 8754,8755 HP Z2 Mini G5 Workstation Windows 10 64-bit, 2004 4285 @@ -28944,7 +28944,7 @@ 64-bit Workstations - 233F,1906,8014 + 8014,233F,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 2004 4285 @@ -29164,7 +29164,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 2004 4285 @@ -29354,7 +29354,7 @@ 64-bit Notebooks & Tablets - 87E2,8809 + 8809,87E2 HP ZHAN 66 Pro 14 G4 Notebook PC Windows 10 64-bit, 2004 4285 @@ -29394,7 +29394,7 @@ 64-bit Notebooks & Tablets - 8867,8A92 + 8A92,8867 HP ZHAN 66 Pro A 14 G4 Notebook PC Windows 10 64-bit, 2004 4285 @@ -29434,7 +29434,7 @@ 64-bit Desktops - 871c,871b + 871b,871c HP ZHAN 66 Pro G3 22 All-in-One PC Windows 10 64-bit, 2004 4285 @@ -29454,7 +29454,7 @@ 64-bit Desktops - 83eb,83ea + 83ea,83eb HP Zhan60 G1 21.5-inch FHD Non-Touch GPU All-in-One Business PC Windows 10 64-bit, 2004 4285 @@ -29474,7 +29474,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 20H2 4288 @@ -29654,7 +29654,7 @@ 64-bit Desktops - 8950,8B39,8AC4 + 8AC4,8950,8B39 HP Elite Tower 600 G9 Desktop PC Windows 10 64-bit, 20H2 4288 @@ -29794,7 +29794,7 @@ 64-bit Notebooks & Tablets - 8B12,89D2 + 89D2,8B12 HP EliteBook 645 14 inch G9 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -29804,7 +29804,7 @@ 64-bit Notebooks & Tablets - 897C,8AA9 + 8AA9,897C HP EliteBook 650 15.6 inch G9 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -29814,7 +29814,7 @@ 64-bit Notebooks & Tablets - 8B12,89D2 + 89D2,8B12 HP EliteBook 655 15.6 inch G9 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -29924,7 +29924,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 830 G8 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -29984,7 +29984,7 @@ 64-bit Notebooks & Tablets - 896D,8ABB,8ad6 + 896D,8ad6,8ABB HP EliteBook 840 14 inch G9 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -30064,7 +30064,7 @@ 64-bit Notebooks & Tablets - 880D,8AB8,8AB3 + 880D,8AB3,8AB8 HP EliteBook 840 G8 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -30384,7 +30384,7 @@ 64-bit Desktops - 8265,835b + 835b,8265 HP EliteDesk 705 G3 Microtower PC Windows 10 64-bit, 20H2 4288 @@ -30394,7 +30394,7 @@ 64-bit Desktops - 835b,8265 + 8265,835b HP EliteDesk 705 G3 Small Form Factor PC Windows 10 64-bit, 20H2 4288 @@ -30404,7 +30404,7 @@ 64-bit Desktops - 8460,8461,83e7 + 8461,8460,83e7 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 20H2 4288 @@ -30414,7 +30414,7 @@ 64-bit Desktops - 83e8,8463,8462 + 83e8,8462,8463 HP EliteDesk 705 G4 Small Form Factor PC Windows 10 64-bit, 20H2 4288 @@ -30434,7 +30434,7 @@ 64-bit Desktops - 8618,8617 + 8617,8618 HP EliteDesk 705 G5 Small Form Factor PC Windows 10 64-bit, 20H2 4288 @@ -30464,7 +30464,7 @@ 64-bit Desktops - 8409,845a,83e2 + 845a,8409,83e2 HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 20H2 4288 @@ -30484,7 +30484,7 @@ 64-bit Desktops - 83e2,845a,8409 + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 20H2 4288 @@ -30494,7 +30494,7 @@ 64-bit Desktops - 8409,845a,83e2 + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 20H2 4288 @@ -30584,7 +30584,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 20H2 4288 @@ -30594,7 +30594,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 10 64-bit, 20H2 4288 @@ -30704,7 +30704,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 20H2 4288 @@ -30774,7 +30774,7 @@ 64-bit Desktops - 829b,929C,829c + 829b,829c,929C HP EliteOne 800 G3 23.8-inch Non-Touch All-in-One PC Windows 10 64-bit, 20H2 4288 @@ -30844,7 +30844,7 @@ 64-bit Desktops - 85eb,859f,85a0 + 85eb,85a0,859f HP EliteOne 800 G5 23.8-in Healthcare Edition All-in-One Windows 10 64-bit, 20H2 4288 @@ -30854,7 +30854,7 @@ 64-bit Desktops - 85a0,859f,85eb + 859f,85a0,85eb HP EliteOne 800 G5 23.8-inch All-in-One Windows 10 64-bit, 20H2 4288 @@ -30904,7 +30904,7 @@ 64-bit Desktops - 895f,8acb,8acc,8957 + 8acb,8acc,8957,895f HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 20H2 4288 @@ -30914,7 +30914,7 @@ 64-bit Desktops - 8957,8acc,8acb,895f + 895f,8957,8acc,8acb HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 10 64-bit, 20H2 4288 @@ -31034,7 +31034,7 @@ 64-bit POS Systems/Retail Solutions - 8A39,83ef + 83ef,8A39 HP MP9 G4 Retail System Windows 10 64-bit, 20H2 4288 @@ -31044,7 +31044,7 @@ 64-bit Desktops - 895f,8acc,8957 + 895f,8957,8acc HP Presence 24 All-in-One with Zoom Rooms Windows 10 64-bit, 20H2 4288 @@ -31054,7 +31054,7 @@ 64-bit Desktops - 8957,8acc,895f + 8acc,8957,895f HP Presence 27 All-in-One with Zoom Rooms Windows 10 64-bit, 20H2 4288 @@ -31084,7 +31084,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8AC9,8955,8C63 HP Pro Mini 400 G9 PC Windows 10 64-bit, 20H2 4288 @@ -31094,7 +31094,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8C5A,8954,8AC8 HP Pro SFF 400 G9 Desktop PC Windows 10 64-bit, 20H2 4288 @@ -31104,7 +31104,7 @@ 64-bit Desktops - 8C59,8AC7,8953 + 8AC7,8953,8C59 HP Pro Tower 400 G9 PCI Desktop PC Windows 10 64-bit, 20H2 4288 @@ -31114,7 +31114,7 @@ 64-bit Desktops - 8953,8AC7,8C59 + 8C59,8953,8AC7 HP Pro Tower 480 G9 PCI Desktop PC Windows 10 64-bit, 20H2 4288 @@ -31144,7 +31144,7 @@ 64-bit Notebooks & Tablets - 8c3c,8c3b,8abd + 8c3b,8c3c,8abd HP Pro x360 Fortis 11 inch G11 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31194,7 +31194,7 @@ 64-bit Notebooks & Tablets - 87DF,8A83,8A73 + 8A83,87DF,8A73 HP ProBook 430 G8 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31204,7 +31204,7 @@ 64-bit Notebooks & Tablets - 8977,8A9E + 8A9E,8977 HP ProBook 440 14 inch G9 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31244,7 +31244,7 @@ 64-bit Notebooks & Tablets - 87E0,8A74,8A76,8A84,8A86,8807 + 8A74,8A84,8A86,8A76,8807,87E0 HP ProBook 440 G8 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31304,7 +31304,7 @@ 64-bit Notebooks & Tablets - 8978,8AA1 + 8AA1,8978 HP ProBook 450 15.6 inch G9 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31344,7 +31344,7 @@ 64-bit Notebooks & Tablets - 87E1,8A85,8A77,8A75,8808 + 8A75,8A85,8A77,8808,87E1 HP ProBook 450 G8 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31414,7 +31414,7 @@ 64-bit Notebooks & Tablets - 87EA,87ED + 87ED,87EA HP ProBook 630 G8 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31474,7 +31474,7 @@ 64-bit Notebooks & Tablets - 87ED,87EA + 87EA,87ED HP ProBook 640 G8 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -31764,7 +31764,7 @@ 64-bit Desktops - 8882,8968 + 8968,8882 HP ProDesk 405 G8 Desktop Mini PC Windows 10 64-bit, 20H2 4288 @@ -31784,7 +31784,7 @@ 64-bit Desktops - 8599,859a + 859a,8599 HP ProDesk 480 G6 Microtower PC Windows 10 64-bit, 20H2 4288 @@ -31854,7 +31854,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 600 G4 Microtower PC Windows 10 64-bit, 20H2 4288 @@ -32024,7 +32024,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 20H2 4288 @@ -32054,7 +32054,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 20H2 4288 @@ -32064,7 +32064,7 @@ 64-bit Desktops - 8810,880f,871c,871b + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 20H2 4288 @@ -32074,7 +32074,7 @@ 64-bit Desktops - 871C,871B,880F,8810 + 8810,880F,871C,871B HP ProOne 400 G6 24 All-in-One PC Windows 10 64-bit, 20H2 4288 @@ -32084,7 +32084,7 @@ 64-bit Desktops - 8c5b,8c5d,8959,8958,8acd,8ace + 8959,8958,8acd,8ace,8c5b,8c5d HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 20H2 4288 @@ -32104,7 +32104,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 20H2 4288 @@ -32114,7 +32114,7 @@ 64-bit Desktops - 8810,880f,871b,871c + 871b,871c,8810,880f HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 20H2 4288 @@ -32154,7 +32154,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 600 G5 21.5-in All-in-One Business PC Windows 10 64-bit, 20H2 4288 @@ -32264,7 +32264,7 @@ 64-bit Workstations - 82c0,82bf + 82bf,82c0 HP Z2 Mini G3 Workstation Windows 10 64-bit, 20H2 4288 @@ -32274,7 +32274,7 @@ 64-bit Workstations - 8457,8458 + 8458,8457 HP Z2 Mini G4 Workstation Windows 10 64-bit, 20H2 4288 @@ -32284,7 +32284,7 @@ 64-bit Workstations - 8755,8754 + 8754,8755 HP Z2 Mini G5 Workstation Windows 10 64-bit, 20H2 4288 @@ -32374,7 +32374,7 @@ 64-bit Workstations - 233F,1906,8014 + 233F,8014,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 20H2 4288 @@ -32584,7 +32584,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 20H2 4288 @@ -32824,7 +32824,7 @@ 64-bit Notebooks & Tablets - 87E2,8809 + 8809,87E2 HP ZHAN 66 Pro 14 G4 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -32874,7 +32874,7 @@ 64-bit Notebooks & Tablets - 8867,8A92 + 8A92,8867 HP ZHAN 66 Pro A 14 G4 Notebook PC Windows 10 64-bit, 20H2 4288 @@ -32904,7 +32904,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ZHAN 66 Pro G2 21.5-in All-in-One Windows 10 64-bit, 20H2 4288 @@ -32914,7 +32914,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ZHAN 66 Pro G2 23.8-in All-in-One Windows 10 64-bit, 20H2 4288 @@ -32924,7 +32924,7 @@ 64-bit Desktops - 871c,871b + 871b,871c HP ZHAN 66 Pro G3 22 All-in-One PC Windows 10 64-bit, 20H2 4288 @@ -32934,7 +32934,7 @@ 64-bit Desktops - 871b,880f,8810,871c + 871b,8810,880f,871c HP ZHAN 66 Pro G3 24 All-in-One PC Windows 10 64-bit, 20H2 4288 @@ -32944,7 +32944,7 @@ 64-bit Desktops - 8c5d,8959,8958,8c5b,8acd,8ace + 8958,8959,8c5b,8c5d,8acd,8ace HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 20H2 4288 @@ -32974,7 +32974,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 21H1 4295 @@ -33284,7 +33284,7 @@ 64-bit Notebooks & Tablets - 8B12,89D2 + 89D2,8B12 HP EliteBook 645 14 inch G9 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -33294,7 +33294,7 @@ 64-bit Notebooks & Tablets - 897C,8AA9 + 8AA9,897C HP EliteBook 650 15.6 inch G9 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -33304,7 +33304,7 @@ 64-bit Notebooks & Tablets - 8B12,89D2 + 89D2,8B12 HP EliteBook 655 15.6 inch G9 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -33414,7 +33414,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 830 G8 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -33474,7 +33474,7 @@ 64-bit Notebooks & Tablets - 896D,8ABB,8ad6 + 896D,8ad6,8ABB HP EliteBook 840 14 inch G9 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -33554,7 +33554,7 @@ 64-bit Notebooks & Tablets - 880D,8AB8,8AB3 + 880D,8AB3,8AB8 HP EliteBook 840 G8 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -33864,7 +33864,7 @@ 64-bit Desktops - 83e7,8460,8461 + 83e7,8461,8460 HP EliteDesk 705 G4 Microtower PC Windows 10 64-bit, 21H1 4295 @@ -33874,7 +33874,7 @@ 64-bit Desktops - 8463,8462,83e8 + 8462,8463,83e8 HP EliteDesk 705 G4 Small Form Factor PC Windows 10 64-bit, 21H1 4295 @@ -33904,7 +33904,7 @@ 64-bit Desktops - 8409,845a,83e2 + 8409,83e2,845a HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 21H1 4295 @@ -33914,7 +33914,7 @@ 64-bit Desktops - 845a,8409,83e2 + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 21H1 4295 @@ -33924,7 +33924,7 @@ 64-bit Desktops - 83e2,8409,845a + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 21H1 4295 @@ -33954,7 +33954,7 @@ 64-bit Desktops - 8593,8594,8595 + 8594,8595,8593 HP EliteDesk 800 G5 Desktop Mini PC Windows 10 64-bit, 21H1 4295 @@ -33984,7 +33984,7 @@ 64-bit Desktops - 870f,8710,8711 + 8710,8711,870f HP EliteDesk 800 G6 Desktop Mini PC Windows 10 64-bit, 21H1 4295 @@ -33994,7 +33994,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 21H1 4295 @@ -34004,7 +34004,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 10 64-bit, 21H1 4295 @@ -34104,7 +34104,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 21H1 4295 @@ -34274,7 +34274,7 @@ 64-bit Desktops - 895f,8acc,8acb,8957 + 8acb,8acc,8957,895f HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H1 4295 @@ -34284,7 +34284,7 @@ 64-bit Desktops - 8957,8acc,8acb,895f + 895f,8957,8acc,8acb HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H1 4295 @@ -34394,7 +34394,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8955,8C63,8AC9 HP Pro Mini 400 G9 PC Windows 10 64-bit, 21H1 4295 @@ -34404,7 +34404,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8AC8,8C5A,8954 HP Pro SFF 400 G9 Desktop PC Windows 10 64-bit, 21H1 4295 @@ -34414,7 +34414,7 @@ 64-bit Desktops - 8C59,8953,8AC7 + 8953,8C59,8AC7 HP Pro Tower 400 G9 PCI Desktop PC Windows 10 64-bit, 21H1 4295 @@ -34424,7 +34424,7 @@ 64-bit Desktops - 8AC7,8953,8C59 + 8AC7,8C59,8953 HP Pro Tower 480 G9 PCI Desktop PC Windows 10 64-bit, 21H1 4295 @@ -34454,7 +34454,7 @@ 64-bit Notebooks & Tablets - 8c3c,8c3b,8abd + 8c3b,8c3c,8abd HP Pro x360 Fortis 11 inch G11 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -34504,7 +34504,7 @@ 64-bit Notebooks & Tablets - 87DF,8A83,8A73 + 8A83,87DF,8A73 HP ProBook 430 G8 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -34514,7 +34514,7 @@ 64-bit Notebooks & Tablets - 8977,8A9E + 8A9E,8977 HP ProBook 440 14 inch G9 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -34554,7 +34554,7 @@ 64-bit Notebooks & Tablets - 87E0,8A74,8A76,8A84,8A86,8807 + 8A74,8A84,8A86,8A76,8807,87E0 HP ProBook 440 G8 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -34614,7 +34614,7 @@ 64-bit Notebooks & Tablets - 8978,8AA1 + 8AA1,8978 HP ProBook 450 15.6 inch G9 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -34654,7 +34654,7 @@ 64-bit Notebooks & Tablets - 87E1,8A85,8A77,8A75,8808 + 8A75,8A85,8A77,8808,87E1 HP ProBook 450 G8 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -34724,7 +34724,7 @@ 64-bit Notebooks & Tablets - 87EA,87ED + 87ED,87EA HP ProBook 630 G8 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -34784,7 +34784,7 @@ 64-bit Notebooks & Tablets - 87ED,87EA + 87EA,87ED HP ProBook 640 G8 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -35024,7 +35024,7 @@ 64-bit Desktops - 8882,8968 + 8968,8882 HP ProDesk 405 G8 Desktop Mini PC Windows 10 64-bit, 21H1 4295 @@ -35064,7 +35064,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 600 G4 Microtower PC Windows 10 64-bit, 21H1 4295 @@ -35224,7 +35224,7 @@ 64-bit Desktops - 85A2,85A1 + 85A1,85A2 HP ProOne 400 G5 20-inch All-in-One Business PC Windows 10 64-bit, 21H1 4295 @@ -35234,7 +35234,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 21H1 4295 @@ -35244,7 +35244,7 @@ 64-bit Desktops - 8810,880f,871c,871b + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 21H1 4295 @@ -35254,7 +35254,7 @@ 64-bit Desktops - 871C,871B,8810,880F + 8810,880F,871C,871B HP ProOne 400 G6 24 All-in-One PC Windows 10 64-bit, 21H1 4295 @@ -35264,7 +35264,7 @@ 64-bit Desktops - 8c5b,8c5d,8959,8958,8acd,8ace + 8958,8959,8ace,8c5d,8c5b,8acd HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H1 4295 @@ -35284,7 +35284,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 21H1 4295 @@ -35294,7 +35294,7 @@ 64-bit Desktops - 880f,8810,871b,871c + 871b,8810,880f,871c HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 21H1 4295 @@ -35534,7 +35534,7 @@ 64-bit Workstations - 233F,1906,8014 + 8014,233F,1906 HP Z230 Small Form Factor Workstation Windows 10 64-bit, 21H1 4295 @@ -35744,7 +35744,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 21H1 4295 @@ -35974,7 +35974,7 @@ 64-bit Notebooks & Tablets - 87E2,8809 + 8809,87E2 HP ZHAN 66 Pro 14 G4 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -36024,7 +36024,7 @@ 64-bit Notebooks & Tablets - 8867,8A92 + 8A92,8867 HP ZHAN 66 Pro A 14 G4 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -36044,7 +36044,7 @@ 64-bit Notebooks & Tablets - 83fd,8471 + 8471,83fd HP ZHAN 66 Pro G1 Notebook PC Windows 10 64-bit, 21H1 4295 @@ -36054,7 +36054,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ZHAN 66 Pro G2 21.5-in All-in-One Windows 10 64-bit, 21H1 4295 @@ -36064,7 +36064,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ZHAN 66 Pro G2 23.8-in All-in-One Windows 10 64-bit, 21H1 4295 @@ -36094,7 +36094,7 @@ 64-bit Desktops - 8c5d,8959,8958,8c5b,8acd,8ace + 8958,8959,8c5b,8c5d,8acd,8ace HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H1 4295 @@ -36124,7 +36124,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 21H2 4297 @@ -36624,7 +36624,7 @@ 64-bit Notebooks & Tablets - 8ad6,8ABB,896D + 896D,8ad6,8ABB HP EliteBook 840 14 inch G9 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -36894,7 +36894,7 @@ 64-bit Desktops - 8463,8462,83e8 + 8462,8463,83e8 HP EliteDesk 705 G4 Small Form Factor PC Windows 10 64-bit, 21H2 4297 @@ -36914,7 +36914,7 @@ 64-bit Desktops - 8618,8617 + 8617,8618 HP EliteDesk 705 G5 Small Form Factor PC Windows 10 64-bit, 21H2 4297 @@ -36924,7 +36924,7 @@ 64-bit Desktops - 8409,845a,83e2 + 8409,83e2,845a HP EliteDesk 800 35W G4 Desktop Mini PC Windows 10 64-bit, 21H2 4297 @@ -36934,7 +36934,7 @@ 64-bit Desktops - 845a,8409,83e2 + 845a,83e2,8409 HP EliteDesk 800 65W G4 Desktop Mini PC Windows 10 64-bit, 21H2 4297 @@ -36944,7 +36944,7 @@ 64-bit Desktops - 83e2,8409,845a + 8409,83e2,845a HP EliteDesk 800 95W G4 Desktop Mini PC Windows 10 64-bit, 21H2 4297 @@ -36974,7 +36974,7 @@ 64-bit Desktops - 8593,8595,8594 + 8595,8594,8593 HP EliteDesk 800 G5 Desktop Mini PC Windows 10 64-bit, 21H2 4297 @@ -37004,7 +37004,7 @@ 64-bit Desktops - 8710,870f,8711 + 8711,8710,870f HP EliteDesk 800 G6 Desktop Mini PC Windows 10 64-bit, 21H2 4297 @@ -37014,7 +37014,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 21H2 4297 @@ -37024,7 +37024,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 10 64-bit, 21H2 4297 @@ -37124,7 +37124,7 @@ 64-bit Desktops - 870B,870C + 870C,870B HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 21H2 4297 @@ -37294,7 +37294,7 @@ 64-bit Desktops - 895f,8acc,8acb,8957 + 8acb,8acc,8957,895f HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H2 4297 @@ -37304,7 +37304,7 @@ 64-bit Desktops - 8957,8acc,8acb,895f + 895f,8957,8acc,8acb HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H2 4297 @@ -37434,7 +37434,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8AC9,8955,8C63 HP Pro Mini 400 G9 PC Windows 10 64-bit, 21H2 4297 @@ -37444,7 +37444,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8C5A,8954,8AC8 HP Pro SFF 400 G9 Desktop PC Windows 10 64-bit, 21H2 4297 @@ -37454,7 +37454,7 @@ 64-bit Desktops - 8C59,8953,8AC7 + 8AC7,8953,8C59 HP Pro Tower 400 G9 PCI Desktop PC Windows 10 64-bit, 21H2 4297 @@ -37464,7 +37464,7 @@ 64-bit Desktops - 8AC7,8953,8C59 + 8C59,8953,8AC7 HP Pro Tower 480 G9 PCI Desktop PC Windows 10 64-bit, 21H2 4297 @@ -37504,7 +37504,7 @@ 64-bit Notebooks & Tablets - 8c3c,8c3b,8abd + 8c3b,8c3c,8abd HP Pro x360 Fortis 11 inch G11 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -37534,7 +37534,7 @@ 64-bit Notebooks & Tablets - 87DF,8A73,8A83 + 8A83,87DF,8A73 HP ProBook 430 G8 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -37574,7 +37574,7 @@ 64-bit Notebooks & Tablets - 87E0,8A76,8A74,8A86,8A84,8807 + 8A74,8A84,8A86,8A76,8807,87E0 HP ProBook 440 G8 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -37654,7 +37654,7 @@ 64-bit Notebooks & Tablets - 8A85,8A75,8A77,8808,87E1 + 8A75,8A85,8A77,8808,87E1 HP ProBook 450 G8 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -37704,7 +37704,7 @@ 64-bit Notebooks & Tablets - 87EA,87ED + 87ED,87EA HP ProBook 630 G8 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -37744,7 +37744,7 @@ 64-bit Notebooks & Tablets - 87ED,87EA + 87EA,87ED HP ProBook 640 G8 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -37944,7 +37944,7 @@ 64-bit Desktops - 8882,8968 + 8968,8882 HP ProDesk 405 G8 Desktop Mini PC Windows 10 64-bit, 21H2 4297 @@ -37984,7 +37984,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 600 G4 Microtower PC Windows 10 64-bit, 21H2 4297 @@ -38104,7 +38104,7 @@ 64-bit Desktops - 83ed,83ec + 83ec,83ed HP ProDesk 680 G4 Microtower PC (with PCI slot) Windows 10 64-bit, 21H2 4297 @@ -38124,7 +38124,7 @@ 64-bit Desktops - 83ea,83eb + 83eb,83ea HP ProOne 400 G4 20-inch Non-Touch All-in-One Business PC Windows 10 64-bit, 21H2 4297 @@ -38144,7 +38144,7 @@ 64-bit Desktops - 85A2,85A1 + 85A1,85A2 HP ProOne 400 G5 20-inch All-in-One Business PC Windows 10 64-bit, 21H2 4297 @@ -38154,7 +38154,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 400 G5 23.8-inch All-in-One Business PC Windows 10 64-bit, 21H2 4297 @@ -38164,7 +38164,7 @@ 64-bit Desktops - 8810,880f,871c,871b + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 21H2 4297 @@ -38174,7 +38174,7 @@ 64-bit Desktops - 871C,871B,8810,880F + 8810,880F,871C,871B HP ProOne 400 G6 24 All-in-One PC Windows 10 64-bit, 21H2 4297 @@ -38184,7 +38184,7 @@ 64-bit Desktops - 8c5b,8c5d,8959,8958,8acd,8ace + 8958,8959,8ace,8c5d,8c5b,8acd HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H2 4297 @@ -38204,7 +38204,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ProOne 440 G5 23.8-in All-in-One Business PC Windows 10 64-bit, 21H2 4297 @@ -38214,7 +38214,7 @@ 64-bit Desktops - 880f,8810,871b,871c + 871b,8810,880f,871c HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 21H2 4297 @@ -38244,7 +38244,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ProOne 600 G5 21.5-in All-in-One Business PC Windows 10 64-bit, 21H2 4297 @@ -38584,7 +38584,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 21H2 4297 @@ -38614,7 +38614,7 @@ 64-bit Notebooks & Tablets - 8ab3,880D + 880D,8ab3 HP ZBook Firefly 14 inch G8 Mobile Workstation PC Windows 10 64-bit, 21H2 4297 @@ -38624,7 +38624,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 14 inch G9 Mobile Workstation PC Windows 10 64-bit, 21H2 4297 @@ -38664,7 +38664,7 @@ 64-bit Notebooks & Tablets - 8abb,896d + 896d,8abb HP ZBook Firefly 16 inch G9 Mobile Workstation PC Windows 10 64-bit, 21H2 4297 @@ -38694,7 +38694,7 @@ 64-bit Notebooks & Tablets - 8b92,8b93,8b94,8bd8 + 8bd8,8b92,8b93,8b94 HP ZBook Fury 16 G10 Mobile Workstation PC Windows 10 64-bit, 21H2 4297 @@ -38844,7 +38844,7 @@ 64-bit Notebooks & Tablets - 87E2,8809 + 8809,87E2 HP ZHAN 66 Pro 14 G4 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -38854,7 +38854,7 @@ 64-bit Notebooks & Tablets - 8979,8B21 + 8B21,8979 HP ZHAN 66 Pro 14 inch G5 Notebook PC Windows 10 64-bit, 21H2 4297 @@ -38904,7 +38904,7 @@ 64-bit Desktops - 85a1,85a2 + 85a2,85a1 HP ZHAN 66 Pro G2 21.5-in All-in-One Windows 10 64-bit, 21H2 4297 @@ -38914,7 +38914,7 @@ 64-bit Desktops - 85a2,85a1 + 85a1,85a2 HP ZHAN 66 Pro G2 23.8-in All-in-One Windows 10 64-bit, 21H2 4297 @@ -38924,7 +38924,7 @@ 64-bit Desktops - 871b,871c + 871c,871b HP ZHAN 66 Pro G3 22 All-in-One PC Windows 10 64-bit, 21H2 4297 @@ -38934,7 +38934,7 @@ 64-bit Desktops - 871c,871b,8810,880f + 871b,880f,871c,8810 HP ZHAN 66 Pro G3 24 All-in-One PC Windows 10 64-bit, 21H2 4297 @@ -38944,7 +38944,7 @@ 64-bit Desktops - 8c5b,8c5d,8958,8959,8ace,8acd + 8959,8958,8c5b,8c5d,8ace,8acd HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 21H2 4297 @@ -38974,7 +38974,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 11 64-bit, 21H2 4298 @@ -39394,7 +39394,7 @@ 64-bit Notebooks & Tablets - 8ad6,8ABB,896D + 896D,8ad6,8ABB HP EliteBook 840 14 inch G9 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -39624,7 +39624,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 11 64-bit, 21H2 4298 @@ -39634,7 +39634,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 11 64-bit, 21H2 4298 @@ -39714,7 +39714,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 880 G6 Tower PC Windows 11 64-bit, 21H2 4298 @@ -39774,7 +39774,7 @@ 64-bit Desktops - 895f,8acc,8acb,8957 + 8acb,8acc,8957,895f HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 21H2 4298 @@ -39784,7 +39784,7 @@ 64-bit Desktops - 8957,8acc,8acb,895f + 895f,8957,8acc,8acb HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 11 64-bit, 21H2 4298 @@ -39874,7 +39874,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8955,8C63,8AC9 HP Pro Mini 400 G9 PC Windows 11 64-bit, 21H2 4298 @@ -39884,7 +39884,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8AC8,8C5A,8954 HP Pro SFF 400 G9 Desktop PC Windows 11 64-bit, 21H2 4298 @@ -39894,7 +39894,7 @@ 64-bit Desktops - 8C59,8AC7,8953 + 8953,8C59,8AC7 HP Pro Tower 400 G9 PCI Desktop PC Windows 11 64-bit, 21H2 4298 @@ -39904,7 +39904,7 @@ 64-bit Desktops - 8953,8AC7,8C59 + 8AC7,8C59,8953 HP Pro Tower 480 G9 PCI Desktop PC Windows 11 64-bit, 21H2 4298 @@ -39944,7 +39944,7 @@ 64-bit Notebooks & Tablets - 8c3c,8c3b,8abd + 8c3b,8c3c,8abd HP Pro x360 Fortis 11 inch G11 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -39974,7 +39974,7 @@ 64-bit Notebooks & Tablets - 87DF,8A73,8A83 + 8A83,87DF,8A73 HP ProBook 430 G8 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -40014,7 +40014,7 @@ 64-bit Notebooks & Tablets - 87E0,8A76,8A74,8A86,8A84,8807 + 8A74,8A84,8A86,8A76,8807,87E0 HP ProBook 440 G8 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -40084,7 +40084,7 @@ 64-bit Notebooks & Tablets - 8A85,8A75,8A77,8808,87E1 + 8A85,8A77,8808,87E1,8A75 HP ProBook 450 G8 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -40134,7 +40134,7 @@ 64-bit Notebooks & Tablets - 87EA,87ED + 87ED,87EA HP ProBook 630 G8 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -40164,7 +40164,7 @@ 64-bit Notebooks & Tablets - 87ED,87EA + 87EA,87ED HP ProBook 640 G8 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -40384,7 +40384,7 @@ 64-bit Desktops - 871b,871c,8810,880f + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 11 64-bit, 21H2 4298 @@ -40404,7 +40404,7 @@ 64-bit Desktops - 8c5b,8c5d,8959,8958,8acd,8ace + 8958,8959,8c5d,8c5b,8ace,8acd HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 21H2 4298 @@ -40414,7 +40414,7 @@ 64-bit Desktops - 871c,871b,880f,8810 + 8810,880f,871c,871b HP ProOne 440 G6 24 All-in-One PC Windows 11 64-bit, 21H2 4298 @@ -40424,7 +40424,7 @@ 64-bit Desktops - 871b,871c + 871c,871b HP ProOne 600 G6 22 All-in-One PC Windows 11 64-bit, 21H2 4298 @@ -40484,7 +40484,7 @@ 64-bit Workstations - 8457,8458 + 8458,8457 HP Z2 Mini G4 Workstation Windows 11 64-bit, 21H2 4298 @@ -40684,7 +40684,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 11 64-bit, 21H2 4298 @@ -40714,7 +40714,7 @@ 64-bit Notebooks & Tablets - 8ab3,880D + 880D,8ab3 HP ZBook Firefly 14 inch G8 Mobile Workstation PC Windows 11 64-bit, 21H2 4298 @@ -40724,7 +40724,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 14 inch G9 Mobile Workstation PC Windows 11 64-bit, 21H2 4298 @@ -40764,7 +40764,7 @@ 64-bit Notebooks & Tablets - 8abb,896d + 896d,8abb HP ZBook Firefly 16 inch G9 Mobile Workstation PC Windows 11 64-bit, 21H2 4298 @@ -40794,7 +40794,7 @@ 64-bit Notebooks & Tablets - 8b92,8b94,8b93,8bd8 + 8bd8,8b93,8b92,8b94 HP ZBook Fury 16 G10 Mobile Workstation PC Windows 11 64-bit, 21H2 4298 @@ -40944,7 +40944,7 @@ 64-bit Notebooks & Tablets - 87E2,8809 + 8809,87E2 HP ZHAN 66 Pro 14 G4 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -40954,7 +40954,7 @@ 64-bit Notebooks & Tablets - 8979,8B21 + 8B21,8979 HP ZHAN 66 Pro 14 inch G5 Notebook PC Windows 11 64-bit, 21H2 4298 @@ -41014,7 +41014,7 @@ 64-bit Desktops - 871b,8810,880f,871c + 871b,880f,871c,8810 HP ZHAN 66 Pro G3 24 All-in-One PC Windows 11 64-bit, 21H2 4298 @@ -41024,7 +41024,7 @@ 64-bit Desktops - 8c5d,8958,8959,8c5b,8ace,8acd + 8959,8958,8c5d,8ace,8acd,8c5b HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 21H2 4298 @@ -41134,7 +41134,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 11 64-bit, 22H2 4306 @@ -41454,7 +41454,7 @@ 64-bit Notebooks & Tablets - 897B,8AA6 + 8AA6,897B HP EliteBook 640 14 inch G9 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -41664,7 +41664,7 @@ 64-bit Notebooks & Tablets - 896D,8ad6,8ABB + 8ABB,8ad6,896D HP EliteBook 840 14 inch G9 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -41684,7 +41684,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 840 G8 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -41794,7 +41794,7 @@ 64-bit Notebooks & Tablets - 896D,8ABB + 8ABB,896D HP EliteBook 860 16 inch G9 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -41814,7 +41814,7 @@ 64-bit Notebooks & Tablets - 8D03,8C6E + 8C6E,8D03 HP EliteBook 865 16 inch G11 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -41874,7 +41874,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 11 64-bit, 22H2 4306 @@ -41884,7 +41884,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 11 64-bit, 22H2 4306 @@ -41914,7 +41914,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 880 G6 Tower PC Windows 11 64-bit, 22H2 4306 @@ -41944,7 +41944,7 @@ 64-bit Desktops - 895f,8acc,8acb,8957 + 895f,8957,8acb,8acc HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 22H2 4306 @@ -41954,7 +41954,7 @@ 64-bit Desktops - 8957,8acb,8acc,895f + 8acc,8acb,8957,895f HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 11 64-bit, 22H2 4306 @@ -42064,7 +42064,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8955,8C63,8AC9 HP Pro Mini 400 G9 PC Windows 11 64-bit, 22H2 4306 @@ -42074,7 +42074,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8AC8,8C5A,8954 HP Pro SFF 400 G9 Desktop PC Windows 11 64-bit, 22H2 4306 @@ -42084,7 +42084,7 @@ 64-bit Desktops - 8C59,8AC7,8953 + 8953,8C59,8AC7 HP Pro Tower 400 G9 PCI Desktop PC Windows 11 64-bit, 22H2 4306 @@ -42094,7 +42094,7 @@ 64-bit Desktops - 8953,8AC7,8C59 + 8AC7,8C59,8953 HP Pro Tower 480 G9 PCI Desktop PC Windows 11 64-bit, 22H2 4306 @@ -42184,7 +42184,7 @@ 64-bit Notebooks & Tablets - 8977,8A9E + 8A9E,8977 HP ProBook 440 14 inch G9 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -42194,7 +42194,7 @@ 64-bit Notebooks & Tablets - 8A76,8A74,8A86,8A84,8807,87E0 + 8A84,8A86,8A76,8807,87E0,8A74 HP ProBook 440 G8 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -42264,7 +42264,7 @@ 64-bit Notebooks & Tablets - 8A85,8A75,8A77,8808,87E1 + 8A85,8A77,8808,87E1,8A75 HP ProBook 450 G8 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -42324,7 +42324,7 @@ 64-bit Notebooks & Tablets - 87EA,87ED + 87ED,87EA HP ProBook 630 G8 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -42534,7 +42534,7 @@ 64-bit Desktops - 8c5d,8c5b,8959,8958,8acd,8ace + 8958,8959,8c5d,8c5b,8ace,8acd HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 22H2 4306 @@ -42544,7 +42544,7 @@ 64-bit Desktops - 871c,871b,880f,8810 + 8810,880f,871c,871b HP ProOne 440 G6 24 All-in-One PC Windows 11 64-bit, 22H2 4306 @@ -42554,7 +42554,7 @@ 64-bit Desktops - 871b,871c + 871c,871b HP ProOne 600 G6 22 All-in-One PC Windows 11 64-bit, 22H2 4306 @@ -42584,7 +42584,7 @@ 64-bit Workstations - 8457,8458 + 8458,8457 HP Z2 Mini G4 Workstation Windows 11 64-bit, 22H2 4306 @@ -42814,7 +42814,7 @@ 64-bit Notebooks & Tablets - 880D,8ab3 + 8ab3,880D HP ZBook Firefly 14 inch G8 Mobile Workstation PC Windows 11 64-bit, 22H2 4306 @@ -42824,7 +42824,7 @@ 64-bit Notebooks & Tablets - 8abb,896d + 896d,8abb HP ZBook Firefly 14 inch G9 Mobile Workstation PC Windows 11 64-bit, 22H2 4306 @@ -42864,7 +42864,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 16 inch G9 Mobile Workstation PC Windows 11 64-bit, 22H2 4306 @@ -43044,7 +43044,7 @@ 64-bit Notebooks & Tablets - 8979,8B21 + 8B21,8979 HP ZHAN 66 Pro 14 inch G5 Notebook PC Windows 11 64-bit, 22H2 4306 @@ -43084,7 +43084,7 @@ 64-bit Desktops - 871b,8810,880f,871c + 871b,880f,871c,8810 HP ZHAN 66 Pro G3 24 All-in-One PC Windows 11 64-bit, 22H2 4306 @@ -43094,7 +43094,7 @@ 64-bit Desktops - 8c5d,8958,8959,8c5b,8ace,8acd + 8959,8958,8c5d,8ace,8acd,8c5b HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 22H2 4306 @@ -43104,7 +43104,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 10 64-bit, 22H2 4308 @@ -43454,7 +43454,7 @@ 64-bit Notebooks & Tablets - 897B,8AA6 + 8AA6,897B HP EliteBook 640 14 inch G9 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -43734,7 +43734,7 @@ 64-bit Notebooks & Tablets - 896D,8ad6,8ABB + 8ABB,8ad6,896D HP EliteBook 840 14 inch G9 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -43764,7 +43764,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 840 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -43884,7 +43884,7 @@ 64-bit Notebooks & Tablets - 896D,8ABB + 8ABB,896D HP EliteBook 860 16 inch G9 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -43904,7 +43904,7 @@ 64-bit Notebooks & Tablets - 8D03,8C6E + 8C6E,8D03 HP EliteBook 865 16 inch G11 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44014,7 +44014,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 10 64-bit, 22H2 4308 @@ -44024,7 +44024,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 10 64-bit, 22H2 4308 @@ -44094,7 +44094,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 880 G6 Tower PC Windows 10 64-bit, 22H2 4308 @@ -44154,7 +44154,7 @@ 64-bit Desktops - 895f,8acb,8acc,8957 + 8acb,8acc,895f,8957 HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 22H2 4308 @@ -44164,7 +44164,7 @@ 64-bit Desktops - 8957,8acb,8acc,895f + 8957,895f,8acc,8acb HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 10 64-bit, 22H2 4308 @@ -44174,7 +44174,7 @@ 64-bit Desktops - 8d18,8e00 + 8e00,8d18 HP EliteStudio 8 All-in-One G1i 23.8 inch Desktop AI PC Windows 10 64-bit, 22H2 4308 @@ -44184,7 +44184,7 @@ 64-bit Desktops - 8e00,8d18 + 8d18,8e00 HP EliteStudio 8 All-in-One G1i 27 inch Desktop AI PC Windows 10 64-bit, 22H2 4308 @@ -44264,7 +44264,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8955,8C63,8AC9 HP Pro Mini 400 G9 PC Windows 10 64-bit, 22H2 4308 @@ -44274,7 +44274,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8AC8,8C5A,8954 HP Pro SFF 400 G9 Desktop PC Windows 10 64-bit, 22H2 4308 @@ -44284,7 +44284,7 @@ 64-bit Desktops - 8C59,8AC7,8953 + 8953,8C59,8AC7 HP Pro Tower 400 G9 PCI Desktop PC Windows 10 64-bit, 22H2 4308 @@ -44294,7 +44294,7 @@ 64-bit Desktops - 8953,8AC7,8C59 + 8AC7,8C59,8953 HP Pro Tower 480 G9 PCI Desktop PC Windows 10 64-bit, 22H2 4308 @@ -44374,7 +44374,7 @@ 64-bit Notebooks & Tablets - 8E2E,8E58 + 8E58,8E2E HP ProBook 4 G1iR 14 inch Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44384,7 +44384,7 @@ 64-bit Notebooks & Tablets - 8E58,8E2E + 8E2E,8E58 HP ProBook 4 G1iR 16 inch Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44404,7 +44404,7 @@ 64-bit Notebooks & Tablets - 87DF,8A73,8A83 + 8A83,87DF,8A73 HP ProBook 430 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44434,7 +44434,7 @@ 64-bit Notebooks & Tablets - 8977,8A9E + 8A9E,8977 HP ProBook 440 14 inch G9 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44454,7 +44454,7 @@ 64-bit Notebooks & Tablets - 87E0,8A76,8A74,8A84,8A86,8807 + 8A74,8A84,8A86,8A76,8807,87E0 HP ProBook 440 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44494,7 +44494,7 @@ 64-bit Notebooks & Tablets - 8A8E,8861 + 8861,8A8E HP ProBook 445 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44534,7 +44534,7 @@ 64-bit Notebooks & Tablets - 8A85,8A75,8A77,8808,87E1 + 8A75,8A85,8A77,8808,87E1 HP ProBook 450 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44564,7 +44564,7 @@ 64-bit Notebooks & Tablets - 8A90,8864 + 8864,8A90 HP ProBook 455 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44594,7 +44594,7 @@ 64-bit Notebooks & Tablets - 87EA,87ED + 87ED,87EA HP ProBook 630 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44624,7 +44624,7 @@ 64-bit Notebooks & Tablets - 87ED,87EA + 87EA,87ED HP ProBook 640 G8 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -44854,7 +44854,7 @@ 64-bit Desktops - 871b,871c,8810,880f + 871b,871c,880f,8810 HP ProOne 400 G6 20 All-in-One PC Windows 10 64-bit, 22H2 4308 @@ -44874,7 +44874,7 @@ 64-bit Desktops - 8c5b,8c5d,8959,8958,8acd,8ace + 8958,8959,8c5d,8c5b,8acd,8ace HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 22H2 4308 @@ -44884,7 +44884,7 @@ 64-bit Desktops - 871c,871b,880f,8810 + 8810,880f,871c,871b HP ProOne 440 G6 24 All-in-One PC Windows 10 64-bit, 22H2 4308 @@ -44904,7 +44904,7 @@ 64-bit Desktops - 8d19,8e01 + 8e01,8d19 HP ProStudio 4 All-in-One G1i 23.8 inch Desktop AI PC Windows 10 64-bit, 22H2 4308 @@ -44994,7 +44994,7 @@ 64-bit Workstations - 8755,8754 + 8754,8755 HP Z2 Mini G5 Workstation Windows 10 64-bit, 22H2 4308 @@ -45084,7 +45084,7 @@ 64-bit Workstations - 8751,8750 + 8750,8751 HP Z2 Tower G5 Workstation Windows 10 64-bit, 22H2 4308 @@ -45254,7 +45254,7 @@ 64-bit Notebooks & Tablets - 8724,8723 + 8723,8724 HP ZBook Firefly 14 G7 Mobile Workstation Windows 10 64-bit, 22H2 4308 @@ -45304,7 +45304,7 @@ 64-bit Notebooks & Tablets - 880D,8ab3 + 8ab3,880D HP ZBook Firefly 14 inch G8 Mobile Workstation PC Windows 10 64-bit, 22H2 4308 @@ -45314,7 +45314,7 @@ 64-bit Notebooks & Tablets - 8abb,896d + 896d,8abb HP ZBook Firefly 14 inch G9 Mobile Workstation PC Windows 10 64-bit, 22H2 4308 @@ -45364,7 +45364,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 16 inch G9 Mobile Workstation PC Windows 10 64-bit, 22H2 4308 @@ -45394,7 +45394,7 @@ 64-bit Notebooks & Tablets - 8bd8,8b92,8b94,8b93 + 8bd8,8b93,8b92,8b94 HP ZBook Fury 16 G10 Mobile Workstation PC Windows 10 64-bit, 22H2 4308 @@ -45404,7 +45404,7 @@ 64-bit Notebooks & Tablets - 8cc8,8ccd,8ca4,8ca7,8ca6,8ca9 + 8cc8,8ccd,8ca9,8ca7,8ca6,8ca4 HP ZBook Fury 16 G11 Mobile Workstation PC Windows 10 64-bit, 22H2 4308 @@ -45444,7 +45444,7 @@ 64-bit Notebooks & Tablets - 8de2,8de8,8de4,8de6 + 8de8,8de4,8de6,8de2 HP ZBook Fury G1i 16 inch Mobile Workstation PC Windows 10 64-bit, 22H2 4308 @@ -45454,7 +45454,7 @@ 64-bit Notebooks & Tablets - 8de7,8de5,8de9,8de2,8de3 + 8de7,8de5,8de2,8de3,8de9 HP ZBook Fury G1i 18 inch Mobile Workstation PC Windows 10 64-bit, 22H2 4308 @@ -45614,7 +45614,7 @@ 64-bit Notebooks & Tablets - 8979,8B21 + 8B21,8979 HP ZHAN 66 Pro 14 inch G5 Notebook PC Windows 10 64-bit, 22H2 4308 @@ -45674,7 +45674,7 @@ 64-bit Desktops - 8c5d,8958,8959,8c5b,8ace,8acd + 8958,8959,8c5d,8ace,8acd,8c5b HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 10 64-bit, 22H2 4308 @@ -45684,7 +45684,7 @@ 64-bit Desktops - 874d,874e + 874e,874d HP Collaboration G6 24 All-in-One with Zoom Rooms Windows 11 64-bit, 23H2 4317 @@ -45734,7 +45734,7 @@ 64-bit Desktops - 8952,8AC6 + 8AC6,8952 HP Elite Mini 600 G9 PC Windows 11 64-bit, 23H2 4317 @@ -46084,7 +46084,7 @@ 64-bit Notebooks & Tablets - 897B,8AA6 + 8AA6,897B HP EliteBook 640 14 inch G9 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -46404,7 +46404,7 @@ 64-bit Notebooks & Tablets - 896D,8ad6,8ABB + 8ABB,8ad6,896D HP EliteBook 840 14 inch G9 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -46424,7 +46424,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 840 G8 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -46514,7 +46514,7 @@ 64-bit Notebooks & Tablets - 896D,8ABB + 8ABB,896D HP EliteBook 860 16 inch G9 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -46534,7 +46534,7 @@ 64-bit Notebooks & Tablets - 8D03,8C6E + 8C6E,8D03 HP EliteBook 865 16 inch G11 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -46674,7 +46674,7 @@ 64-bit Desktops - 870f,8711,8710 + 8711,8710,870f HP EliteDesk 800 G6 Desktop Mini PC Windows 11 64-bit, 23H2 4317 @@ -46684,7 +46684,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Small Form Factor PC Windows 11 64-bit, 23H2 4317 @@ -46694,7 +46694,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 800 G6 Tower PC Windows 11 64-bit, 23H2 4317 @@ -46724,7 +46724,7 @@ 64-bit Desktops - 870C,870B + 870B,870C HP EliteDesk 880 G6 Tower PC Windows 11 64-bit, 23H2 4317 @@ -46754,7 +46754,7 @@ 64-bit Desktops - 895f,8acb,8acc,8957 + 895f,8957,8acb,8acc HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 23H2 4317 @@ -46764,7 +46764,7 @@ 64-bit Desktops - 8957,8acb,8acc,895f + 8acc,8acb,8957,895f HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 11 64-bit, 23H2 4317 @@ -46774,7 +46774,7 @@ 64-bit Desktops - 8d18,8e00 + 8e00,8d18 HP EliteStudio 8 All-in-One G1i 23.8 inch Desktop AI PC Windows 11 64-bit, 23H2 4317 @@ -46784,7 +46784,7 @@ 64-bit Desktops - 8e00,8d18 + 8d18,8e00 HP EliteStudio 8 All-in-One G1i 27 inch Desktop AI PC Windows 11 64-bit, 23H2 4317 @@ -46894,7 +46894,7 @@ 64-bit Notebooks & Tablets - 8d1f,8d20 + 8d20,8d1f HP Fortis Flip G1i 11 inch Notebook PC Windows 11 64-bit, 23H2 4317 @@ -46924,7 +46924,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8C63,8955,8AC9 HP Pro Mini 400 G9 PC Windows 11 64-bit, 23H2 4317 @@ -46934,7 +46934,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8AC8,8954,8C5A HP Pro SFF 400 G9 Desktop PC Windows 11 64-bit, 23H2 4317 @@ -46944,7 +46944,7 @@ 64-bit Desktops - 8C59,8AC7,8953 + 8C59,8953,8AC7 HP Pro Tower 400 G9 PCI Desktop PC Windows 11 64-bit, 23H2 4317 @@ -46954,7 +46954,7 @@ 64-bit Desktops - 8953,8AC7,8C59 + 8AC7,8953,8C59 HP Pro Tower 480 G9 PCI Desktop PC Windows 11 64-bit, 23H2 4317 @@ -47074,7 +47074,7 @@ 64-bit Notebooks & Tablets - 8E2E,8E58 + 8E58,8E2E HP ProBook 4 G1iR 14 inch Notebook PC Windows 11 64-bit, 23H2 4317 @@ -47084,7 +47084,7 @@ 64-bit Notebooks & Tablets - 8E58,8E2E + 8E2E,8E58 HP ProBook 4 G1iR 16 inch Notebook PC Windows 11 64-bit, 23H2 4317 @@ -47114,7 +47114,7 @@ 64-bit Notebooks & Tablets - 8977,8A9E + 8A9E,8977 HP ProBook 440 14 inch G9 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -47214,7 +47214,7 @@ 64-bit Notebooks & Tablets - 87EA,87ED + 87ED,87EA HP ProBook 630 G8 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -47454,7 +47454,7 @@ 64-bit Desktops - 8c5b,8c5d,8959,8958,8acd,8ace + 8958,8959,8c5d,8c5b,8acd,8ace HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 23H2 4317 @@ -47464,7 +47464,7 @@ 64-bit Desktops - 871c,871b,880f,8810 + 8810,880f,871c,871b HP ProOne 440 G6 24 All-in-One PC Windows 11 64-bit, 23H2 4317 @@ -47484,7 +47484,7 @@ 64-bit Desktops - 8d19,8e01 + 8e01,8d19 HP ProStudio 4 All-in-One G1i 23.8 inch Desktop AI PC Windows 11 64-bit, 23H2 4317 @@ -47494,7 +47494,7 @@ 64-bit Workstations - 894d,8ac1 + 8ac1,894d HP Z1 G9 Tower Desktop Windows 11 64-bit, 23H2 4317 @@ -47524,7 +47524,7 @@ 64-bit Workstations - 8458,8457 + 8457,8458 HP Z2 Mini G4 Workstation Windows 11 64-bit, 23H2 4317 @@ -47534,7 +47534,7 @@ 64-bit Workstations - 8755,8754 + 8754,8755 HP Z2 Mini G5 Workstation Windows 11 64-bit, 23H2 4317 @@ -47624,7 +47624,7 @@ 64-bit Workstations - 8751,8750 + 8750,8751 HP Z2 Tower G5 Workstation Windows 11 64-bit, 23H2 4317 @@ -47824,7 +47824,7 @@ 64-bit Notebooks & Tablets - 880D,8ab3 + 8ab3,880D HP ZBook Firefly 14 inch G8 Mobile Workstation PC Windows 11 64-bit, 23H2 4317 @@ -47834,7 +47834,7 @@ 64-bit Notebooks & Tablets - 8abb,896d + 896d,8abb HP ZBook Firefly 14 inch G9 Mobile Workstation PC Windows 11 64-bit, 23H2 4317 @@ -47874,7 +47874,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 16 inch G9 Mobile Workstation PC Windows 11 64-bit, 23H2 4317 @@ -47894,7 +47894,7 @@ 64-bit Notebooks & Tablets - 8b92,8b93,8b94,8bd8 + 8bd8,8b92,8b93,8b94 HP ZBook Fury 16 G10 Mobile Workstation PC Windows 11 64-bit, 23H2 4317 @@ -47904,7 +47904,7 @@ 64-bit Notebooks & Tablets - 8ccd,8cc8,8ca9,8ca4,8ca6,8ca7 + 8ccd,8cc8,8ca9,8ca6,8ca7,8ca4 HP ZBook Fury 16 G11 Mobile Workstation PC Windows 11 64-bit, 23H2 4317 @@ -47934,7 +47934,7 @@ 64-bit Notebooks & Tablets - 8de2,8de8,8de4,8de6 + 8de8,8de4,8de6,8de2 HP ZBook Fury G1i 16 inch Mobile Workstation PC Windows 11 64-bit, 23H2 4317 @@ -47944,7 +47944,7 @@ 64-bit Notebooks & Tablets - 8de7,8de5,8de9,8de3,8de2 + 8de7,8de5,8de3,8de2,8de9 HP ZBook Fury G1i 18 inch Mobile Workstation PC Windows 11 64-bit, 23H2 4317 @@ -48084,7 +48084,7 @@ 64-bit Notebooks & Tablets - 8979,8B21 + 8B21,8979 HP ZHAN 66 Pro 14 inch G5 Notebook PC Windows 11 64-bit, 23H2 4317 @@ -48104,7 +48104,7 @@ 64-bit Desktops - 871b,871c + 871c,871b HP ZHAN 66 Pro G3 22 All-in-One PC Windows 11 64-bit, 23H2 4317 @@ -48124,7 +48124,7 @@ 64-bit Desktops - 8c5d,8958,8959,8c5b,8ace,8acd + 8958,8959,8c5d,8ace,8acd,8c5b HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 23H2 4317 @@ -48154,7 +48154,7 @@ 64-bit Desktops - 8952,8AC6 + 8AC6,8952 HP Elite Mini 600 G9 PC Windows 11 64-bit, 24H2 4323 @@ -48444,7 +48444,7 @@ 64-bit Notebooks & Tablets - 8F14,8F9A + 8F9A,8F14 HP EliteBook 6 G2a 14 inch Notebook AI PC Windows 11 64-bit, 24H2 4323 @@ -48494,7 +48494,7 @@ 64-bit Notebooks & Tablets - 8F3B,8F19 + 8F19,8F3B HP EliteBook 6 G2ah 16 inch Notebook PC Windows 11 64-bit, 24H2 4323 @@ -48604,7 +48604,7 @@ 64-bit Notebooks & Tablets - 897B,8AA6 + 8AA6,897B HP EliteBook 640 14 inch G9 Notebook PC Windows 11 64-bit, 24H2 4323 @@ -48834,7 +48834,7 @@ 64-bit Notebooks & Tablets - 8F94,8F40 + 8F40,8F94 HP EliteBook 8 G2a 14 inch Notebook Next Gen AI PC Windows 11 64-bit, 24H2 4323 @@ -48844,7 +48844,7 @@ 64-bit Notebooks & Tablets - 8F41,8F95 + 8F95,8F41 HP EliteBook 8 G2a 16 inch Notebook Next Gen AI PC Windows 11 64-bit, 24H2 4323 @@ -48964,7 +48964,7 @@ 64-bit Notebooks & Tablets - 896D,8ad6,8ABB + 8ad6,8ABB,896D HP EliteBook 840 14 inch G9 Notebook PC Windows 11 64-bit, 24H2 4323 @@ -48984,7 +48984,7 @@ 64-bit Notebooks & Tablets - 880D,8AB3,8AB8 + 880D,8AB8,8AB3 HP EliteBook 840 G8 Notebook PC Windows 11 64-bit, 24H2 4323 @@ -48994,7 +48994,7 @@ 64-bit Notebooks & Tablets - 8C6E,8D03 + 8D03,8C6E HP EliteBook 845 14 inch G11 Notebook PC Windows 11 64-bit, 24H2 4323 @@ -49044,7 +49044,7 @@ 64-bit Notebooks & Tablets - 896D,8ABB + 8ABB,896D HP EliteBook 860 16 inch G9 Notebook PC Windows 11 64-bit, 24H2 4323 @@ -49204,11 +49204,11 @@ 64-bit Desktops - 8E89,8F5A + 8F5A,8E89 HP EliteDesk 8 SFF G2a Desktop Next Gen AI PC Windows 11 64-bit, 24H2 4323 - sp174423 + sp173432 2103559117 @@ -49244,7 +49244,7 @@ 64-bit Desktops - 895f,8acb,8acc,8957 + 8957,895f,8acb,8acc HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 24H2 4323 @@ -49254,7 +49254,7 @@ 64-bit Desktops - 8957,8acb,8acc,895f + 8acc,8acb,895f,8957 HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 11 64-bit, 24H2 4323 @@ -49264,7 +49264,7 @@ 64-bit Desktops - 8d18,8e00 + 8e00,8d18 HP EliteStudio 8 All-in-One G1i 23.8 inch Desktop AI PC Windows 11 64-bit, 24H2 4323 @@ -49274,7 +49274,7 @@ 64-bit Desktops - 8e00,8d18 + 8d18,8e00 HP EliteStudio 8 All-in-One G1i 27 inch Desktop AI PC Windows 11 64-bit, 24H2 4323 @@ -49394,7 +49394,7 @@ 64-bit Notebooks & Tablets - 8d1f,8d20 + 8d20,8d1f HP Fortis Flip G1i 11 inch Notebook PC Windows 11 64-bit, 24H2 4323 @@ -49414,7 +49414,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8C63,8955,8AC9 HP Pro Mini 400 G9 PC Windows 11 64-bit, 24H2 4323 @@ -49424,7 +49424,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8AC8,8954,8C5A HP Pro SFF 400 G9 Desktop PC Windows 11 64-bit, 24H2 4323 @@ -49474,7 +49474,7 @@ 64-bit Notebooks & Tablets - 8c3c,8c3b,8abd + 8abd,8c3c,8c3b HP Pro x360 Fortis 11 inch G11 Notebook PC Windows 11 64-bit, 24H2 4323 @@ -49564,7 +49564,7 @@ 64-bit Notebooks & Tablets - 8E2E,8E58 + 8E58,8E2E HP ProBook 4 G1iR 14 inch Notebook PC Windows 11 64-bit, 24H2 4323 @@ -49574,7 +49574,7 @@ 64-bit Notebooks & Tablets - 8E58,8E2E + 8E2E,8E58 HP ProBook 4 G1iR 16 inch Notebook PC Windows 11 64-bit, 24H2 4323 @@ -49604,7 +49604,7 @@ 64-bit Notebooks & Tablets - 8f13,8f18 + 8f18,8f13 HP ProBook 4 G2a 16 inch Notebook AI PC Windows 11 64-bit, 24H2 4323 @@ -49614,7 +49614,7 @@ 64-bit Notebooks & Tablets - 8f1a,8f15 + 8f15,8f1a HP ProBook 4 G2a 16 inch Notebook Next Gen AI PC Windows 11 64-bit, 24H2 4323 @@ -49724,7 +49724,7 @@ 64-bit Notebooks & Tablets - 8977,8A9E + 8A9E,8977 HP ProBook 440 14 inch G9 Notebook PC Windows 11 64-bit, 24H2 4323 @@ -49884,7 +49884,7 @@ 64-bit Desktops - 8959,8c5b,8c5d,8958,8acd,8ace + 8c5b,8c5d,8ace,8959,8958,8acd HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 24H2 4323 @@ -49894,7 +49894,7 @@ 64-bit Desktops - 8d19,8e01 + 8e01,8d19 HP ProStudio 4 All-in-One G1i 23.8 inch Desktop AI PC Windows 11 64-bit, 24H2 4323 @@ -49904,7 +49904,7 @@ 64-bit Workstations - 894d,8ac1 + 8ac1,894d HP Z1 G9 Tower Desktop Windows 11 64-bit, 24H2 4323 @@ -49954,7 +49954,7 @@ 64-bit Workstations - 8458,8457 + 8457,8458 HP Z2 Mini G4 Workstation Windows 11 64-bit, 24H2 4323 @@ -50284,7 +50284,7 @@ 64-bit Notebooks & Tablets - 880D,8ab3 + 8ab3,880D HP ZBook Firefly 14 inch G8 Mobile Workstation PC Windows 11 64-bit, 24H2 4323 @@ -50294,7 +50294,7 @@ 64-bit Notebooks & Tablets - 8abb,896d + 896d,8abb HP ZBook Firefly 14 inch G9 Mobile Workstation PC Windows 11 64-bit, 24H2 4323 @@ -50334,7 +50334,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 16 inch G9 Mobile Workstation PC Windows 11 64-bit, 24H2 4323 @@ -50344,7 +50344,7 @@ 64-bit Notebooks & Tablets - 8b92,8b94,8b93,8bd8 + 8bd8,8b94,8b93,8b92 HP ZBook Fury 16 G10 Mobile Workstation PC Windows 11 64-bit, 24H2 4323 @@ -50354,7 +50354,7 @@ 64-bit Notebooks & Tablets - 8ccd,8cc8,8ca4,8ca6,8ca9,8ca7 + 8ccd,8cc8,8ca9,8ca7,8ca4,8ca6 HP ZBook Fury 16 G11 Mobile Workstation PC Windows 11 64-bit, 24H2 4323 @@ -50384,7 +50384,7 @@ 64-bit Notebooks & Tablets - 8de7,8de5,8de9,8de2,8de3 + 8de7,8de5,8de2,8de3,8de9 HP ZBook Fury G1i 18 inch Mobile Workstation PC Windows 11 64-bit, 24H2 4323 @@ -50504,7 +50504,7 @@ 64-bit Desktops - 8c5b,8c5d,8958,8959,8ace,8acd + 8959,8958,8c5b,8c5d,8ace,8acd HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 24H2 4323 @@ -50634,7 +50634,7 @@ 64-bit Desktops - 8952,8AC6 + 8AC6,8952 HP Elite Mini 600 G9 PC Windows 11 64-bit, 25H2 4333 @@ -50974,7 +50974,7 @@ 64-bit Notebooks & Tablets - 8F3B,8F19 + 8F19,8F3B HP EliteBook 6 G2ah 16 inch Notebook PC Windows 11 64-bit, 25H2 4333 @@ -51084,7 +51084,7 @@ 64-bit Notebooks & Tablets - 897B,8AA6 + 8AA6,897B HP EliteBook 640 14 inch G9 Notebook PC Windows 11 64-bit, 25H2 4333 @@ -51314,7 +51314,7 @@ 64-bit Notebooks & Tablets - 8F94,8F40 + 8F40,8F94 HP EliteBook 8 G2a 14 inch Notebook Next Gen AI PC Windows 11 64-bit, 25H2 4333 @@ -51324,7 +51324,7 @@ 64-bit Notebooks & Tablets - 8F41,8F95 + 8F95,8F41 HP EliteBook 8 G2a 16 inch Notebook Next Gen AI PC Windows 11 64-bit, 25H2 4333 @@ -51434,7 +51434,7 @@ 64-bit Notebooks & Tablets - 896D,8ad6,8ABB + 8ad6,8ABB,896D HP EliteBook 840 14 inch G9 Notebook PC Windows 11 64-bit, 25H2 4333 @@ -51444,7 +51444,7 @@ 64-bit Notebooks & Tablets - 8C6E,8D03 + 8D03,8C6E HP EliteBook 845 14 inch G11 Notebook PC Windows 11 64-bit, 25H2 4333 @@ -51484,7 +51484,7 @@ 64-bit Notebooks & Tablets - 896D,8ABB + 8ABB,896D HP EliteBook 860 16 inch G9 Notebook PC Windows 11 64-bit, 25H2 4333 @@ -51644,11 +51644,11 @@ 64-bit Desktops - 8E89,8F5A + 8F5A,8E89 HP EliteDesk 8 SFF G2a Desktop Next Gen AI PC Windows 11 64-bit, 25H2 4333 - sp174423 + sp173432 2103559117 @@ -51674,7 +51674,7 @@ 64-bit Desktops - 895f,8acb,8acc,8957 + 8957,895f,8acc,8acb HP EliteOne 840 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 25H2 4333 @@ -51684,7 +51684,7 @@ 64-bit Desktops - 8957,8acb,8acc,895f + 8acb,8acc,895f,8957 HP EliteOne 870 27 inch G9 All-in-One Desktop PC Windows 11 64-bit, 25H2 4333 @@ -51694,7 +51694,7 @@ 64-bit Desktops - 8d18,8e00 + 8e00,8d18 HP EliteStudio 8 All-in-One G1i 23.8 inch Desktop AI PC Windows 11 64-bit, 25H2 4333 @@ -51704,7 +51704,7 @@ 64-bit Desktops - 8e00,8d18 + 8d18,8e00 HP EliteStudio 8 All-in-One G1i 27 inch Desktop AI PC Windows 11 64-bit, 25H2 4333 @@ -51814,7 +51814,7 @@ 64-bit Notebooks & Tablets - 8d1f,8d20 + 8d20,8d1f HP Fortis Flip G1i 11 inch Notebook PC Windows 11 64-bit, 25H2 4333 @@ -51834,7 +51834,7 @@ 64-bit Desktops - 8C63,8AC9,8955 + 8C63,8955,8AC9 HP Pro Mini 400 G9 PC Windows 11 64-bit, 25H2 4333 @@ -51844,7 +51844,7 @@ 64-bit Desktops - 8954,8AC8,8C5A + 8AC8,8954,8C5A HP Pro SFF 400 G9 Desktop PC Windows 11 64-bit, 25H2 4333 @@ -51894,7 +51894,7 @@ 64-bit Notebooks & Tablets - 8c3c,8c3b,8abd + 8abd,8c3c,8c3b HP Pro x360 Fortis 11 inch G11 Notebook PC Windows 11 64-bit, 25H2 4333 @@ -51974,7 +51974,7 @@ 64-bit Notebooks & Tablets - 8E2E,8E58 + 8E58,8E2E HP ProBook 4 G1iR 14 inch Notebook PC Windows 11 64-bit, 25H2 4333 @@ -52134,7 +52134,7 @@ 64-bit Notebooks & Tablets - 8977,8A9E + 8A9E,8977 HP ProBook 440 14 inch G9 Notebook PC Windows 11 64-bit, 25H2 4333 @@ -52294,7 +52294,7 @@ 64-bit Desktops - 8959,8c5b,8c5d,8958,8acd,8ace + 8c5b,8c5d,8ace,8959,8958,8acd HP ProOne 440 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 25H2 4333 @@ -52304,7 +52304,7 @@ 64-bit Desktops - 8d19,8e01 + 8e01,8d19 HP ProStudio 4 All-in-One G1i 23.8 inch Desktop AI PC Windows 11 64-bit, 25H2 4333 @@ -52314,7 +52314,7 @@ 64-bit Workstations - 894d,8ac1 + 8ac1,894d HP Z1 G9 Tower Desktop Windows 11 64-bit, 25H2 4333 @@ -52674,7 +52674,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 14 inch G9 Mobile Workstation PC Windows 11 64-bit, 25H2 4333 @@ -52704,7 +52704,7 @@ 64-bit Notebooks & Tablets - 896d,8abb + 8abb,896d HP ZBook Firefly 16 inch G9 Mobile Workstation PC Windows 11 64-bit, 25H2 4333 @@ -52714,7 +52714,7 @@ 64-bit Notebooks & Tablets - 8b93,8b94,8b92,8bd8 + 8bd8,8b94,8b92,8b93 HP ZBook Fury 16 G10 Mobile Workstation PC Windows 11 64-bit, 25H2 4333 @@ -52724,7 +52724,7 @@ 64-bit Notebooks & Tablets - 8cc8,8ccd,8ca4,8ca6,8ca7,8ca9 + 8cc8,8ccd,8ca7,8ca9,8ca4,8ca6 HP ZBook Fury 16 G11 Mobile Workstation PC Windows 11 64-bit, 25H2 4333 @@ -52734,7 +52734,7 @@ 64-bit Notebooks & Tablets - 8de2,8de8,8de4,8de6 + 8de8,8de2,8de4,8de6 HP ZBook Fury G1i 16 inch Mobile Workstation PC Windows 11 64-bit, 25H2 4333 @@ -52744,7 +52744,7 @@ 64-bit Notebooks & Tablets - 8de7,8de5,8de9,8de3,8de2 + 8de7,8de5,8de3,8de2,8de9 HP ZBook Fury G1i 18 inch Mobile Workstation PC Windows 11 64-bit, 25H2 4333 @@ -52844,7 +52844,7 @@ 64-bit Notebooks & Tablets - 8F0D,8F0C + 8F0C,8F0D HP ZBook X G2i 16 inch Mobile Workstation PC Windows 11 64-bit, 25H2 4333 @@ -52864,7 +52864,7 @@ 64-bit Desktops - 8c5b,8c5d,8958,8959,8ace,8acd + 8958,8959,8c5b,8ace,8c5d,8acd HP ZHAN 99 Pro 23.8 inch G9 All-in-One Desktop PC Windows 11 64-bit, 25H2 4333 diff --git a/OSDCloud/core/operatingsystems-bak/26200.8653-win11-25h2.xml b/OSDCloud/core/operatingsystems-bak/26200.8653-win11-25h2.xml new file mode 100644 index 0000000..eac9753 --- /dev/null +++ b/OSDCloud/core/operatingsystems-bak/26200.8653-win11-25h2.xml @@ -0,0 +1,28898 @@ + + + + + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreCountrySpecific + x64 + 5771287445 + f4202f349eb4d9f2bcd1e26fcf81422a9b918047dc1097a83a596b51effb1166 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c10a5c0e-7d85-4249-9f68-3ed9c068de86/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %BASE_CHINA% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Professional + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducation + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducationN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstation + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstationN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Core + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreSingleLanguage + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Education + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EducationN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Professional + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducation + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducationN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstation + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstationN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Core + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreSingleLanguage + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Education + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EducationN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Professional + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducation + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducationN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstation + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstationN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Core + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreSingleLanguage + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Education + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + EducationN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Professional + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducation + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducationN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstation + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstationN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Core + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreSingleLanguage + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Education + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EducationN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Professional + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducation + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducationN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstation + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstationN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Core + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreSingleLanguage + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Education + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EducationN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Professional + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducation + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducationN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstation + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstationN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Core + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreSingleLanguage + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Education + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + EducationN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Professional + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducation + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducationN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstation + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstationN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Core + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreSingleLanguage + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Education + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + EducationN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Professional + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducation + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducationN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstation + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstationN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Core + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreSingleLanguage + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Education + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EducationN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Professional + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducation + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducationN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstation + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstationN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Core + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreSingleLanguage + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Education + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EducationN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Professional + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducation + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducationN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstation + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstationN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Core + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreSingleLanguage + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Education + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EducationN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Professional + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducation + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducationN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstation + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstationN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Core + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreSingleLanguage + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Education + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + EducationN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Professional + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducation + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducationN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstation + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstationN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Core + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreSingleLanguage + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Education + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EducationN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Professional + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducation + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducationN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstation + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstationN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Core + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreSingleLanguage + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Education + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EducationN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Professional + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducation + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducationN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstation + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstationN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Core + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreSingleLanguage + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Education + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + EducationN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Professional + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducation + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducationN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstation + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstationN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Core + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreSingleLanguage + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Education + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + EducationN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Professional + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducation + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducationN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstation + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstationN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Core + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreSingleLanguage + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Education + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EducationN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Professional + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducation + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducationN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstation + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstationN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Core + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreSingleLanguage + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Education + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EducationN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Professional + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducation + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducationN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstation + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstationN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Core + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreSingleLanguage + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Education + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EducationN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Professional + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducation + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducationN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstation + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstationN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Core + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreSingleLanguage + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Education + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EducationN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Professional + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducation + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducationN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstation + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstationN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Core + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreSingleLanguage + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Education + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EducationN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Professional + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducation + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducationN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstation + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstationN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Core + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreSingleLanguage + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Education + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EducationN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Professional + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducation + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducationN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstation + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstationN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Core + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreSingleLanguage + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Education + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + EducationN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Professional + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducation + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducationN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstation + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstationN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Core + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreSingleLanguage + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Education + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + EducationN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Professional + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducation + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducationN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstation + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstationN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Core + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreSingleLanguage + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Education + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EducationN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Professional + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducation + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducationN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstation + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstationN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Core + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreSingleLanguage + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Education + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EducationN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Professional + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducation + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducationN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstation + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstationN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Core + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreSingleLanguage + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Education + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EducationN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Professional + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducation + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducationN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstation + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstationN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Core + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreSingleLanguage + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Education + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + EducationN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Professional + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducation + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducationN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstation + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstationN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Core + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreSingleLanguage + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Education + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EducationN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Professional + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducation + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducationN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstation + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstationN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Core + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreSingleLanguage + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Education + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + EducationN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Professional + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducation + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducationN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstation + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstationN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Core + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreSingleLanguage + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Education + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + EducationN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Professional + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducation + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducationN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstation + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstationN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Core + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreSingleLanguage + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Education + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + EducationN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Professional + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducation + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducationN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstation + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstationN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Core + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreSingleLanguage + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Education + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EducationN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Professional + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducation + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducationN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstation + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstationN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Core + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreSingleLanguage + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Education + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EducationN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Professional + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducation + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducationN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstation + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstationN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Core + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreSingleLanguage + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Education + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + EducationN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Professional + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducation + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducationN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstation + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstationN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Core + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreSingleLanguage + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Education + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + EducationN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Professional + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducation + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducationN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstation + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstationN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Core + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreSingleLanguage + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Education + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EducationN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Professional + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducation + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducationN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstation + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstationN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Core + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreSingleLanguage + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Education + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EducationN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Professional + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducation + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducationN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstation + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstationN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Core + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreSingleLanguage + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Education + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EducationN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Professional + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducation + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducationN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstation + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstationN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Core + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreSingleLanguage + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Education + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EducationN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Professional + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducation + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducationN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstation + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstationN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Core + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreSingleLanguage + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Education + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + EducationN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Professional + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducation + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducationN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstation + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstationN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Core + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreSingleLanguage + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Education + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EducationN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Professional + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducation + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducationN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstation + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstationN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Core + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreSingleLanguage + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Education + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EducationN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Professional + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducation + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducationN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstation + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstationN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Core + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreSingleLanguage + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Education + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + EducationN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Professional + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducation + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducationN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstation + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstationN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Core + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreSingleLanguage + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Education + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EducationN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Professional + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducation + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducationN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstation + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstationN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Core + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreSingleLanguage + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Education + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EducationN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Professional + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducation + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducationN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstation + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstationN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Core + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreSingleLanguage + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Education + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EducationN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Professional + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducation + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducationN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstation + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstationN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Core + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreSingleLanguage + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Education + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EducationN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Professional + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducation + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducationN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstation + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstationN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Core + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreSingleLanguage + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Education + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EducationN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Professional + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducation + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducationN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstation + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstationN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Core + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreSingleLanguage + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Education + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EducationN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Professional + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducation + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducationN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstation + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstationN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Core + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreSingleLanguage + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Education + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EducationN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Professional + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducation + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducationN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstation + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstationN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Core + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreSingleLanguage + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Education + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + EducationN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Professional + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducation + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducationN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstation + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstationN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Core + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreSingleLanguage + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Education + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EducationN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Professional + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducation + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducationN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstation + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstationN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Core + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreSingleLanguage + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Education + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + EducationN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Professional + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducation + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducationN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstation + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstationN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Core + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreSingleLanguage + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Education + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EducationN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Professional + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducation + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducationN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstation + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstationN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Core + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreSingleLanguage + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Education + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EducationN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Professional + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducation + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducationN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstation + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstationN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Core + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreSingleLanguage + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Education + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EducationN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Professional + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducation + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducationN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstation + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstationN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Core + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreSingleLanguage + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Education + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EducationN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Professional + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducation + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducationN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstation + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstationN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Core + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreSingleLanguage + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Education + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + EducationN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Professional + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducation + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducationN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstation + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstationN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Core + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreSingleLanguage + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Education + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + EducationN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Professional + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducation + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducationN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstation + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstationN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Core + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreSingleLanguage + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Education + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EducationN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Professional + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducation + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducationN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstation + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstationN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Core + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreSingleLanguage + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Education + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EducationN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Professional + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducation + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducationN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstation + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstationN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Core + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreSingleLanguage + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Education + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EducationN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Professional + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducation + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducationN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstation + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstationN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Core + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreSingleLanguage + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Education + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + EducationN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Professional + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducation + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducationN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstation + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstationN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Core + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreSingleLanguage + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Education + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EducationN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Professional + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducation + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducationN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstation + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstationN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Core + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreSingleLanguage + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Education + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EducationN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Professional + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducation + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducationN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstation + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstationN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Core + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreSingleLanguage + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Education + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EducationN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Professional + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducation + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducationN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstation + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstationN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Core + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreSingleLanguage + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Education + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + EducationN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Professional + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducation + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducationN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstation + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstationN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Core + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreSingleLanguage + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Education + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + EducationN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Professional + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducation + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducationN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstation + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstationN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Core + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreSingleLanguage + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Education + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EducationN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Professional + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducation + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducationN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstation + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstationN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Core + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreSingleLanguage + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Education + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EducationN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Professional + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducation + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducationN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstation + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstationN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Core + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreSingleLanguage + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Education + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EducationN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Professional + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducation + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducationN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstation + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstationN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Core + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreSingleLanguage + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Education + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EducationN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Professional + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducation + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducationN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstation + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstationN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Core + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreSingleLanguage + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Education + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + EducationN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Professional + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducation + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducationN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstation + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstationN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Core + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreSingleLanguage + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Education + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EducationN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Professional + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducation + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducationN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstation + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstationN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Core + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreSingleLanguage + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Education + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EducationN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Professional + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducation + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducationN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstation + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstationN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Core + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreSingleLanguage + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Education + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EducationN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Enterprise + ARM64 + 5648431018 + c5bed3a674066e0a5c39c143d997d4d4e2164945a7a29f63ac63c97d33b667ea + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/88cb1111-efde-4f96-894a-924618d77b96/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EnterpriseN + ARM64 + 5648431018 + c5bed3a674066e0a5c39c143d997d4d4e2164945a7a29f63ac63c97d33b667ea + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/88cb1111-efde-4f96-894a-924618d77b96/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Enterprise + ARM64 + 5716512090 + 0cf3f90a165d45ca80a055813dd936aa998bbdf2b85c2742a4176903040c1e51 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cd86bc2-e497-4908-a49c-f49fd199d201/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EnterpriseN + ARM64 + 5716512090 + 0cf3f90a165d45ca80a055813dd936aa998bbdf2b85c2742a4176903040c1e51 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cd86bc2-e497-4908-a49c-f49fd199d201/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Enterprise + x64 + 5744084554 + 731b26d347bb28794e0f512cf6a5ce3efd48f2a5576c3c303636b3f4ed44deee + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2b129765-86f4-4223-ab18-e3d5b18114e9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EnterpriseN + x64 + 5744084554 + 731b26d347bb28794e0f512cf6a5ce3efd48f2a5576c3c303636b3f4ed44deee + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2b129765-86f4-4223-ab18-e3d5b18114e9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + it-it + Italian (Italy) + Enterprise + x64 + 5818679096 + b7cb61d2539facd26a8f4b33466feae577947b8e24ff2ab9667cf72248b478a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d49adfe8-cd9e-40d2-95bb-d5d076fdbdc4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + it-it + Italian (Italy) + EnterpriseN + x64 + 5818679096 + b7cb61d2539facd26a8f4b33466feae577947b8e24ff2ab9667cf72248b478a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d49adfe8-cd9e-40d2-95bb-d5d076fdbdc4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Enterprise + ARM64 + 5638921301 + 3c4c1dc79b76031362b8439f047e3e9a76b499dce3186c2388315bfd6bb77745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9979b1fa-fe4f-4c2d-a5af-3d31faf26bb0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EnterpriseN + ARM64 + 5638921301 + 3c4c1dc79b76031362b8439f047e3e9a76b499dce3186c2388315bfd6bb77745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9979b1fa-fe4f-4c2d-a5af-3d31faf26bb0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Enterprise + ARM64 + 5646843439 + 6ef02cca18a5ee912c68e68f3a8e4a049e5eaaf4be8b867a9cf9857f942731c3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/60675c3f-2f80-491f-b17d-e35c3771d024/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EnterpriseN + ARM64 + 5646843439 + 6ef02cca18a5ee912c68e68f3a8e4a049e5eaaf4be8b867a9cf9857f942731c3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/60675c3f-2f80-491f-b17d-e35c3771d024/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Enterprise + x64 + 5803551777 + 57837d809a8a37a68892b4def84ef399c4aa5035cdff9af5963ac4dd81f8f340 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/322993b5-567e-4725-8bd1-75e2d60e64b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EnterpriseN + x64 + 5803551777 + 57837d809a8a37a68892b4def84ef399c4aa5035cdff9af5963ac4dd81f8f340 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/322993b5-567e-4725-8bd1-75e2d60e64b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Enterprise + x64 + 5711330331 + 1c887d0cbf5613a395779a80468da79f52811b439d654456ac1790dcdc49ed06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/39f4cdbb-cf9c-4675-86be-7d273f9a907a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EnterpriseN + x64 + 5711330331 + 1c887d0cbf5613a395779a80468da79f52811b439d654456ac1790dcdc49ed06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/39f4cdbb-cf9c-4675-86be-7d273f9a907a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Enterprise + ARM64 + 5662850641 + c6a8a57890d5d33942ca67495c6e7158dad8f5e79c11266801a40e5ca941710a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8876cd94-4f6b-4df7-ae72-48156952714e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EnterpriseN + ARM64 + 5662850641 + c6a8a57890d5d33942ca67495c6e7158dad8f5e79c11266801a40e5ca941710a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8876cd94-4f6b-4df7-ae72-48156952714e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Enterprise + ARM64 + 5628053131 + ca9726329e0c187d18439dce3da644a0bdcc927caea78484e5ddafeba84317c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f0b41a9d-8f46-44f5-a159-d1467e2b29d2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EnterpriseN + ARM64 + 5628053131 + ca9726329e0c187d18439dce3da644a0bdcc927caea78484e5ddafeba84317c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f0b41a9d-8f46-44f5-a159-d1467e2b29d2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Enterprise + ARM64 + 5718290677 + 134e1bcd15cb21816bb2228798e35fd7df368311b5ee649e45d8e3717959b027 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/70c4b0f0-f097-40de-948b-3616762f1ab4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EnterpriseN + ARM64 + 5718290677 + 134e1bcd15cb21816bb2228798e35fd7df368311b5ee649e45d8e3717959b027 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/70c4b0f0-f097-40de-948b-3616762f1ab4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Enterprise + x64 + 5723933985 + 5edc640670d655d4af4449e2563397166117cc32ebfdcd160b5025184afec22a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8a14d9e0-53d6-487c-b307-1342b576a5fd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EnterpriseN + x64 + 5723933985 + 5edc640670d655d4af4449e2563397166117cc32ebfdcd160b5025184afec22a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8a14d9e0-53d6-487c-b307-1342b576a5fd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + en-us + English (United States) + Enterprise + ARM64 + 5743492912 + 0bbae155bbd3d2f117abd901162bd3450aeaea215a6cced5d570d7690f6e1a66 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5e95dc19-1399-43e7-91cd-2df07996e06f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + en-us + English (United States) + EnterpriseN + ARM64 + 5743492912 + 0bbae155bbd3d2f117abd901162bd3450aeaea215a6cced5d570d7690f6e1a66 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5e95dc19-1399-43e7-91cd-2df07996e06f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Enterprise + ARM64 + 5627872658 + b78e30de03eedd593c4279f1d0ac630d0173e496205dc5bb14362581a350f693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6ca37d82-2474-4899-a943-db89e5086bf4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EnterpriseN + ARM64 + 5627872658 + b78e30de03eedd593c4279f1d0ac630d0173e496205dc5bb14362581a350f693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6ca37d82-2474-4899-a943-db89e5086bf4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Enterprise + x64 + 5793486525 + a9ca5696284c229f0175e62ca4537867bec0e2a70a2201d7bd22027d6d5dbbda + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/337a7b23-f4e5-4e69-b6cf-679579fe9f20/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EnterpriseN + x64 + 5793486525 + a9ca5696284c229f0175e62ca4537867bec0e2a70a2201d7bd22027d6d5dbbda + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/337a7b23-f4e5-4e69-b6cf-679579fe9f20/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Enterprise + x64 + 5705864075 + 8e9cd4fdc13fa7eb1a208080821b9ac46f0835e05a63a4a1299c24f7ead0d066 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5e03a777-b98b-4a07-8ae2-db1fdf92836d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EnterpriseN + x64 + 5705864075 + 8e9cd4fdc13fa7eb1a208080821b9ac46f0835e05a63a4a1299c24f7ead0d066 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5e03a777-b98b-4a07-8ae2-db1fdf92836d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Enterprise + ARM64 + 5659072876 + 08fc213b6943ffdb58b91e2ce898f3ee02b35bbfe7a2573829a5a8674405c416 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dc6a2c53-f811-43d9-818a-7e5ad7824d25/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EnterpriseN + ARM64 + 5659072876 + 08fc213b6943ffdb58b91e2ce898f3ee02b35bbfe7a2573829a5a8674405c416 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dc6a2c53-f811-43d9-818a-7e5ad7824d25/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Enterprise + x64 + 5992137143 + af29025fa3a578bbb406b9acf34f7a1f7e2cf6a03ac1d8f1813afd9ad26f644b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/740f7ff2-8cbc-4621-81d9-a5bcacbda04d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + EnterpriseN + x64 + 5992137143 + af29025fa3a578bbb406b9acf34f7a1f7e2cf6a03ac1d8f1813afd9ad26f644b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/740f7ff2-8cbc-4621-81d9-a5bcacbda04d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Enterprise + ARM64 + 5647481492 + 37ae14e7ce01eb3c1783416ab27426b411d6c5ae32f225f985157c129a2eebc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ea68232c-78d8-4efc-8514-ab9ceb6ef550/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EnterpriseN + ARM64 + 5647481492 + 37ae14e7ce01eb3c1783416ab27426b411d6c5ae32f225f985157c129a2eebc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ea68232c-78d8-4efc-8514-ab9ceb6ef550/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Enterprise + ARM64 + 5638461189 + 10a72260dcf92c55f1f02dccec1ec5885f4e51acd1f283073a3e4058d1ae8210 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/184d0532-f763-4510-8af9-260110d06984/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EnterpriseN + ARM64 + 5638461189 + 10a72260dcf92c55f1f02dccec1ec5885f4e51acd1f283073a3e4058d1ae8210 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/184d0532-f763-4510-8af9-260110d06984/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + th-th + Thai (Thailand) + Enterprise + x64 + 5671298905 + 5ce98a1780fa2cd25b61857506d559a361c97aca1d297a0da8c6f57ab53ab4bc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b9bca5-2852-4ab3-bef7-c50a6734a15c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + th-th + Thai (Thailand) + EnterpriseN + x64 + 5671298905 + 5ce98a1780fa2cd25b61857506d559a361c97aca1d297a0da8c6f57ab53ab4bc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b9bca5-2852-4ab3-bef7-c50a6734a15c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Enterprise + ARM64 + 5625314146 + c238e15eb30b0530cd86954432f02a753b6c022b3b9457794609bf9bec0c46a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5ce9d77c-8609-4db7-b675-f251bed0551c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EnterpriseN + ARM64 + 5625314146 + c238e15eb30b0530cd86954432f02a753b6c022b3b9457794609bf9bec0c46a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5ce9d77c-8609-4db7-b675-f251bed0551c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Enterprise + ARM64 + 5627832352 + 2a4ab1d6e3bef41f085885fa2c0bfd28f82e15f46af6d0580d8feab426ad7dc8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17853cae-b70d-4175-b187-55f0e91c9a46/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EnterpriseN + ARM64 + 5627832352 + 2a4ab1d6e3bef41f085885fa2c0bfd28f82e15f46af6d0580d8feab426ad7dc8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17853cae-b70d-4175-b187-55f0e91c9a46/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + fr-fr + French (France) + Enterprise + ARM64 + 5751825948 + 8f038b34049715a94e6a975618f83e6fe5a0b864a5b819ca51c8c867741e6be1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b7494c9-98b2-4e48-9b78-e744f30e567e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + fr-fr + French (France) + EnterpriseN + ARM64 + 5751825948 + 8f038b34049715a94e6a975618f83e6fe5a0b864a5b819ca51c8c867741e6be1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b7494c9-98b2-4e48-9b78-e744f30e567e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Enterprise + ARM64 + 5700055501 + dc4229298a9bac7f02782ed40da228247da32d520d562e65b47e8be04b544a8f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/14551c07-c1f5-4535-a6f1-ca4a50b5a1c3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EnterpriseN + ARM64 + 5700055501 + dc4229298a9bac7f02782ed40da228247da32d520d562e65b47e8be04b544a8f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/14551c07-c1f5-4535-a6f1-ca4a50b5a1c3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Enterprise + ARM64 + 5719088516 + 8b5048911550c6f5fe08fbc6e664f3be8b64862df2390cbac7ceee233c4560bd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/551e7d05-c3a8-4ffe-8005-b5921e52cf02/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + he-il + Hebrew (Israel) + EnterpriseN + ARM64 + 5719088516 + 8b5048911550c6f5fe08fbc6e664f3be8b64862df2390cbac7ceee233c4560bd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/551e7d05-c3a8-4ffe-8005-b5921e52cf02/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + de-de + German (Germany) + Enterprise + ARM64 + 5784806856 + f88ac0117820e3d171e63f6110189cd488ff25d83c16a5583e7afd23856d495e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/091fcc44-5685-4a7c-9443-216c5578e3a6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + de-de + German (Germany) + EnterpriseN + ARM64 + 5784806856 + f88ac0117820e3d171e63f6110189cd488ff25d83c16a5583e7afd23856d495e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/091fcc44-5685-4a7c-9443-216c5578e3a6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Enterprise + ARM64 + 5664293113 + fa2e31f1a32f98a8e3195149036e8ee6170150e799805488f135566c84d05aa3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4e1e07fa-cac4-405a-b6cf-a0788ee6a0dc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EnterpriseN + ARM64 + 5664293113 + fa2e31f1a32f98a8e3195149036e8ee6170150e799805488f135566c84d05aa3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4e1e07fa-cac4-405a-b6cf-a0788ee6a0dc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Enterprise + x64 + 5662801474 + bb6e8aebd9d2cc30a2942460cacd1f9ef6140751de6f415b21b85f8823fb07a9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24718da3-2c81-4ed6-a80d-d93ebbba3156/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EnterpriseN + x64 + 5662801474 + bb6e8aebd9d2cc30a2942460cacd1f9ef6140751de6f415b21b85f8823fb07a9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24718da3-2c81-4ed6-a80d-d93ebbba3156/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Enterprise + x64 + 5740452927 + 65da401eb9ee75a714f8bb967175b10bc806835a6528adc1748a5eb83797e52b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8720ea8d-b248-4e0a-8dd1-4f6a13b7ca07/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + fr-ca + French (Canada) + EnterpriseN + x64 + 5740452927 + 65da401eb9ee75a714f8bb967175b10bc806835a6528adc1748a5eb83797e52b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8720ea8d-b248-4e0a-8dd1-4f6a13b7ca07/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Enterprise + x64 + 5730458492 + 9d9e769101e4ac5df5f7667d51782b399878174fb3e91e3792d87f9c134ab0ce + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/924e97c5-8f84-487d-b137-0b4a3f195c44/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EnterpriseN + x64 + 5730458492 + 9d9e769101e4ac5df5f7667d51782b399878174fb3e91e3792d87f9c134ab0ce + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/924e97c5-8f84-487d-b137-0b4a3f195c44/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Enterprise + x64 + 5771301084 + ebdf68dce2f863ea2a7b56a96e963125dcdc8f958512a44154fdd0de4347e343 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b4673f7a-d184-4ed8-9ca5-80a95c4664e2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EnterpriseN + x64 + 5771301084 + ebdf68dce2f863ea2a7b56a96e963125dcdc8f958512a44154fdd0de4347e343 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b4673f7a-d184-4ed8-9ca5-80a95c4664e2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Enterprise + x64 + 5804813267 + e59a800e8b912da5832bffc2a1edcba6a376fdec43deec4e6b37fbeef61158f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9ea24cb3-155b-413b-a531-51e90e0ce021/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + EnterpriseN + x64 + 5804813267 + e59a800e8b912da5832bffc2a1edcba6a376fdec43deec4e6b37fbeef61158f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9ea24cb3-155b-413b-a531-51e90e0ce021/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Enterprise + ARM64 + 5732597147 + 4997e2af98d2e024643ed3758d2623fbe983170389ca790b4a3a1db8e16613ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0188d1a9-49aa-47d0-a804-270e04d18530/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + EnterpriseN + ARM64 + 5732597147 + 4997e2af98d2e024643ed3758d2623fbe983170389ca790b4a3a1db8e16613ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0188d1a9-49aa-47d0-a804-270e04d18530/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Enterprise + ARM64 + 5654511119 + cf2069546079f0a21492b4c895e5ce01a412d0e3366643e561fcd6d94dbe6ca9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4e33b1ea-18fd-4604-997f-689480fe5226/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EnterpriseN + ARM64 + 5654511119 + cf2069546079f0a21492b4c895e5ce01a412d0e3366643e561fcd6d94dbe6ca9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4e33b1ea-18fd-4604-997f-689480fe5226/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Enterprise + ARM64 + 5951681369 + 07d7b3ea2ded618b89d77511dda2d0eb4d7e98aeda7b1d346d399f9875a5d58c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ff54ad3-eb73-45bc-a2fc-77609c6f62c3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + EnterpriseN + ARM64 + 5951681369 + 07d7b3ea2ded618b89d77511dda2d0eb4d7e98aeda7b1d346d399f9875a5d58c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ff54ad3-eb73-45bc-a2fc-77609c6f62c3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Enterprise + ARM64 + 5605678529 + 147c1087b5f7a855dde4be5ae1f3e4b91da8ebb40ce96ef3b2c03b72ff035bab + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/56661000-fcb5-4901-8190-1fa98fa01101/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EnterpriseN + ARM64 + 5605678529 + 147c1087b5f7a855dde4be5ae1f3e4b91da8ebb40ce96ef3b2c03b72ff035bab + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/56661000-fcb5-4901-8190-1fa98fa01101/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Enterprise + x64 + 5823756580 + 171a1ed6f72c43a960d2a95d7161596439d39006f74694caa95169685a4e5573 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06dd1ad7-217e-41c6-b239-f87494a2e68f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EnterpriseN + x64 + 5823756580 + 171a1ed6f72c43a960d2a95d7161596439d39006f74694caa95169685a4e5573 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06dd1ad7-217e-41c6-b239-f87494a2e68f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + th-th + Thai (Thailand) + Enterprise + ARM64 + 5642146387 + 587cdda38add717838ed0c07ec597d7fd5dd6fd20e66b1d3820d4b390059be63 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/63988867-f898-4039-ab37-cb91fb2d6cba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + th-th + Thai (Thailand) + EnterpriseN + ARM64 + 5642146387 + 587cdda38add717838ed0c07ec597d7fd5dd6fd20e66b1d3820d4b390059be63 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/63988867-f898-4039-ab37-cb91fb2d6cba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Enterprise + ARM64 + 5708541428 + f4178ef3c96ba10a72dcff5ebcb6463a71e6b80a71b94fb51bbd110ba4966c6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6bc409a0-2e62-4d1f-8e39-3e03d7637625/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EnterpriseN + ARM64 + 5708541428 + f4178ef3c96ba10a72dcff5ebcb6463a71e6b80a71b94fb51bbd110ba4966c6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6bc409a0-2e62-4d1f-8e39-3e03d7637625/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Enterprise + ARM64 + 5635737150 + 058b4d4c1444d7b78f73b0d56c23b106a6af4737641765441239d0f61f13a952 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee12b7cb-0bb7-4890-9e80-8fe3d152de3a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EnterpriseN + ARM64 + 5635737150 + 058b4d4c1444d7b78f73b0d56c23b106a6af4737641765441239d0f61f13a952 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee12b7cb-0bb7-4890-9e80-8fe3d152de3a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Enterprise + ARM64 + 5896321021 + 533195410386056112dee85b8e75e794745b83a64460580aaf2b6d3f000dfbf2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b5dfa99b-7ad1-487e-84a6-4318a3a91a8d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EnterpriseN + ARM64 + 5896321021 + 533195410386056112dee85b8e75e794745b83a64460580aaf2b6d3f000dfbf2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b5dfa99b-7ad1-487e-84a6-4318a3a91a8d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Enterprise + ARM64 + 5631672974 + d692ecc4a3692d904f3771d6cea45de7744a1c0bfa3ae820ff6c2a60b6005c7e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f2f25421-624c-45ec-87d2-1e4494d6200e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EnterpriseN + ARM64 + 5631672974 + d692ecc4a3692d904f3771d6cea45de7744a1c0bfa3ae820ff6c2a60b6005c7e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f2f25421-624c-45ec-87d2-1e4494d6200e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Enterprise + ARM64 + 5600473079 + 7e6184a72a0d32f4f5802ce68dbdd90b8c919ee5153bf4554ba50334fc40d528 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e8bf487b-e0fc-45a0-b0b8-32f1d2325006/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EnterpriseN + ARM64 + 5600473079 + 7e6184a72a0d32f4f5802ce68dbdd90b8c919ee5153bf4554ba50334fc40d528 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e8bf487b-e0fc-45a0-b0b8-32f1d2325006/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Enterprise + x64 + 5764995349 + 6a050fccfd9844ac02d7cb27bcc04c6ce9a1876b293f916f000771b583b43041 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e1442165-a24a-4d87-9c6f-00fa8ee79764/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EnterpriseN + x64 + 5764995349 + 6a050fccfd9844ac02d7cb27bcc04c6ce9a1876b293f916f000771b583b43041 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e1442165-a24a-4d87-9c6f-00fa8ee79764/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + fr-fr + French (France) + Enterprise + x64 + 5859775027 + 5dca7237dd07c203edb1d07091ce66d8751b9ce6bfc6566fbe9fb974650e8860 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe3017f2-64f1-4e99-a9fb-e60410c902a7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + fr-fr + French (France) + EnterpriseN + x64 + 5859775027 + 5dca7237dd07c203edb1d07091ce66d8751b9ce6bfc6566fbe9fb974650e8860 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe3017f2-64f1-4e99-a9fb-e60410c902a7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Enterprise + x64 + 5794135723 + f672732964a31ce8521cd58d71eaf0d1e71e69bda7416c8cbd4b6989147b61f4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4c69f4a1-d110-4e99-9ec6-86a228b7dc3c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EnterpriseN + x64 + 5794135723 + f672732964a31ce8521cd58d71eaf0d1e71e69bda7416c8cbd4b6989147b61f4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4c69f4a1-d110-4e99-9ec6-86a228b7dc3c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Enterprise + ARM64 + 5662269110 + df4ae8402a594aebcadb1a257b348d171bd516b1e295c0924cf9149b4a6c1d67 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ec10b130-5fc0-4fb0-9cfd-b35a02765b53/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EnterpriseN + ARM64 + 5662269110 + df4ae8402a594aebcadb1a257b348d171bd516b1e295c0924cf9149b4a6c1d67 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ec10b130-5fc0-4fb0-9cfd-b35a02765b53/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Enterprise + x64 + 5725140800 + f728f8c881468a26d5dd9817f94f55632173005e6a0642ea6fc3495bf955a8f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1248a122-4f30-47e3-942f-36ddff818685/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EnterpriseN + x64 + 5725140800 + f728f8c881468a26d5dd9817f94f55632173005e6a0642ea6fc3495bf955a8f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1248a122-4f30-47e3-942f-36ddff818685/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Enterprise + ARM64 + 5672937425 + c2011dd9b6f3bde63fefe88a2ead0204fc3d8c743f8408cf604b617eda393a09 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2a5ce015-e0fe-452d-88af-2c3b1dc6617e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + el-gr + Greek (Greece) + EnterpriseN + ARM64 + 5672937425 + c2011dd9b6f3bde63fefe88a2ead0204fc3d8c743f8408cf604b617eda393a09 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2a5ce015-e0fe-452d-88af-2c3b1dc6617e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Enterprise + ARM64 + 5601605735 + 4f6889691854ee2e5cfdbb9b394c2c4d2e7832ec8c0f682196bbbee232446db6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ef443f94-4ac6-45ae-8625-6ac1de57eb99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EnterpriseN + ARM64 + 5601605735 + 4f6889691854ee2e5cfdbb9b394c2c4d2e7832ec8c0f682196bbbee232446db6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ef443f94-4ac6-45ae-8625-6ac1de57eb99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + de-de + German (Germany) + Enterprise + x64 + 5906732826 + 68a448dbf9370a216840c6800b16307b66406f71c0c16f63dec3215f2222b66d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e36464d4-675f-46c1-9c8e-1bdd88e90705/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + de-de + German (Germany) + EnterpriseN + x64 + 5906732826 + 68a448dbf9370a216840c6800b16307b66406f71c0c16f63dec3215f2222b66d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e36464d4-675f-46c1-9c8e-1bdd88e90705/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Enterprise + x64 + 5770875463 + a0560320b652aa1b37b6dd3fd6284f1da8a7e94d7f3e961c0a4b10999441ea0a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5943f2d2-93d1-4def-bff1-f50ebcc714a0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EnterpriseN + x64 + 5770875463 + a0560320b652aa1b37b6dd3fd6284f1da8a7e94d7f3e961c0a4b10999441ea0a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5943f2d2-93d1-4def-bff1-f50ebcc714a0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + es-es + Spanish (Spain) + Enterprise + x64 + 5843388857 + 37c3a0d43b28960c8f23495665d3e842b94e2808eb6943dd98d78e4ca7a5cba4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/619d215a-cd99-45ab-8ae5-4a8f1e69e8c0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + es-es + Spanish (Spain) + EnterpriseN + x64 + 5843388857 + 37c3a0d43b28960c8f23495665d3e842b94e2808eb6943dd98d78e4ca7a5cba4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/619d215a-cd99-45ab-8ae5-4a8f1e69e8c0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + en-us + English (United States) + Enterprise + x64 + 5871858284 + 727d254e24963b3bf1ccae3017066e8a6556a8e5a9558be1551e1dcc858f1d33 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/613c47fb-d72e-44d8-9c75-cdb242798734/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + en-us + English (United States) + EnterpriseN + x64 + 5871858284 + 727d254e24963b3bf1ccae3017066e8a6556a8e5a9558be1551e1dcc858f1d33 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/613c47fb-d72e-44d8-9c75-cdb242798734/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Enterprise + x64 + 5927562331 + 35f5dfa0762ff9a91f3f3b4428ef1da14fb24e60b8e2f599c5b180d1a2ccc46b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fc9c44af-8bf7-4a97-8b54-a52cba0d357f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EnterpriseN + x64 + 5927562331 + 35f5dfa0762ff9a91f3f3b4428ef1da14fb24e60b8e2f599c5b180d1a2ccc46b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fc9c44af-8bf7-4a97-8b54-a52cba0d357f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + it-it + Italian (Italy) + Enterprise + ARM64 + 5700260018 + 042c9290ef6eb68fd07f43d7b7c1f0771f7038ba06e5ef8ba8cb9627c5a39bc4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f6b341c8-b0db-4b02-b912-66787d497e37/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + it-it + Italian (Italy) + EnterpriseN + ARM64 + 5700260018 + 042c9290ef6eb68fd07f43d7b7c1f0771f7038ba06e5ef8ba8cb9627c5a39bc4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f6b341c8-b0db-4b02-b912-66787d497e37/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Enterprise + x64 + 5935055933 + 228d8b3be543a395ec364fbb8a3ba802adddc792db06a3024a0e687f4bb1d0d8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d30b022b-1f6b-4dd7-a922-a62effb0d30e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EnterpriseN + x64 + 5935055933 + 228d8b3be543a395ec364fbb8a3ba802adddc792db06a3024a0e687f4bb1d0d8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d30b022b-1f6b-4dd7-a922-a62effb0d30e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Enterprise + x64 + 5789297485 + ab918ddd1d7c71e3e290779e4bfebfd56299d5264ed6dbe38623b87626ba84de + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37cf8780-6aa1-417b-b978-75eac3c08235/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + el-gr + Greek (Greece) + EnterpriseN + x64 + 5789297485 + ab918ddd1d7c71e3e290779e4bfebfd56299d5264ed6dbe38623b87626ba84de + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37cf8780-6aa1-417b-b978-75eac3c08235/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Enterprise + x64 + 5804051728 + 6a0902a897e17a1f0c64e3ac21752a7fe24c7c55f4c8d33e194495a1d059b025 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8cbcc107-f574-4ac2-a498-c33436ddcfd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EnterpriseN + x64 + 5804051728 + 6a0902a897e17a1f0c64e3ac21752a7fe24c7c55f4c8d33e194495a1d059b025 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8cbcc107-f574-4ac2-a498-c33436ddcfd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Enterprise + x64 + 5756075033 + d6e7bc323ff345cd512b2358f793a974dd60955010e368c24e2f79b69ab23df3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f6031f3e-fdc0-4b73-ab19-77892e0ac797/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EnterpriseN + x64 + 5756075033 + d6e7bc323ff345cd512b2358f793a974dd60955010e368c24e2f79b69ab23df3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f6031f3e-fdc0-4b73-ab19-77892e0ac797/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Enterprise + x64 + 5688673760 + cc1fc2fc63068245316864ee2b8b0033c9cf3f6147c6543b2bcf132ea1c5522b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0248e608-3aa0-45e6-a62a-47539d7aa907/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EnterpriseN + x64 + 5688673760 + cc1fc2fc63068245316864ee2b8b0033c9cf3f6147c6543b2bcf132ea1c5522b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0248e608-3aa0-45e6-a62a-47539d7aa907/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Enterprise + ARM64 + 5667633973 + 9aac8b89232a1d438cd6ee32c1fbb7b507658714e6832fd9562fb1ece38838be + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3c658bd8-a1bb-4c05-95fe-5926fda6d732/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + EnterpriseN + ARM64 + 5667633973 + 9aac8b89232a1d438cd6ee32c1fbb7b507658714e6832fd9562fb1ece38838be + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3c658bd8-a1bb-4c05-95fe-5926fda6d732/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Enterprise + x64 + 5746391786 + 99138cadfdaa6bdd938cc0a670c4af25df87cc3f6e551f78fc29a5a9df701270 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbf99f7a-03d5-4e7e-be99-5af827b034d3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + he-il + Hebrew (Israel) + EnterpriseN + x64 + 5746391786 + 99138cadfdaa6bdd938cc0a670c4af25df87cc3f6e551f78fc29a5a9df701270 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbf99f7a-03d5-4e7e-be99-5af827b034d3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + es-es + Spanish (Spain) + Enterprise + ARM64 + 5742405657 + e9a3581380cf3071de29dddd8bf272ebd997935fa7f90480eb46c15e09eb8e63 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db5b2d70-7bfa-4ad2-b0df-917eb132390c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + es-es + Spanish (Spain) + EnterpriseN + ARM64 + 5742405657 + e9a3581380cf3071de29dddd8bf272ebd997935fa7f90480eb46c15e09eb8e63 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db5b2d70-7bfa-4ad2-b0df-917eb132390c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Enterprise + x64 + 5801265103 + e467f29d9a84221b8247f19f93103297f2b6685b15ad7e95fa00c368be151b4c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f59d56b4-2087-4670-a692-a1e0c26aea2c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EnterpriseN + x64 + 5801265103 + e467f29d9a84221b8247f19f93103297f2b6685b15ad7e95fa00c368be151b4c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f59d56b4-2087-4670-a692-a1e0c26aea2c/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Enterprise + x64 + 5800406547 + 40949d93c6f9f9e0eff73076814832b95a568f1f1c8c47dfa1d03aeaf7383c53 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2ae2296b-fdcd-4cfa-a49c-d551bfc808f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EnterpriseN + x64 + 5800406547 + 40949d93c6f9f9e0eff73076814832b95a568f1f1c8c47dfa1d03aeaf7383c53 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2ae2296b-fdcd-4cfa-a49c-d551bfc808f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Enterprise + x64 + 5841455917 + 5146e13eb00c2d66817133f084b1672364b7ce5b540116cb4d0bbabc142d810d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/037fc789-a1f9-4072-9182-b7888e9edaa3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + EnterpriseN + x64 + 5841455917 + 5146e13eb00c2d66817133f084b1672364b7ce5b540116cb4d0bbabc142d810d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/037fc789-a1f9-4072-9182-b7888e9edaa3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Enterprise + x64 + 5740667189 + 78c87996db328504f71bff248f031722cb71e2449c26b418433621d28ad9cac7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8c30458d-514f-43e0-85dc-ddf65101f830/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EnterpriseN + x64 + 5740667189 + 78c87996db328504f71bff248f031722cb71e2449c26b418433621d28ad9cac7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8c30458d-514f-43e0-85dc-ddf65101f830/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Enterprise + x64 + 5784548547 + 1eaeb051bb8320827dfb7da696301ea3e1814a7a2795546eb2a4ff6a738948d5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e10ce39b-b083-47b5-bbcf-8ba6983fd1ce/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EnterpriseN + x64 + 5784548547 + 1eaeb051bb8320827dfb7da696301ea3e1814a7a2795546eb2a4ff6a738948d5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e10ce39b-b083-47b5-bbcf-8ba6983fd1ce/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Enterprise + ARM64 + 5710210780 + 1c242335dbb153eea3c812ad036f0f02ea9cbe4e2e7098ba7488f85c454e6912 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d0a9fbb-78fe-4b2f-b842-832ac6e0d287/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EnterpriseN + ARM64 + 5710210780 + 1c242335dbb153eea3c812ad036f0f02ea9cbe4e2e7098ba7488f85c454e6912 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d0a9fbb-78fe-4b2f-b842-832ac6e0d287/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Enterprise + ARM64 + 5708478905 + 2d22b54992755f1af3153a7cbb23b2a5fad81ebbccc975a2a8bce317d4ab4367 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8482cba3-a3cc-43db-93d5-d266874627c3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + fr-ca + French (Canada) + EnterpriseN + ARM64 + 5708478905 + 2d22b54992755f1af3153a7cbb23b2a5fad81ebbccc975a2a8bce317d4ab4367 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8482cba3-a3cc-43db-93d5-d266874627c3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Enterprise + x64 + 5786525873 + 1415522c61f384e98c644e8771005770d337abc7b48fd24ef61631ba1d651b11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27e22865-6acc-4d3f-ac60-4df36919dbe6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EnterpriseN + x64 + 5786525873 + 1415522c61f384e98c644e8771005770d337abc7b48fd24ef61631ba1d651b11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27e22865-6acc-4d3f-ac60-4df36919dbe6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Enterprise + ARM64 + 5913442476 + dbdc39b4c45985d987a0ee2fb2b57fbada65c8e9e28847f378f1c5d1240fc20b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b1bd7784-e486-4c53-8371-3ca45576d197/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EnterpriseN + ARM64 + 5913442476 + dbdc39b4c45985d987a0ee2fb2b57fbada65c8e9e28847f378f1c5d1240fc20b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b1bd7784-e486-4c53-8371-3ca45576d197/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Enterprise + x64 + 5747748964 + 60154c6be342b3f0efd50851438c32ac0607161d237af9792ec1305d9764ec3c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/89d7232c-e5a4-4966-9cb6-e0906561bd3f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EnterpriseN + x64 + 5747748964 + 60154c6be342b3f0efd50851438c32ac0607161d237af9792ec1305d9764ec3c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/89d7232c-e5a4-4966-9cb6-e0906561bd3f/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Enterprise + x64 + 5648046560 + 0036ae7385d6ab3af1712a5440d73bc534286daf1a981d1f16f9b845d53c448a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/01d5ec8c-25af-4b82-aa56-88d511a84cd1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EnterpriseN + x64 + 5648046560 + 0036ae7385d6ab3af1712a5440d73bc534286daf1a981d1f16f9b845d53c448a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/01d5ec8c-25af-4b82-aa56-88d511a84cd1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedCountrySpecific + x64 + 5771287445 + f4202f349eb4d9f2bcd1e26fcf81422a9b918047dc1097a83a596b51effb1166 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c10a5c0e-7d85-4249-9f68-3ed9c068de86/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %BASE_CHINA% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Ultimate + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudent + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + UltimateN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudentN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Starter + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasic + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremium + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnected + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + StarterN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasicN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremiumN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedN + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedSingleLanguage + ARM64 + 5661502536 + 3da6d21e615edf1ffd63f4ba028d9122c8420f5c029ed7e52d4296c32fe14d6d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/505403c1-ed5e-4c96-ba7e-235b10a62854/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Ultimate + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudent + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + UltimateN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudentN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Starter + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasic + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremium + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnected + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + StarterN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasicN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremiumN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedN + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedSingleLanguage + x64 + 5827369706 + ed4a3021476c2ebe2e7772b35cbc1fc616f487ff932e22ab0eeb3aea3b923052 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17c03661-48f6-4521-9646-43c97d6c76e4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Ultimate + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudent + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + UltimateN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudentN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Starter + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasic + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremium + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnected + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + StarterN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasicN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremiumN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedN + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedSingleLanguage + x64 + 5860384846 + 6879f1df52ac5523431a56d5489225f800b81049a04327bc6c39835d78a35179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db557f8d-41bb-4e91-83aa-2147b5e4d682/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Ultimate + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudent + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + UltimateN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudentN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Starter + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasic + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremium + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnected + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + StarterN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasicN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremiumN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedN + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedSingleLanguage + x64 + 5809418327 + 5decb001797a55485b22a6c466317f9f19f68e4636c2609b9707a6601bc82d80 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/460cef53-f461-4077-ba45-8ce2bb82bc35/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Ultimate + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudent + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + UltimateN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudentN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Starter + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasic + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremium + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnected + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + StarterN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasicN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremiumN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedN + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedSingleLanguage + ARM64 + 5675678248 + b8a2eb54b9da29e7c502362bc4fce2e03ed7022051ba244dd3d0b76f4d04bbb6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b19f5aa6-0873-4b4b-bbf5-1e0ba19798d0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Ultimate + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudent + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + UltimateN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudentN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Starter + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasic + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremium + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnected + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + StarterN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasicN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremiumN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedN + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedSingleLanguage + ARM64 + 5721552305 + eb2bf57c28fa805da16ccce0b22c6a94f2014eddc060baf3bee782ca36cc3545 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5ac5fe-da09-4f82-8d65-37f2a9bf21d1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Ultimate + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudent + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + UltimateN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudentN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Starter + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasic + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremium + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnected + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + StarterN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasicN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremiumN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedN + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedSingleLanguage + x64 + 5722083294 + 9bb6a48ac7c36f6baa6abf40dfbec35e80c88aa8e040d7178c5063b2e72f2003 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb63725f-6266-437f-8eed-353e6322e65d/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Ultimate + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudent + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + UltimateN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudentN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Starter + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasic + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremium + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnected + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + StarterN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasicN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremiumN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedN + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedSingleLanguage + ARM64 + 5677607522 + 7e48299c260681ce3430c8edd49230e115a562011d3018d5abb80252d4c455f0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e916582f-1dd4-4d54-bf74-557be1d90f3b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Ultimate + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudent + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + UltimateN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudentN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Starter + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasic + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremium + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnected + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + StarterN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasicN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremiumN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedN + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedSingleLanguage + ARM64 + 5742158464 + fde28b143258efa4d051a3c83f4ef40e4010f089b1a1f3c79278b2b89c746678 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/07a8822b-0383-4732-a09b-9c0057103e2b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Ultimate + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudent + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + UltimateN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudentN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Starter + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasic + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremium + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnected + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + StarterN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasicN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremiumN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedN + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedSingleLanguage + x64 + 5770641776 + a7f61f0f38fbfc88c269f8ba09de1224840350891b23eacb2f37e3c99c816f10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2cc9d3b3-d845-4648-beb4-6bfb3ab061cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Ultimate + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudent + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + UltimateN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudentN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Starter + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasic + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremium + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnected + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + StarterN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasicN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremiumN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedN + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedSingleLanguage + x64 + 5816247373 + 552553fc111c6d2a219030248e92101c55fb2a5d029cafb4bfae7aad14acab1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5258df6f-38ab-466d-82d7-9edea9a48be4/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Ultimate + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudent + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + UltimateN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudentN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Starter + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasic + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremium + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnected + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + StarterN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasicN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremiumN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedN + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedSingleLanguage + ARM64 + 5670084453 + 64ba34cd64ae76dd7dbf3a438df70c3935fedae2e255e1198d8b7369c48ec563 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/386f926e-bb9d-45aa-af6a-9013a18710e7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Ultimate + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudent + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + UltimateN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudentN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Starter + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasic + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremium + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnected + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + StarterN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasicN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremiumN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedN + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedSingleLanguage + x64 + 5793075491 + b574bb7d7540027e4fb09363a512b754eabda3a89933704bf3ebdc81021a3bc6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9e862ad0-dd81-4cc1-ace0-45f6250ffe56/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Ultimate + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudent + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + UltimateN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudentN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Starter + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasic + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremium + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnected + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + StarterN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasicN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremiumN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedN + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedSingleLanguage + ARM64 + 5815158488 + 0ee32d9575c36d24630feeb3f4785fe133927c06b3234a70e42364a46eb51f6a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8ab0763d-2fd2-4fd2-ac3f-4b0bbff15aa9/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Ultimate + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudent + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + UltimateN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudentN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Starter + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasic + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremium + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnected + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + StarterN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasicN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremiumN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedN + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedSingleLanguage + ARM64 + 5818884338 + c0a4fcd809b085690dd1446fbb4b90732f2e6ec7e00aa8d352707a320a2500a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f348e959-7a58-410f-afc5-cb6490e7f710/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Ultimate + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudent + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + UltimateN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudentN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Starter + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasic + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremium + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnected + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + StarterN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasicN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremiumN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedN + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedSingleLanguage + ARM64 + 5909100120 + 0294b44e42b1f0f423e8ff43084e3b78fc330cbd6f3ad099443b7620a286ff5c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b6c0d3d-68b3-4b95-a7e2-5c19e1d6c087/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Ultimate + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudent + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + UltimateN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudentN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Starter + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasic + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremium + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnected + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + StarterN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasicN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremiumN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedN + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedSingleLanguage + ARM64 + 5675069377 + 014797a51580e748bbed9ab3ca99f5ec96bc727cabfed3971217af78289efc1e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/784f1c1c-6031-45ba-8a98-ba0264d39e16/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Ultimate + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudent + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + UltimateN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudentN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Starter + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasic + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremium + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnected + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + StarterN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasicN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremiumN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedN + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedSingleLanguage + ARM64 + 5658055505 + 7df2a523f06589d420395f31560d9348797384ebb73267c0acb4125fa20c8071 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bf84d259-f82a-41c4-8d1a-c6910080cd99/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Ultimate + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudent + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + UltimateN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudentN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Starter + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasic + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremium + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnected + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + StarterN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasicN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremiumN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedN + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedSingleLanguage + ARM64 + 5654434980 + fc4fa0f3d952e4ff5346478b3cfe1e4cd919ebb5b84faa51550229500de2f7f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7439793d-6cc1-4bf8-868e-976aafe8a9b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Ultimate + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudent + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + UltimateN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudentN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Starter + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasic + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremium + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnected + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + StarterN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasicN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremiumN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedN + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedSingleLanguage + x64 + 5783490325 + da087cddc576c8e2a73ed22c165f84b48bea9ed26f6a3d7296eeff26b707491d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/09578319-7a7e-40e1-9716-2c0230e42b1a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Ultimate + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudent + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + UltimateN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudentN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Starter + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasic + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremium + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnected + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + StarterN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasicN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremiumN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedN + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedSingleLanguage + x64 + 5702006405 + 4c450a88916ea08c260fbf0834ee75e644aa8189ff5bd391112f15c85cfe3c85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/223e72b4-831d-4208-a3a4-94f9609200b7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Ultimate + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudent + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + UltimateN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudentN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Starter + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasic + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremium + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnected + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + StarterN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasicN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremiumN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedN + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedSingleLanguage + x64 + 5842350815 + f3022b1b2649f0a1abb6e0097817a71b0264bde88b67bdad3d7643e3437d10d7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45c99884-0eb9-4146-9308-06b04e3a5c57/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Ultimate + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudent + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + UltimateN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudentN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Starter + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasic + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremium + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnected + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + StarterN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasicN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremiumN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedN + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedSingleLanguage + x64 + 5952695881 + c6f9b3c9f31a169c377d23b11d83a0a095fe716c18793ff3e8c898f0a42b6351 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5970753f-3e4a-4b8e-959d-fde1229c47f2/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Ultimate + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudent + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + UltimateN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudentN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Starter + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasic + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremium + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnected + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + StarterN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasicN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremiumN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedN + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedSingleLanguage + x64 + 5842670086 + cf16b1e5520409b588a4b61ce12e022f9c995ceba0ed4afc6ed75ac601f7c36c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a6755b2c-6174-4a50-ad60-c976044d5a30/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Ultimate + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudent + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + UltimateN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudentN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Starter + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasic + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremium + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnected + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + StarterN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasicN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremiumN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedN + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedSingleLanguage + ARM64 + 5677874846 + 46478a30fadb8c9e4d205dc1ebe8b6d01ac82405d6482c7569c998f0e3e4e1d9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e852d815-c90e-4543-b390-cba1a67e3faf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Ultimate + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudent + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + UltimateN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudentN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Starter + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasic + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremium + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnected + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + StarterN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasicN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremiumN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedN + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedSingleLanguage + ARM64 + 5681439750 + bb4d8b1ed12ba6ec960263f980f7707b752fd5b226d2b26dee394b279eee36b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8e1193d-3a5f-460b-a4b5-a58c2cd3ae9e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Ultimate + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudent + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + UltimateN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudentN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Starter + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasic + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomePremium + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnected + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + StarterN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasicN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomePremiumN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedN + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedSingleLanguage + ARM64 + 5830208584 + 9b77b8e8bc3db3d0b25cef7393f5ba68ddb48fbbd326bd117fa2d94bbfe6953d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b61d12f4-0aff-4274-8ef9-ddf72e7a6f63/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Ultimate + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudent + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + UltimateN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudentN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Starter + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasic + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremium + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnected + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + StarterN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasicN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremiumN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedN + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedSingleLanguage + x64 + 5805619486 + 832e82f9837beecf9dba3397210b24d53b26226360ac00899d17dc1f9b4f14a7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/57697b62-0a8a-4180-a4ec-b3246e15ece0/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Ultimate + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudent + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + UltimateN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudentN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Starter + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasic + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomePremium + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnected + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + StarterN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasicN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomePremiumN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedN + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedSingleLanguage + x64 + 5967773445 + 7847fefd03914cace111220f4742afdcd9a7d0ee6187a7502a34f053ae694a48 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/37200ec1-0026-42bb-8a63-e70fe3f1289a/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Ultimate + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudent + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + UltimateN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudentN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Starter + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasic + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremium + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnected + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + StarterN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasicN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremiumN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedN + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedSingleLanguage + x64 + 5966653137 + bfdcdebcd3964db9384ab9a96633dfca48973bafcc0ad9eeadca44dc854ec09b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2e14f782-20c2-4114-8bb1-11337cd391de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Ultimate + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudent + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + UltimateN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudentN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Starter + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomeBasic + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomePremium + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreConnected + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + StarterN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomeBasicN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomePremiumN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreConnectedN + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreConnectedSingleLanguage + x64 + 5961926449 + fa966d9b4fe4d2af80d40baf190034796ebf616d810375ed10182d4f828779e8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/26af851d-08e5-4277-830c-52eadc9620aa/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Ultimate + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudent + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + UltimateN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudentN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Starter + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasic + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremium + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnected + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + StarterN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasicN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremiumN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedN + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedSingleLanguage + ARM64 + 5682460756 + 6d28737777bc73d8ffca2e355f6df2ade9fd704c48b51e4dc80af88ca3730afa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d190ac60-c3ac-4bed-a317-3fbd02185566/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Ultimate + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudent + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + UltimateN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudentN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Starter + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasic + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremium + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnected + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + StarterN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasicN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremiumN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedN + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedSingleLanguage + x64 + 5725073123 + 2ddcf60d2611b30ec0a0ad51149354149874110f43b09a8b80883fca961d76d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84e8e9fd-1b81-497d-9069-692025b7c698/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Ultimate + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudent + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + UltimateN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudentN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Starter + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasic + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomePremium + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnected + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + StarterN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasicN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomePremiumN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedN + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedSingleLanguage + x64 + 5832749367 + 04e509770e76222ada6a93e841ddd3abe57133cf41c4d2d43738d3204a322ea4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/32be55a1-f33a-4225-a6d2-617eb2944dac/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Ultimate + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudent + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + UltimateN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudentN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Starter + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasic + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremium + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnected + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + StarterN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasicN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremiumN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedN + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedSingleLanguage + x64 + 5802010751 + 44edd9d3ec586e10c90ce6769bbc60d41a67cb0d247d9043f58c6bef65781a11 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5adf0281-a91e-431c-8381-da3e118b3477/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Ultimate + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudent + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + UltimateN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudentN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Starter + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasic + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremium + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnected + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + StarterN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasicN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremiumN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedN + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedSingleLanguage + ARM64 + 5777534964 + ed21270091a8503bceaed3a8eb317dca033860337461c0a001b3ebde0cc98015 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6eb9fafa-38eb-4099-a07d-2845fd50e17e/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Ultimate + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudent + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + UltimateN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudentN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Starter + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasic + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremium + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnected + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + StarterN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasicN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremiumN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedN + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedSingleLanguage + x64 + 5821061672 + 79381fc8e36e71ca1d5bca3094b7d75b4719f04a4be33d800ae3a9d1eae8ea65 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/30784269-0bbc-4399-8757-e26f93e0cc89/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Ultimate + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudent + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + UltimateN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudentN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Starter + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasic + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremium + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnected + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + StarterN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasicN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremiumN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedN + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedSingleLanguage + ARM64 + 5688751373 + f1d3be5fa6266dab0b8a2ae30bd657cbe4bd916c9687eb5430aec75d60deafa1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dfbec14-b6ef-430c-8afb-6ea366bac74b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Ultimate + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudent + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + UltimateN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudentN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Starter + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasic + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremium + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnected + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + StarterN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasicN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremiumN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedN + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedSingleLanguage + ARM64 + 5760442694 + e126b351fef6dfb25e4e2837201a6b25f68544d0980ec936751b4ccf16d68468 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/36f2d291-a8bf-4bae-9aa6-121d89a55f31/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Ultimate + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudent + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + UltimateN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudentN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Starter + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasic + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremium + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnected + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + StarterN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasicN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremiumN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedN + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedSingleLanguage + ARM64 + 5760974260 + 3e6013c8c712a7471810bc2373c865dd07e519ad339508b2eeda8fbccce7e993 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4fd6b44f-4879-4c08-b542-ee563256bc54/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Ultimate + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudent + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + UltimateN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudentN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Starter + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasic + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremium + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnected + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + StarterN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasicN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremiumN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedN + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedSingleLanguage + x64 + 5786742902 + 710ece876b28dcbe5ccbfdfe75e74ff0b4b7569ab9b6044935df662891eb50a1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/200ee1d0-6376-4023-a0a5-1949d3a70c79/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Ultimate + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudent + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + UltimateN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudentN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Starter + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasic + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremium + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnected + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + StarterN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasicN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremiumN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedN + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedSingleLanguage + ARM64 + 5909185352 + b0b1f73d30ada3663c8633d75d8eb5982918c14f6e33bdc9615c5d57032cb8e6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/996b1e03-2345-4077-9894-81f84e063443/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Ultimate + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudent + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + UltimateN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudentN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Starter + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasic + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremium + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnected + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + StarterN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasicN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremiumN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedN + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedSingleLanguage + ARM64 + 5767435376 + d2bda8de36fa82b37dccc4209753ecedc8114f4a97fb44eada1dc08573edba47 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd01bcee-8a17-42fd-af07-c8ee820ffcb3/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Ultimate + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudent + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + UltimateN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudentN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Starter + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasic + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremium + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnected + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + StarterN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasicN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremiumN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedN + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedSingleLanguage + x64 + 5777954401 + 4f59178ebd2bbf3d1d9ec362d5c5e033133121e19f5fe8141841ff18c68fa125 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/17f76753-008e-483e-80fb-6f1ec6ed47b5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Ultimate + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudent + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + UltimateN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudentN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Starter + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasic + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremium + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnected + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + StarterN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasicN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremiumN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedN + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedSingleLanguage + x64 + 5794771773 + 0519c602c54fe9b4583813160b1b802c0db91a8c30ec051ea19704b6fce0fea9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/211b9d63-88d9-46da-88f4-17a557ad2491/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Ultimate + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudent + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + UltimateN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudentN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Starter + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasic + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremium + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnected + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + StarterN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasicN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremiumN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedN + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedSingleLanguage + x64 + 5822395127 + f656200ee9baa371d4391265b808d467f622b4d748f36dc479f69039a5a8207b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/55b4ccf9-fde9-4571-a8f5-0d7b8aa7e901/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Ultimate + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudent + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + UltimateN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudentN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Starter + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasic + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremium + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnected + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + StarterN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasicN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremiumN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedN + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedSingleLanguage + x64 + 5729576099 + 31f9e7883e707a5c1f913956c0e46344c95902ca0657ac36277d5020c1b8ebaa + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e13f519b-5e2b-4a4e-9a97-b47446fa3615/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Ultimate + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudent + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + UltimateN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudentN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Starter + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasic + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremium + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnected + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + StarterN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasicN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremiumN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedN + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedSingleLanguage + ARM64 + 5700844926 + b80c128ae031b7de437b82b9f9f2b16e04496ef5e3e6dd15a5911da287070d1c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f54540c-d877-420b-8b97-6fd8efed1714/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Ultimate + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudent + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + UltimateN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudentN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Starter + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasic + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremium + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnected + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + StarterN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasicN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremiumN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedN + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedSingleLanguage + ARM64 + 5689071052 + 962358a288c598658e3237ec69ab9e1575c5d698405ceb134ecdf326b5147b6f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/24045ff7-4002-4f71-bd14-aaab0787b798/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Ultimate + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudent + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + UltimateN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudentN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Starter + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasic + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremium + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnected + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + StarterN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasicN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremiumN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedN + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedSingleLanguage + ARM64 + 5664475077 + 1f20a0099b3be81852f0775886911598b8e6955dc1c4262183ea23d98c0ccc84 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0b525cab-13ad-4283-958b-25060be81bc5/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Ultimate + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudent + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + UltimateN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudentN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Starter + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasic + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremium + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnected + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + StarterN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasicN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremiumN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedN + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedSingleLanguage + x64 + 6014360849 + e30ac9feac701bdd3b1cea079cbf840242a6995adf6eba8da3e4a8aa7a5fe8a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/64684e68-6179-4b6e-9e66-c952c625f880/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Ultimate + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudent + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + UltimateN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudentN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Starter + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasic + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremium + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnected + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + StarterN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasicN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremiumN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedN + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedSingleLanguage + x64 + 5800850676 + 2465591f430ca780aec72e68b1e905b9e453f10f9590050dba270e2df0221a39 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6cc0e1a0-78ac-44a9-85b6-c1d26b86c34b/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Ultimate + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudent + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + UltimateN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudentN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Starter + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomeBasic + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomePremium + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreConnected + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + StarterN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomeBasicN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomePremiumN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedN + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedSingleLanguage + x64 + 5930889093 + ebf9b093e334f5ed372e9f50170189762a785e6518e0f66552a01786a0c1ac56 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/34d109f7-e156-47ab-80a5-72fed4e626a1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Ultimate + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudent + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + UltimateN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudentN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Starter + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasic + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremium + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnected + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + StarterN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasicN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremiumN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedN + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedSingleLanguage + x64 + 5843177543 + 7907e16f2aea387fc792c23b799c2e8a7bd0549b78d1cb6c7faa47c1418cfc01 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06fcf828-810a-44a9-acd4-b29e7e3ddec6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Ultimate + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudent + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + UltimateN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudentN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Starter + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasic + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremium + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnected + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + StarterN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasicN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremiumN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedN + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedSingleLanguage + x64 + 5783195748 + 2158750243f3c6534c9a19c995cacc0eba64b2d7b31fcdbd2aa81273258ba6b0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0d042ca4-a03a-4ae4-9a58-ede9b1db7845/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Ultimate + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudent + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + UltimateN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudentN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Starter + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasic + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremium + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnected + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + StarterN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasicN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremiumN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedN + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedSingleLanguage + ARM64 + 5679946001 + 61b2e626f4ed008e9c5a384ef850f94f50a4faa977f06ae944424fa740d61b7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6171e091-a660-4c99-8a2f-53c529a2d190/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Ultimate + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudent + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + UltimateN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudentN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Starter + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasic + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremium + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnected + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + StarterN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasicN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremiumN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedN + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedSingleLanguage + ARM64 + 5645330456 + 3f83b1f846a9b27d1f0d8316fdc35ef0c7df74bbfcd0a7f416d873598bc6b2f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c26cfd79-3f17-45c1-9c85-3aa9163a2ccb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Ultimate + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudent + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + UltimateN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudentN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Starter + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomeBasic + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomePremium + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreConnected + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + StarterN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomeBasicN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomePremiumN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreConnectedN + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreConnectedSingleLanguage + ARM64 + 5801548840 + 6eaa75143f76cc11a191ab8b57691ce6de6afc338743f20f9c1c0fe607da7538 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cb0caa0d-349e-4971-8566-797e28cfeb67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Ultimate + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudent + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + UltimateN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudentN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Starter + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasic + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremium + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnected + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + StarterN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasicN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremiumN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedN + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedSingleLanguage + ARM64 + 6013644575 + daae844253203994f1e472850462ff6fe3e17bb049cecc222cd837f2d501a78c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/49a2c5c8-53f7-4bab-8457-9d5d782f1425/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Ultimate + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudent + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + UltimateN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudentN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Starter + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasic + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremium + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnected + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + StarterN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasicN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremiumN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedN + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedSingleLanguage + x64 + 5931078322 + 42d97f862d52bd3008bde67ac1cd5a238e0624f788632238e2e8dfeacb1fd5dd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c7d6c1b3-0a9a-421b-8334-27cd8d4a0b73/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Ultimate + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudent + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + UltimateN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudentN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Starter + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasic + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremium + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnected + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + StarterN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasicN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremiumN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedN + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedSingleLanguage + x64 + 5828644942 + 78f2555928660fb2db20b466b77ccb3b24350e613ff935f742220510602397b8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68390e51-b412-4ffc-80bb-f79e7fc5cd67/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Ultimate + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudent + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + UltimateN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudentN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Starter + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasic + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremium + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnected + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + StarterN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasicN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremiumN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedN + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedSingleLanguage + x64 + 5791786560 + 168f1615ce67446d15e59e413cf59f77441a596fa1ac47396bc87455ca076988 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/042417a9-565a-4295-b173-946b04d90dc1/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Ultimate + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudent + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + UltimateN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudentN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Starter + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasic + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremium + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnected + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + StarterN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasicN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremiumN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedN + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedSingleLanguage + ARM64 + 5696175968 + 3fb5c25740bc46af126ffe94e9eaadd1388b6b0f91b3615db02d30cd3e876489 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/53738c7a-db89-4492-aa89-018346f478d6/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Ultimate + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudent + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + UltimateN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudentN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Starter + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasic + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremium + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnected + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + StarterN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasicN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremiumN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedN + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedSingleLanguage + ARM64 + 5760153491 + 45d2260d82e85d97f07173423762a3c1cda9bc4152daa429842dc829b2592a34 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ee9bff04-0cca-482f-99d7-e6a19b6d8606/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Ultimate + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudent + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + UltimateN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudentN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Starter + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasic + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremium + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnected + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + StarterN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasicN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremiumN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedN + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedSingleLanguage + ARM64 + 5740668690 + da9b16687353aa0262036a7382029886f98e0e44f12eaeca715f2e6e0715e013 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8fe12c8d-1548-446d-9a05-f889cefdbb80/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Ultimate + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudent + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + UltimateN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudentN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Starter + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasic + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremium + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnected + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + StarterN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasicN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremiumN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedN + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedSingleLanguage + x64 + 5928393089 + 226ae56d4c4262e57529f6e187c6bf7a7565376080f8db712c98226219609d3b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f09ed10-927c-4769-a809-2f3dae6e2fd7/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Ultimate + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudent + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + UltimateN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudentN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Starter + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasic + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremium + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnected + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + StarterN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasicN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremiumN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedN + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedSingleLanguage + ARM64 + 5677199074 + d5b2173a3049bded54046b0a5ab8af5c7c1e918813271e3e1134b554204cb807 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/44ff91a8-a13c-4587-bff5-b64d40bc6035/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Ultimate + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudent + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + UltimateN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudentN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Starter + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomeBasic + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomePremium + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreConnected + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + StarterN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomeBasicN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomePremiumN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedN + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedSingleLanguage + ARM64 + 5811897055 + a0fafde204f71cd26cd35680380173e2dcf9078fcf92fe568b0e885afb705db7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf02c05b-57d8-4b51-a4bc-c3d6719231cf/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Ultimate + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudent + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + UltimateN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudentN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Starter + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasic + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremium + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnected + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + StarterN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasicN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremiumN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedN + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedSingleLanguage + ARM64 + 5660957259 + b5058f59cc9dd4ed99b3997c818e7e705d8d442246296268ba4342bc131b6ed6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ab1236a-3ac6-4b17-80f4-5d15c6f019ba/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Ultimate + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudent + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + UltimateN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudentN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Starter + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasic + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremium + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnected + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + StarterN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasicN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremiumN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedN + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedSingleLanguage + x64 + 5775784188 + 964f32266ad812210b456b8605ffda33afad355f31605b6122dd46deb4a384c6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/25aa7d98-1e5f-4bcd-9e5f-5a5fd7e01c76/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Ultimate + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudent + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + UltimateN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudentN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Starter + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasic + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremium + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnected + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + StarterN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasicN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremiumN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedN + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedSingleLanguage + x64 + 5815712700 + 7133edc6fc13faaefed3f5e7669584843aa73540d5603d81306ea2d87e96f2f8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/013f20d7-4392-477d-ade0-a451b0872842/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Ultimate + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudent + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + UltimateN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudentN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Starter + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasic + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremium + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnected + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + StarterN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasicN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremiumN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedN + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedSingleLanguage + ARM64 + 5703040659 + 236f2b985d2e746ffb3373bbaa1d5c602422a2b2d54b80843137ed32792d130f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c5450211-b0ad-4d01-9140-36290f934ecc/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Ultimate + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudent + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + UltimateN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudentN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Starter + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasic + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomePremium + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnected + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + StarterN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasicN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomePremiumN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedN + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedSingleLanguage + ARM64 + 5718803309 + 56e9d8c50470a41789de0b81c63e9fd7dea9b5b7206173924143fb8c149b378f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc96bb7-df38-4c2c-943f-6305dfffc158/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Ultimate + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudent + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + UltimateN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudentN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Starter + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasic + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremium + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnected + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + StarterN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasicN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremiumN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedN + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedSingleLanguage + x64 + 5798022792 + 7b0b766f8e44da12bd4328ea9c9c0b22eb1e058facaec140c0e28dede9acce8c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/da6937e9-5ab9-4951-9e01-07db5ab761cb/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Ultimate + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudent + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + UltimateN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudentN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Starter + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasic + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremium + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnected + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + StarterN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasicN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremiumN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedN + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedSingleLanguage + ARM64 + 5636896994 + 9b6c7c211ea580da370676f8f58ef0b4e7d043db86e7f9bb3dc5619407b56df9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/408d30d9-4b3b-485b-8e62-81ca2bcb24de/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Ultimate + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudent + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + UltimateN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudentN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Starter + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasic + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremium + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnected + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + StarterN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasicN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremiumN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedN + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedSingleLanguage + x64 + 5820713636 + cea787812aeb5e4d53c90c387d5251f95f268356d46a9e275f5d40c07ecfcbc1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1a3984ad-9bf0-43f4-903d-22cd0856c9cd/26200.8653.260606-0206.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + + + Windows 11 Home + Windows 11 Home K + Windows 11 Home N + Windows 11 Home KN + Windows 11 Pro + Windows 11 Pro K + Windows 11 Pro N + Windows 11 Pro KN + Windows 11 Home Single Language + Windows 11 Home (China only) + 32-bit (x86) + 64-bit (x64) + Windows 11 Education + Windows 11 Education K + Windows 11 Education N + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32- بت (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-بت (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 бита (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 бита (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bitů (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bitů (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-Bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-Bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitine (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitine (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bittinen (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bittinen (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Famille K + Windows 11 Professionnel + + Windows 11 Professionnel K + Windows 11 Famille + Windows 11 Famille N + 64 bits (x64) + + Windows 11 Famille KN + Windows 11 Professionnel KN + Windows 11 Professionnel N + Windows 11 Éducation + Windows 11 Éducation N + Windows 11 Éducation K + Windows 11 Éducation KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Famille K + Windows 11 Professionnel + Windows 11 Famille Unilingue + Windows 11 Professionnel K + Windows 11 Famille + Windows 11 Famille N + 64 bits (x64) + + Windows 11 Famille KN + Windows 11 Professionnel KN + Windows 11 Professionnel N + Windows 11 Éducation + Windows 11 Éducation N + Windows 11 Éducation K + Windows 11 Éducation KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 סיביות (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 סיביות (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitna (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitna (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bites (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bites (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 ビット (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 ビット (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32비트(x86) + Windows 11 Home K + Windows 11 Pro K + Windows 11 Home Single Language K + Windows 11 Pro K + Windows 11 Home + Windows 11 Home KN + 64비트(x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro KN + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bitų (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bitų (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-biters (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-biters (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + Wersja 32-bitowa (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + Wersja 64-bitowa (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + Pe 32 de biți (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + Pe 64 de biți (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-разрядная (x86) + Windows 11 Домашняя K + Windows 11 Pro + Windows 11 Домашняя для одного языка + Windows 11 Pro K + Windows 11 Домашняя + Windows 11 Домашняя N + 64-разрядная (x64) + + Windows 11 Домашняя KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 для образовательных учреждений + Windows 11 для образовательных учреждений N + Windows 11 для образовательных учреждений K + Windows 11 для образовательных учреждений KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitová verzia (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitová verzia (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitna različica (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitna različica (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitna verzija (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitna verzija (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bitar (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bitar (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 บิต (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 บิต (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-ъìť (×86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-ъĭţ (ж64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-роздярна (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-розрядна (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 位(x86) + Windows 11 家庭版 K + Windows 11 专业版 + Windows 11 家庭单语言版 + Windows 11 专业版 K + Windows 11 家庭版 + Windows 11 家庭版 N + 64 位(x64) + Windows 11 家庭中文版 + Windows 11 家庭版 KN + Windows 11 专业版 KN + Windows 11 专业版 N + Windows 11 教育版 + Windows 11 教育版 N + Windows 11 教育版 K + Windows 11 教育版 KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 位元 (x86) + Windows 11 家用版 K + Windows 11 專業版 + + Windows 11 專業版 K + Windows 11 家用版 + Windows 11 家用版 N + 64 位元 (x64) + + Windows 11 家用版 KN + Windows 11 專業版 KN + Windows 11 專業版 N + Windows 11 教育版 + Windows 11 教育版 N + Windows 11 教育版 K + Windows 11 教育版 KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 位元 (x86) + Windows 11 家用版 K + Windows 11 專業版 + + Windows 11 專業版 K + Windows 11 家用版 + Windows 11 家用版 N + 64 位元 (x64) + + Windows 11 家用版 KN + Windows 11 專業版 KN + Windows 11 專業版 N + Windows 11 教育版 + Windows 11 教育版 N + Windows 11 教育版 K + Windows 11 教育版 KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + + + ar-sa + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_AR-SA_6.27.16.rtf + + + bg-bg + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_BG-BG_6.27.16.rtf + + + cs-cz + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_CS-CZ_6.27.16.rtf + + + da-dk + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_DA-DK_6.27.16.rtf + + + de-de + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_DE-DE_6.27.16.rtf + + + el-gr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_EL-GR_6.27.16.rtf + + + en-gb + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_EN-GB_6.27.16.rtf + + + en-us + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_EN-US_6.27.16.rtf + + + es-es + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ES-ES_6.27.16.rtf + + + es-mx + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ES-MX_6.27.16.rtf + + + et-ee + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ET-EE_6.27.16.rtf + + + fi-fi + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_FI-FI_6.27.16.rtf + + + fr-ca + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_FR-CA_6.27.16.rtf + + + fr-fr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_FR-FR_6.27.16.rtf + + + he-il + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_HE-IL_6.27.16.rtf + + + hr-hr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_HR-HR_6.27.16.rtf + + + hu-hu + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_HU-HU_6.27.16.rtf + + + it-it + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_IT-IT_6.27.16.rtf + + + ja-jp + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_JA-JP_6.27.16.rtf + + + ko-kr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_KO-KR_6.27.16.rtf + + + lt-lt + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_LT-LT_6.27.16.rtf + + + lv-lv + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_LV-LV_6.27.16.rtf + + + nb-no + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_NB-NO_6.27.16.rtf + + + nl-nl + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_NL-NL_6.27.16.rtf + + + pl-pl + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_PL-PL_6.27.16.rtf + + + pt-br + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_PT-BR_6.27.16.rtf + + + pt-pt + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_PT-PT_6.27.16.rtf + + + ro-ro + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_RO-RO_6.27.16.rtf + + + ru-ru + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_RU-RU_6.27.16.rtf + + + sk-sk + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SK-SK_6.27.16.rtf + + + sl-si + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SL-SI_6.27.16.rtf + + + sr-latn-rs + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SR-LATN-RS_6.27.16.rtf + + + sv-se + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SV-SE_6.27.16.rtf + + + th-th + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_TH-TH_6.27.16.rtf + + + tr-tr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_TR-TR_6.27.16.rtf + + + uk-ua + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_UK-UA_6.27.16.rtf + + + zh-cn + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ZH-CN_6.27.16.rtf + + + zh-tw + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ZH-TW_6.27.16.rtf + + + + + + \ No newline at end of file diff --git a/OSDCloud/core/operatingsystems-bak/26200.8873-win11-25h2.xml b/OSDCloud/core/operatingsystems-bak/26200.8873-win11-25h2.xml new file mode 100644 index 0000000..569ba94 --- /dev/null +++ b/OSDCloud/core/operatingsystems-bak/26200.8873-win11-25h2.xml @@ -0,0 +1,28898 @@ + + + + + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreCountrySpecific + x64 + 5919271311 + eb56c70c5113417a1ef8439159bd12be4f1c244e6705ae6f88b6f9430a322299 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/48bd08fb-f088-44e5-9cb2-aea7ac300c74/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %BASE_CHINA% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Professional + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducation + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducationN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstation + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstationN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Core + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreSingleLanguage + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Education + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + EducationN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Professional + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducation + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducationN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstation + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstationN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Core + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreSingleLanguage + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Education + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EducationN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Professional + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducation + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducationN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstation + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstationN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Core + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreSingleLanguage + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Education + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EducationN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Professional + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducation + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducationN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstation + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstationN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Core + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreSingleLanguage + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Education + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + EducationN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Professional + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducation + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducationN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstation + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstationN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Core + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreSingleLanguage + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Education + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + EducationN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Professional + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducation + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducationN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstation + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstationN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Core + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreSingleLanguage + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Education + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EducationN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Professional + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducation + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducationN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstation + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstationN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Core + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreSingleLanguage + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Education + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + EducationN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Professional + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducation + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducationN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstation + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstationN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Core + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreSingleLanguage + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Education + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EducationN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Professional + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducation + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducationN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstation + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstationN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Core + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreSingleLanguage + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Education + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EducationN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Professional + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducation + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducationN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstation + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstationN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Core + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreSingleLanguage + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Education + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EducationN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Professional + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducation + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalEducationN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstation + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalWorkstationN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Core + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreSingleLanguage + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Education + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EducationN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Professional + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducation + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducationN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstation + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstationN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Core + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreSingleLanguage + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Education + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EducationN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Professional + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducation + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalEducationN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstation + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalWorkstationN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Core + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreSingleLanguage + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Education + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EducationN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Professional + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducation + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducationN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstation + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstationN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Core + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreSingleLanguage + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Education + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EducationN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Professional + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducation + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducationN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstation + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstationN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Core + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreSingleLanguage + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Education + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + EducationN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Professional + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducation + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducationN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstation + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstationN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Core + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreSingleLanguage + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Education + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EducationN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Professional + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducation + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducationN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstation + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstationN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Core + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreSingleLanguage + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Education + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EducationN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Professional + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducation + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducationN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstation + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstationN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Core + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreSingleLanguage + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Education + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + EducationN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Professional + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducation + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalEducationN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstation + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalWorkstationN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Core + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreSingleLanguage + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Education + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EducationN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Professional + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducation + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducationN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstation + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstationN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Core + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreSingleLanguage + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Education + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EducationN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Professional + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducation + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalEducationN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstation + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalWorkstationN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Core + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreSingleLanguage + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Education + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EducationN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Professional + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducation + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducationN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstation + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstationN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Core + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreSingleLanguage + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Education + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EducationN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Professional + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducation + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducationN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstation + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstationN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Core + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreSingleLanguage + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Education + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + EducationN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Professional + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducation + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducationN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstation + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstationN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Core + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreSingleLanguage + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Education + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EducationN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Professional + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducation + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalEducationN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstation + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalWorkstationN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Core + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreSingleLanguage + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Education + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EducationN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Professional + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducation + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducationN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstation + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstationN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Core + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreSingleLanguage + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Education + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EducationN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Professional + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducation + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalEducationN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstation + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalWorkstationN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Core + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreSingleLanguage + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Education + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + EducationN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Professional + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducation + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalEducationN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstation + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalWorkstationN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Core + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreSingleLanguage + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Education + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EducationN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Professional + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducation + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducationN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstation + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstationN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Core + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreSingleLanguage + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Education + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EducationN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Professional + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducation + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducationN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstation + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstationN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Core + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreSingleLanguage + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Education + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + EducationN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Professional + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducation + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducationN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstation + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstationN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Core + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreSingleLanguage + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Education + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EducationN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Professional + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducation + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducationN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstation + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstationN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Core + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreSingleLanguage + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Education + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EducationN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Professional + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducation + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducationN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstation + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstationN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Core + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreSingleLanguage + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Education + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + EducationN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Professional + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducation + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducationN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstation + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstationN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Core + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreSingleLanguage + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Education + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EducationN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Professional + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducation + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducationN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstation + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstationN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Core + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreSingleLanguage + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Education + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EducationN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Professional + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducation + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalEducationN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstation + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalWorkstationN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Core + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreSingleLanguage + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Education + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EducationN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Professional + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducation + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalEducationN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstation + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalWorkstationN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Core + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreSingleLanguage + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Education + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EducationN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Professional + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducation + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducationN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstation + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstationN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Core + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreSingleLanguage + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Education + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EducationN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Professional + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducation + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalEducationN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstation + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalWorkstationN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Core + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreSingleLanguage + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Education + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EducationN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Professional + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducation + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalEducationN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstation + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalWorkstationN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Core + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreSingleLanguage + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Education + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + EducationN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Professional + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducation + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducationN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstation + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstationN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Core + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreSingleLanguage + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Education + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EducationN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Professional + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducation + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducationN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstation + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstationN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Core + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreSingleLanguage + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Education + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EducationN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Professional + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducation + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalEducationN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstation + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalWorkstationN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Core + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreSingleLanguage + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Education + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EducationN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Professional + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducation + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalEducationN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstation + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalWorkstationN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Core + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreSingleLanguage + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Education + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EducationN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Professional + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducation + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalEducationN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstation + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalWorkstationN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Core + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreSingleLanguage + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Education + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EducationN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Professional + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducation + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducationN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstation + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstationN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Core + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreSingleLanguage + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Education + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + EducationN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Professional + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducation + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalEducationN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstation + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalWorkstationN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Core + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreSingleLanguage + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Education + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EducationN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Professional + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducation + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalEducationN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstation + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalWorkstationN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Core + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreSingleLanguage + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Education + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + EducationN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Professional + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducation + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducationN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstation + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstationN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Core + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreSingleLanguage + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Education + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EducationN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Professional + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducation + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducationN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstation + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstationN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Core + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreSingleLanguage + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Education + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + EducationN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Professional + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducation + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalEducationN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstation + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalWorkstationN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Core + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreSingleLanguage + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Education + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EducationN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Professional + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducation + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalEducationN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstation + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalWorkstationN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Core + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreSingleLanguage + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Education + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + EducationN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Professional + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducation + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalEducationN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstation + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalWorkstationN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Core + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreSingleLanguage + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Education + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + EducationN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Professional + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducation + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalEducationN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstation + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalWorkstationN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Core + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreSingleLanguage + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Education + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + EducationN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Professional + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducation + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducationN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstation + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstationN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Core + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreSingleLanguage + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Education + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EducationN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Professional + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducation + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalEducationN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstation + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalWorkstationN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Core + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreSingleLanguage + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Education + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EducationN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Professional + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducation + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalEducationN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstation + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalWorkstationN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Core + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreSingleLanguage + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Education + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EducationN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Professional + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducation + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalEducationN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstation + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalWorkstationN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Core + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreSingleLanguage + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Education + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EducationN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Professional + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducation + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalEducationN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstation + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalWorkstationN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Core + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreSingleLanguage + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Education + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EducationN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Professional + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducation + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalEducationN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstation + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalWorkstationN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Core + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreSingleLanguage + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Education + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + EducationN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Professional + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducation + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalEducationN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstation + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalWorkstationN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Core + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreSingleLanguage + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Education + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + EducationN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Professional + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducation + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalEducationN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstation + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalWorkstationN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Core + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreSingleLanguage + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Education + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + EducationN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Professional + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducation + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducationN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstation + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstationN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Core + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreSingleLanguage + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Education + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EducationN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Professional + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducation + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducationN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstation + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstationN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Core + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreSingleLanguage + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Education + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EducationN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Professional + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducation + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalEducationN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstation + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalWorkstationN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Core + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreSingleLanguage + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Education + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EducationN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Professional + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducation + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalEducationN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstation + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalWorkstationN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Core + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreSingleLanguage + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Education + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EducationN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Professional + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducation + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducationN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstation + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstationN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Core + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreSingleLanguage + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Education + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + EducationN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Professional + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducation + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalEducationN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstation + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalWorkstationN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Core + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreSingleLanguage + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Education + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EducationN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Professional + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducation + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalEducationN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstation + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalWorkstationN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Core + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreSingleLanguage + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Education + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EducationN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Professional + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducation + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalEducationN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstation + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalWorkstationN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Core + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreSingleLanguage + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Education + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EducationN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Professional + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducation + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalEducationN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstation + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalWorkstationN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Core + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreSingleLanguage + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Education + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EducationN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Professional + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducation + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalEducationN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstation + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalWorkstationN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Core + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreSingleLanguage + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Education + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + EducationN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Professional + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducation + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalEducationN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstation + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalWorkstationN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Core + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreSingleLanguage + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Education + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + EducationN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Professional + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducation + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalEducationN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstation + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalWorkstationN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Core + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreSingleLanguage + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Education + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EducationN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Professional + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducation + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalEducationN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstation + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalWorkstationN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Core + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreSingleLanguage + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Education + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EducationN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Professional + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducation + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalEducationN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstation + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalWorkstationN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Core + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreSingleLanguage + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Education + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + EducationN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + de-de + German (Germany) + Enterprise + ARM64 + 5867304500 + a505190d2ea4bf14cf1e4608a28c8d8db4d75c0b9b2b0829aea078bcc50a3de9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/11de6a93-ae26-4846-ad44-584989e5ef3f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + de-de + German (Germany) + EnterpriseN + ARM64 + 5867304500 + a505190d2ea4bf14cf1e4608a28c8d8db4d75c0b9b2b0829aea078bcc50a3de9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/11de6a93-ae26-4846-ad44-584989e5ef3f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Enterprise + x64 + 5830880863 + 198d5b305fcd866ffdd0c22592ee0e24b77c7177ce25974950a357d1ee4a9a1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc18b1d-c6fa-4822-8207-d2fcd1f42e0a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EnterpriseN + x64 + 5830880863 + 198d5b305fcd866ffdd0c22592ee0e24b77c7177ce25974950a357d1ee4a9a1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cbc18b1d-c6fa-4822-8207-d2fcd1f42e0a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Enterprise + x64 + 5893209879 + b8b0d6ca497bfad708e652e6d1efc15b13eb26a8ea0ffca7fa76188db6644c92 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ca89ea21-9be1-4186-bde0-79913c2a6ca8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EnterpriseN + x64 + 5893209879 + b8b0d6ca497bfad708e652e6d1efc15b13eb26a8ea0ffca7fa76188db6644c92 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ca89ea21-9be1-4186-bde0-79913c2a6ca8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Enterprise + ARM64 + 6000467829 + 56f04bcde334b7414e5cc3c299acc5993af131edd0b5fb80ccc9b473f1dcb453 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c998a099-f61d-4fe0-8c0c-43f5dcddfd7a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EnterpriseN + ARM64 + 6000467829 + 56f04bcde334b7414e5cc3c299acc5993af131edd0b5fb80ccc9b473f1dcb453 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c998a099-f61d-4fe0-8c0c-43f5dcddfd7a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Enterprise + x64 + 5774605971 + 2424faf787831f3cb33356c25a5e451ed1e4452e5e3886c5a05648423104b5c5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd49e887-b26c-4d88-b453-0910d428b069/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EnterpriseN + x64 + 5774605971 + 2424faf787831f3cb33356c25a5e451ed1e4452e5e3886c5a05648423104b5c5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd49e887-b26c-4d88-b453-0910d428b069/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Enterprise + ARM64 + 5786369451 + 9a54989e2c7d997ae5661b338998c4b09575b9df2d53d29e522bbda8ca727b58 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45128598-a153-4b58-8890-e185566711c8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + EnterpriseN + ARM64 + 5786369451 + 9a54989e2c7d997ae5661b338998c4b09575b9df2d53d29e522bbda8ca727b58 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/45128598-a153-4b58-8890-e185566711c8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Enterprise + x64 + 5783215539 + bd68940d6ac9e894a91ad2e6da434a73474e9c58606d4409363603f4440f8808 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f0205528-948f-463f-9e29-c69da76615d8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EnterpriseN + x64 + 5783215539 + bd68940d6ac9e894a91ad2e6da434a73474e9c58606d4409363603f4440f8808 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f0205528-948f-463f-9e29-c69da76615d8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + th-th + Thai (Thailand) + Enterprise + ARM64 + 5766173976 + 7eb16d61cc064ef421351c0e4f3d28c1bc0b448c113e9d0fb1418e5c6ed4855c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27037622-9b67-4751-b441-d998ca3d4473/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + th-th + Thai (Thailand) + EnterpriseN + ARM64 + 5766173976 + 7eb16d61cc064ef421351c0e4f3d28c1bc0b448c113e9d0fb1418e5c6ed4855c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27037622-9b67-4751-b441-d998ca3d4473/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Enterprise + ARM64 + 5709739343 + b82b6e71e271581c2b0eb39d4d457f905ac60f6449274c04314d0d49fc420f13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0f894e7b-5c29-4a6f-9f16-daed5865e155/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + EnterpriseN + ARM64 + 5709739343 + b82b6e71e271581c2b0eb39d4d457f905ac60f6449274c04314d0d49fc420f13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0f894e7b-5c29-4a6f-9f16-daed5865e155/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Enterprise + ARM64 + 5731111722 + 85a49d5aa76b3f1bbd6cd4298c4ea0c1c37b4e52faff9b8bc8f7306d6d4d4fba + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/efa69c2e-5613-4708-a84f-55a315c7a378/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EnterpriseN + ARM64 + 5731111722 + 85a49d5aa76b3f1bbd6cd4298c4ea0c1c37b4e52faff9b8bc8f7306d6d4d4fba + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/efa69c2e-5613-4708-a84f-55a315c7a378/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + en-us + English (United States) + Enterprise + ARM64 + 5871576890 + 3188fc961ede9d3882b16d290744978880ecbe7f1614334f7092f476d27759ac + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9c449bb0-1572-4772-80a2-5183767d7aa0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + en-us + English (United States) + EnterpriseN + ARM64 + 5871576890 + 3188fc961ede9d3882b16d290744978880ecbe7f1614334f7092f476d27759ac + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9c449bb0-1572-4772-80a2-5183767d7aa0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Enterprise + ARM64 + 5715753313 + a42d9b918384fb51258208cf0273e4b31670194bbacc258d1a17b2f9c1c44a73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/344bfb37-fb83-42f2-ac6b-8984459766a1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EnterpriseN + ARM64 + 5715753313 + a42d9b918384fb51258208cf0273e4b31670194bbacc258d1a17b2f9c1c44a73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/344bfb37-fb83-42f2-ac6b-8984459766a1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Enterprise + ARM64 + 5820294363 + b961bb9e9a4216528e39dd65400f22cef0b5a65bff29a41038b8e5da876e771b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/20d09b98-6529-455a-9888-d8fb5d8b69f8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EnterpriseN + ARM64 + 5820294363 + b961bb9e9a4216528e39dd65400f22cef0b5a65bff29a41038b8e5da876e771b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/20d09b98-6529-455a-9888-d8fb5d8b69f8/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Enterprise + x64 + 5857805673 + f1f4b7799a3e189221867c64fb0a19234fceda60bc6a6ae14fb001cbef546b88 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b5eef25b-d555-46f1-8b78-f9e08862b57a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EnterpriseN + x64 + 5857805673 + f1f4b7799a3e189221867c64fb0a19234fceda60bc6a6ae14fb001cbef546b88 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b5eef25b-d555-46f1-8b78-f9e08862b57a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Enterprise + ARM64 + 5718400098 + 5dfdd0c7e65d2c46676429c518907265b5abc541d447bb2c162665ededb9998e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7b2ef9e9-3caa-4d58-84a9-6df9fc100dff/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EnterpriseN + ARM64 + 5718400098 + 5dfdd0c7e65d2c46676429c518907265b5abc541d447bb2c162665ededb9998e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7b2ef9e9-3caa-4d58-84a9-6df9fc100dff/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Enterprise + ARM64 + 5737464375 + e502571bdc09766c9370feba09df3aaeeab1cffe1cf2dbdcacbcc1d9cc1a5b2a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a77ef770-6b4c-4cee-a158-e7e0b874a087/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EnterpriseN + ARM64 + 5737464375 + e502571bdc09766c9370feba09df3aaeeab1cffe1cf2dbdcacbcc1d9cc1a5b2a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a77ef770-6b4c-4cee-a158-e7e0b874a087/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Enterprise + ARM64 + 5744467821 + fb0a3bdd20b22b42ba2e40510477651f495ab37db11c31449c552be2a5ca8ad8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e0e04ea8-c30e-46ff-be99-daa7ddbf25c5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + EnterpriseN + ARM64 + 5744467821 + fb0a3bdd20b22b42ba2e40510477651f495ab37db11c31449c552be2a5ca8ad8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e0e04ea8-c30e-46ff-be99-daa7ddbf25c5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hu-hu.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + es-es + Spanish (Spain) + Enterprise + ARM64 + 5856959474 + bc5df3dce11bebe406fbe9e82c50686564f84887873fb148aa470a167729907e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5f7c81-401d-40ad-b9a5-4f477539a487/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + es-es + Spanish (Spain) + EnterpriseN + ARM64 + 5856959474 + bc5df3dce11bebe406fbe9e82c50686564f84887873fb148aa470a167729907e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ff5f7c81-401d-40ad-b9a5-4f477539a487/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + it-it + Italian (Italy) + Enterprise + ARM64 + 5770035657 + e9803c5f4c15660fe5b88b1e804b714e03288c5e0f0935c42c246a34c27c9486 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/61c4a0ba-9a64-4c63-b0e3-b1faef8950c7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + it-it + Italian (Italy) + EnterpriseN + ARM64 + 5770035657 + e9803c5f4c15660fe5b88b1e804b714e03288c5e0f0935c42c246a34c27c9486 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/61c4a0ba-9a64-4c63-b0e3-b1faef8950c7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Enterprise + ARM64 + 5725475579 + 8de8de2247bc84515f7583f870c1dc8b953e9040f5f9b662b61c17b7e5097901 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5b4e75c9-21c6-4ee7-9620-d583a6ef131f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EnterpriseN + ARM64 + 5725475579 + 8de8de2247bc84515f7583f870c1dc8b953e9040f5f9b662b61c17b7e5097901 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5b4e75c9-21c6-4ee7-9620-d583a6ef131f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Enterprise + ARM64 + 5729671500 + 0268c011cb492cea70bea556b73a31afa260c4e349bbf22b5a3d4511e8a86a71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84bc64b6-6baf-4ae6-a2f4-4c8a32fc14f1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EnterpriseN + ARM64 + 5729671500 + 0268c011cb492cea70bea556b73a31afa260c4e349bbf22b5a3d4511e8a86a71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/84bc64b6-6baf-4ae6-a2f4-4c8a32fc14f1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Enterprise + ARM64 + 5765087848 + 160e31ed5d65e0ac513aa4992c4f3e047f6d3c48bbe15f98afa43240d20a2881 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f0326ee-83ed-474f-a643-ecf0b602ffd0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EnterpriseN + ARM64 + 5765087848 + 160e31ed5d65e0ac513aa4992c4f3e047f6d3c48bbe15f98afa43240d20a2881 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5f0326ee-83ed-474f-a643-ecf0b602ffd0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Enterprise + ARM64 + 5837646335 + 76a0604d901f597adad9f62b9cfaa122331a39f811d078d40b7ae92657b76c30 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f00c9960-a5e6-48c3-aecc-f73d1d3886af/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + fr-ca + French (Canada) + EnterpriseN + ARM64 + 5837646335 + 76a0604d901f597adad9f62b9cfaa122331a39f811d078d40b7ae92657b76c30 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f00c9960-a5e6-48c3-aecc-f73d1d3886af/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Enterprise + ARM64 + 5730629169 + 159fb920b498aadb0e45b201a380ca4e35abd602b9e10b539801d129297751ab + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0bde352b-c408-4463-a158-2592023bdd32/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + EnterpriseN + ARM64 + 5730629169 + 159fb920b498aadb0e45b201a380ca4e35abd602b9e10b539801d129297751ab + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0bde352b-c408-4463-a158-2592023bdd32/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_lv-lv.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Enterprise + ARM64 + 5856563025 + 0fe2b20fdfe6bfc44ebf68de1488721350cbc8df2190e1a5b7f1e4b19c9d906a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e262f260-b078-4d6f-ba05-ad930b8debbf/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + EnterpriseN + ARM64 + 5856563025 + 0fe2b20fdfe6bfc44ebf68de1488721350cbc8df2190e1a5b7f1e4b19c9d906a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e262f260-b078-4d6f-ba05-ad930b8debbf/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Enterprise + x64 + 5880444664 + bda24284e1613d02a436b77d21bc4fb8988303131f588cbb482a3644eca9e17f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b8108df-06ae-4387-aa6b-6950092e2fe1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + EnterpriseN + x64 + 5880444664 + bda24284e1613d02a436b77d21bc4fb8988303131f588cbb482a3644eca9e17f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b8108df-06ae-4387-aa6b-6950092e2fe1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_lt-lt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Enterprise + ARM64 + 5745608369 + aa6452e90d2b5ec040a0ac1093489ae07ee0c77de2f2f074b4f2151132bf8de7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b2391120-71eb-4f25-8a1e-1d8e564fd0e5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EnterpriseN + ARM64 + 5745608369 + aa6452e90d2b5ec040a0ac1093489ae07ee0c77de2f2f074b4f2151132bf8de7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b2391120-71eb-4f25-8a1e-1d8e564fd0e5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Enterprise + x64 + 5876922550 + f4c0b3d2b81d2968f63fcc19820737d757322700dc48e7aa7c0b333b49c7d592 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/51125b55-8739-4323-9a0b-062dd13ffb93/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + fr-ca + French (Canada) + EnterpriseN + x64 + 5876922550 + f4c0b3d2b81d2968f63fcc19820737d757322700dc48e7aa7c0b333b49c7d592 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/51125b55-8739-4323-9a0b-062dd13ffb93/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-ca.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Enterprise + x64 + 5871767738 + e3a76979c6c3e3e43f2cae5ce2321ca8873f126115a713d4f954642f50e92771 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3adb987d-751c-4bdb-8d5e-7ef719655d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + EnterpriseN + x64 + 5871767738 + e3a76979c6c3e3e43f2cae5ce2321ca8873f126115a713d4f954642f50e92771 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3adb987d-751c-4bdb-8d5e-7ef719655d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_cs-cz.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Enterprise + ARM64 + 5849682888 + b982bdbae18e335804886b3a244bd1bf70650f222cd9db88233d708f6c50c549 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/77c00f7c-e598-42bb-8356-d9ecd917e5ca/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + he-il + Hebrew (Israel) + EnterpriseN + ARM64 + 5849682888 + b982bdbae18e335804886b3a244bd1bf70650f222cd9db88233d708f6c50c549 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/77c00f7c-e598-42bb-8356-d9ecd917e5ca/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Enterprise + x64 + 6024160246 + c9a07c306d477f7aab9bda9cfb3c575cf9a241083be0972b92a1dde685e2dbf9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/14f0d93b-34e3-459b-b211-2ae6abf79fe5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + EnterpriseN + x64 + 6024160246 + c9a07c306d477f7aab9bda9cfb3c575cf9a241083be0972b92a1dde685e2dbf9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/14f0d93b-34e3-459b-b211-2ae6abf79fe5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ja-jp.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Enterprise + x64 + 5813087782 + 98b223d45f721616f401b0b2be4fe4e8b5ded006903b991e34e5e8361f590a86 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/061eb85c-1eaf-442b-839b-e7b6763f35e9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EnterpriseN + x64 + 5813087782 + 98b223d45f721616f401b0b2be4fe4e8b5ded006903b991e34e5e8361f590a86 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/061eb85c-1eaf-442b-839b-e7b6763f35e9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Enterprise + ARM64 + 5720162995 + 5fef09b98a80f3e8ff86c33ef40d3f0b5f31cef11e0dde15db47cddae73a9b10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/239e96dc-0f71-4259-87da-bc51d0d91115/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EnterpriseN + ARM64 + 5720162995 + 5fef09b98a80f3e8ff86c33ef40d3f0b5f31cef11e0dde15db47cddae73a9b10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/239e96dc-0f71-4259-87da-bc51d0d91115/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Enterprise + ARM64 + 5800492217 + 57f1af944c134c516473895f03dc39190e286bd936eed414c4b687061ca9bf4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d87342fd-45cb-4746-86b6-800c40311b02/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + EnterpriseN + ARM64 + 5800492217 + 57f1af944c134c516473895f03dc39190e286bd936eed414c4b687061ca9bf4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d87342fd-45cb-4746-86b6-800c40311b02/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ru-ru.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Enterprise + x64 + 5787507958 + c67d6ee509d2f560e17d947d307db43282a2d57b4cdefa88b902ab8f96e19d14 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ace2afeb-a196-4a6a-bd84-65496867886a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EnterpriseN + x64 + 5787507958 + c67d6ee509d2f560e17d947d307db43282a2d57b4cdefa88b902ab8f96e19d14 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ace2afeb-a196-4a6a-bd84-65496867886a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + fr-fr + French (France) + Enterprise + x64 + 6009645066 + 8543418841ef1efd670701ebd81361ed89b0c2eda082bdf62d8f2db6bf61a13e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0fb384a4-2e99-4773-af93-9fac717e0354/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + fr-fr + French (France) + EnterpriseN + x64 + 6009645066 + 8543418841ef1efd670701ebd81361ed89b0c2eda082bdf62d8f2db6bf61a13e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0fb384a4-2e99-4773-af93-9fac717e0354/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Enterprise + x64 + 5881175317 + 1ff0751e6b7d2a53996a7864c16bdee1788ced8511a2c841227a531f7d56024b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9cdea09a-bd0a-4a3b-ae32-bfb6ed8ac39f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + EnterpriseN + x64 + 5881175317 + 1ff0751e6b7d2a53996a7864c16bdee1788ced8511a2c841227a531f7d56024b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9cdea09a-bd0a-4a3b-ae32-bfb6ed8ac39f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_hr-hr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Enterprise + x64 + 5860496874 + d338fe87504863d3b1bae9d0b43ebdf387f1ae7728caf002351db625c18ac190 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fa9d916b-b8fc-4e5e-9b7d-be0d1c5b9c2c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EnterpriseN + x64 + 5860496874 + d338fe87504863d3b1bae9d0b43ebdf387f1ae7728caf002351db625c18ac190 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fa9d916b-b8fc-4e5e-9b7d-be0d1c5b9c2c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Enterprise + x64 + 6010326720 + 4819e4a0060e5541ee0dd6bc29f9f08eecdbaf57af928b33cee9230168555f2b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b68dc3f8-b2a7-415d-9fe3-3a0bed3e4bd2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + EnterpriseN + x64 + 6010326720 + 4819e4a0060e5541ee0dd6bc29f9f08eecdbaf57af928b33cee9230168555f2b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b68dc3f8-b2a7-415d-9fe3-3a0bed3e4bd2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-gb.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Enterprise + x64 + 5863276608 + b7e8ee54873c9b5a1217eacc38272ab2a616da9c89e4aacdf9a29601bcaffb29 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/175a3f86-181a-4bcb-99a3-8e0235b33604/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + EnterpriseN + x64 + 5863276608 + b7e8ee54873c9b5a1217eacc38272ab2a616da9c89e4aacdf9a29601bcaffb29 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/175a3f86-181a-4bcb-99a3-8e0235b33604/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ko-kr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Enterprise + ARM64 + 5749291567 + 21fc0a8f3aa7b181af2881c59e8e89d3b68920395198e91926cfc7ba26168e15 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fd097552-8723-42dd-aa05-6e3110264f0d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EnterpriseN + ARM64 + 5749291567 + 21fc0a8f3aa7b181af2881c59e8e89d3b68920395198e91926cfc7ba26168e15 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fd097552-8723-42dd-aa05-6e3110264f0d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Enterprise + ARM64 + 5757549904 + 8242b3e6eca68517d786b4f7fd8e1c5503f628ebfe54425f04e6c269b7ef7976 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0997fbf8-3fea-4552-b097-a08e5702e967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + el-gr + Greek (Greece) + EnterpriseN + ARM64 + 5757549904 + 8242b3e6eca68517d786b4f7fd8e1c5503f628ebfe54425f04e6c269b7ef7976 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0997fbf8-3fea-4552-b097-a08e5702e967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Enterprise + ARM64 + 5739122545 + 06f708c01ac7f07f324a25c1ca43c7a297d62510c09e784be466b56486245995 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06f12ccb-1ca9-4c91-a847-2586b240bdd4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + EnterpriseN + ARM64 + 5739122545 + 06f708c01ac7f07f324a25c1ca43c7a297d62510c09e784be466b56486245995 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/06f12ccb-1ca9-4c91-a847-2586b240bdd4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nb-no.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Enterprise + ARM64 + 6015859788 + 6254956f40aeb1e59cf1a0c50a7572a2776d9970f0a8180ad5c895792b8c456b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0ac0ecf8-6136-4c94-849f-6284410058c2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EnterpriseN + ARM64 + 6015859788 + 6254956f40aeb1e59cf1a0c50a7572a2776d9970f0a8180ad5c895792b8c456b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0ac0ecf8-6136-4c94-849f-6284410058c2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Enterprise + ARM64 + 5812932080 + 8e80c08b1c0ce0db790bd6141655fb2138065c1e6a15cf0fb49c184d2b64cadc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5ac985d4-807d-4547-81cc-00d651d622f1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + EnterpriseN + ARM64 + 5812932080 + 8e80c08b1c0ce0db790bd6141655fb2138065c1e6a15cf0fb49c184d2b64cadc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/5ac985d4-807d-4547-81cc-00d651d622f1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_es-mx.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Enterprise + ARM64 + 6030495846 + 7930043a46027210734567a613926bd7284f40a1e1fa9d115709a778767d1fa7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4681fef3-0f6d-46e4-8900-7faac96c3efa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + EnterpriseN + ARM64 + 6030495846 + 7930043a46027210734567a613926bd7284f40a1e1fa9d115709a778767d1fa7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4681fef3-0f6d-46e4-8900-7faac96c3efa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Enterprise + ARM64 + 5748348567 + 514f87de282daecf6f802f997b6c708ab3608ec31b0a4e55b577a0cdce94189b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/347cdd97-9694-41a1-a9d1-e722e502ac2b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + EnterpriseN + ARM64 + 5748348567 + 514f87de282daecf6f802f997b6c708ab3608ec31b0a4e55b577a0cdce94189b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/347cdd97-9694-41a1-a9d1-e722e502ac2b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_tr-tr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Enterprise + x64 + 6105527450 + 6fe183722011003db46cf0fa7d1b6271e5655a5b25dfcd71cbec4b3f47311983 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ea835d7-0e70-477e-a26b-f683183c7064/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + EnterpriseN + x64 + 6105527450 + 6fe183722011003db46cf0fa7d1b6271e5655a5b25dfcd71cbec4b3f47311983 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4ea835d7-0e70-477e-a26b-f683183c7064/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-cn.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Enterprise + ARM64 + 5740316681 + b44ebc9bd40d2067b1b48aa53e8e10e37b5265db96f7728743543e155c2e42d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/368584f5-81e5-4772-8ce7-825005ca933b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EnterpriseN + ARM64 + 5740316681 + b44ebc9bd40d2067b1b48aa53e8e10e37b5265db96f7728743543e155c2e42d6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/368584f5-81e5-4772-8ce7-825005ca933b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Enterprise + x64 + 5871148749 + 1df750a7b7fd580875a2dac8700bbf6238574eb84765eebb63a7246cac7a8746 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16e3514-6066-41e6-8996-5a65e2e09718/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + he-il + Hebrew (Israel) + EnterpriseN + x64 + 5871148749 + 1df750a7b7fd580875a2dac8700bbf6238574eb84765eebb63a7246cac7a8746 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16e3514-6066-41e6-8996-5a65e2e09718/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_he-il.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + it-it + Italian (Italy) + Enterprise + x64 + 5948311169 + 96c550e66c85e18cf8bdf0a1345d1c667bb8ce31c6616d73df8bad30f1608d85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb42afe5-9b9a-4c5a-8ec8-a57a7e6d963d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + it-it + Italian (Italy) + EnterpriseN + x64 + 5948311169 + 96c550e66c85e18cf8bdf0a1345d1c667bb8ce31c6616d73df8bad30f1608d85 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb42afe5-9b9a-4c5a-8ec8-a57a7e6d963d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_it-it.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Enterprise + x64 + 5892757788 + 376f08cee7d182ea690719159e169f4ace982b406be75b435d5b37aabecfd571 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a08729e6-e012-4ed5-9882-de3f435ee393/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + EnterpriseN + x64 + 5892757788 + 376f08cee7d182ea690719159e169f4ace982b406be75b435d5b37aabecfd571 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a08729e6-e012-4ed5-9882-de3f435ee393/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_fi-fi.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Enterprise + x64 + 5886015676 + 39a743b8ee8242680462b172dfb7f718e00f0bfd8811a81a0e718c42534d799c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/39ffc85c-88d8-49a9-8ae3-04c8b6d7d501/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + EnterpriseN + x64 + 5886015676 + 39a743b8ee8242680462b172dfb7f718e00f0bfd8811a81a0e718c42534d799c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/39ffc85c-88d8-49a9-8ae3-04c8b6d7d501/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sk-sk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Enterprise + x64 + 5892211612 + 27a6d098c40eb514e9e224e7abdc882b13c0360138e900cc38cd18f0aaf7aa72 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b28964ce-78fb-470c-a99d-a11b64b657ec/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + EnterpriseN + x64 + 5892211612 + 27a6d098c40eb514e9e224e7abdc882b13c0360138e900cc38cd18f0aaf7aa72 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b28964ce-78fb-470c-a99d-a11b64b657ec/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-pt.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Enterprise + x64 + 5890976583 + 9e46fcec51f7ee3ea0c3a2ff5aa50cdbac9ce4f209711bef700719e9e118cc43 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99d9713d-437f-45a1-982a-5fae273ea662/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + EnterpriseN + x64 + 5890976583 + 9e46fcec51f7ee3ea0c3a2ff5aa50cdbac9ce4f209711bef700719e9e118cc43 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99d9713d-437f-45a1-982a-5fae273ea662/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sl-si.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Enterprise + ARM64 + 5751984676 + 18eaa986b2676247e4e5cb1255f9440d97a3f8b85dfeaeef1b90451a8a6d7951 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f18fc400-dad4-4643-a3cc-81a5a9909813/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + EnterpriseN + ARM64 + 5751984676 + 18eaa986b2676247e4e5cb1255f9440d97a3f8b85dfeaeef1b90451a8a6d7951 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/f18fc400-dad4-4643-a3cc-81a5a9909813/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_uk-ua.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + en-us + English (United States) + Enterprise + x64 + 5990153106 + feae7e3539a4fc316ad54d5275e277916c691785ff8c3cfaa8c5ffc8001e5d58 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/be1c3580-a4a1-40b8-8cca-207c56feea84/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + en-us + English (United States) + EnterpriseN + x64 + 5990153106 + feae7e3539a4fc316ad54d5275e277916c691785ff8c3cfaa8c5ffc8001e5d58 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/be1c3580-a4a1-40b8-8cca-207c56feea84/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_en-us.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Enterprise + ARM64 + 5783103058 + 19d06f837d51928107ebad8fb1ce3e3dc4d2a5d227ba524799ff4de183a19763 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e8347113-6bb3-4b89-b615-45674668814a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EnterpriseN + ARM64 + 5783103058 + 19d06f837d51928107ebad8fb1ce3e3dc4d2a5d227ba524799ff4de183a19763 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e8347113-6bb3-4b89-b615-45674668814a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + es-es + Spanish (Spain) + Enterprise + x64 + 6006613552 + d10015afcc4e240a3b4b15786a499242cbe77bf525ae852a30a0f63e43196e5d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/29af74d8-6e7e-4f66-978e-d972836d0165/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + es-es + Spanish (Spain) + EnterpriseN + x64 + 6006613552 + d10015afcc4e240a3b4b15786a499242cbe77bf525ae852a30a0f63e43196e5d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/29af74d8-6e7e-4f66-978e-d972836d0165/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_es-es.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Enterprise + x64 + 5880387626 + 4a4b79f0f4f449dd0c657b4d71c232f0e7fe89b56556b6113f8907e0cff8b829 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ce1f5446-ed73-4c12-af34-9ee57098f154/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EnterpriseN + x64 + 5880387626 + 4a4b79f0f4f449dd0c657b4d71c232f0e7fe89b56556b6113f8907e0cff8b829 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ce1f5446-ed73-4c12-af34-9ee57098f154/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Enterprise + ARM64 + 5801844202 + 6a78b36ef2a97d161200837788e3d08d30a186d4709758e34e1548ccc11f2224 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ae7cd5f4-b756-41a1-8a9f-b68d22ab5259/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EnterpriseN + ARM64 + 5801844202 + 6a78b36ef2a97d161200837788e3d08d30a186d4709758e34e1548ccc11f2224 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ae7cd5f4-b756-41a1-8a9f-b68d22ab5259/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Enterprise + x64 + 5885625065 + 680112b7046481b4ba113f5f84c602873c5f1f16ee59bb872f122834892c3179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eb02aae9-6c61-4cdc-a40b-63663abe1e75/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + EnterpriseN + x64 + 5885625065 + 680112b7046481b4ba113f5f84c602873c5f1f16ee59bb872f122834892c3179 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eb02aae9-6c61-4cdc-a40b-63663abe1e75/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ro-ro.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Enterprise + x64 + 5849356277 + 5c85163c90fce5b157e85057b0aaa7119b17e9c7cea994fb043dfcd9ca578c08 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc7d8366-0c6d-46f6-8e50-e9a51b0ffdbc/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + EnterpriseN + x64 + 5849356277 + 5c85163c90fce5b157e85057b0aaa7119b17e9c7cea994fb043dfcd9ca578c08 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc7d8366-0c6d-46f6-8e50-e9a51b0ffdbc/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_et-ee.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + th-th + Thai (Thailand) + Enterprise + x64 + 5789616881 + 11f3dea771c170cccbc82db3440cec4eeefd313f7528ea75a5eaa2eff8e961a6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1db9a91f-a06e-4b40-b11e-d6f3c43c9643/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + th-th + Thai (Thailand) + EnterpriseN + x64 + 5789616881 + 11f3dea771c170cccbc82db3440cec4eeefd313f7528ea75a5eaa2eff8e961a6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1db9a91f-a06e-4b40-b11e-d6f3c43c9643/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_th-th.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Enterprise + x64 + 5851059845 + 5e5d8f999d2e1c623cde3ae9f384c44376c2c6064fc3ec38e7b93c7e151a5d1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd8ea9a0-1ada-4e7b-a2ea-73a74a708b0a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + EnterpriseN + x64 + 5851059845 + 5e5d8f999d2e1c623cde3ae9f384c44376c2c6064fc3ec38e7b93c7e151a5d1b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dd8ea9a0-1ada-4e7b-a2ea-73a74a708b0a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_ar-sa.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Enterprise + ARM64 + 5734425739 + c7446ea9977af02375576257228499f1d64a6bcbcaf1626cda219d932595afab + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/22c054a9-0072-4947-844f-03244bcb957f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + EnterpriseN + ARM64 + 5734425739 + c7446ea9977af02375576257228499f1d64a6bcbcaf1626cda219d932595afab + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/22c054a9-0072-4947-844f-03244bcb957f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_sv-se.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + fr-fr + French (France) + Enterprise + ARM64 + 5862841171 + 4fd712f547bb7fe582a583bbbdf13cd6dddd8cf88a928c6c0a6cd9c36bd5ae2d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3892a547-3f4a-4567-b425-04b10761ec9c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + fr-fr + French (France) + EnterpriseN + ARM64 + 5862841171 + 4fd712f547bb7fe582a583bbbdf13cd6dddd8cf88a928c6c0a6cd9c36bd5ae2d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3892a547-3f4a-4567-b425-04b10761ec9c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_fr-fr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Enterprise + ARM64 + 5789486504 + 74858c13c42905083b962b4a2634cfdc7003f8796499d508251aab3380a3628a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d5c660bd-3f74-4d30-bb77-41c8b8275e61/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EnterpriseN + ARM64 + 5789486504 + 74858c13c42905083b962b4a2634cfdc7003f8796499d508251aab3380a3628a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d5c660bd-3f74-4d30-bb77-41c8b8275e61/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_A64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + de-de + German (Germany) + Enterprise + x64 + 6032374575 + edeedfe44624c8d009c6df4b1c5872533d808a936ae2159dfaae1bd9b43ec370 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b454a2eb-f021-40a4-acb9-fb34bf0a230e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + de-de + German (Germany) + EnterpriseN + x64 + 6032374575 + edeedfe44624c8d009c6df4b1c5872533d808a936ae2159dfaae1bd9b43ec370 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b454a2eb-f021-40a4-acb9-fb34bf0a230e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_de-de.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Enterprise + x64 + 5891389441 + 31eaaa798319a23b98e0473e443cc56cde32f9a6f63daff1cac144fb65503e7f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ccc8825e-c133-4c58-853e-84e078c82899/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + EnterpriseN + x64 + 5891389441 + 31eaaa798319a23b98e0473e443cc56cde32f9a6f63daff1cac144fb65503e7f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ccc8825e-c133-4c58-853e-84e078c82899/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_bg-bg.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Enterprise + x64 + 5902371735 + 9cf648ec88b87325fb342133337e8dae41eb23c8220f388cd206a80171ee7d7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2accb1a2-9db1-4bda-8ab2-b75cd4d64ad3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + EnterpriseN + x64 + 5902371735 + 9cf648ec88b87325fb342133337e8dae41eb23c8220f388cd206a80171ee7d7c + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2accb1a2-9db1-4bda-8ab2-b75cd4d64ad3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pl-pl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Enterprise + x64 + 6049478030 + cbe4d910d5d6ce358069cbec33fca807bbb48d245b06981829e124e3b5c3f739 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6c418ec7-253f-4834-a2f6-97a215119f0c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + EnterpriseN + x64 + 6049478030 + cbe4d910d5d6ce358069cbec33fca807bbb48d245b06981829e124e3b5c3f739 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/6c418ec7-253f-4834-a2f6-97a215119f0c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_zh-tw.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Enterprise + x64 + 5899358399 + e04ec1571665c79fca726a28a2ab8500bfd0793a7031754dc58527e372fb26f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3da0409f-e881-48e6-9882-fb9826dc7bc5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + el-gr + Greek (Greece) + EnterpriseN + x64 + 5899358399 + e04ec1571665c79fca726a28a2ab8500bfd0793a7031754dc58527e372fb26f1 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3da0409f-e881-48e6-9882-fb9826dc7bc5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_el-gr.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Enterprise + x64 + 5917957130 + ab6c798b46e8841837589be3dcfad504e599680bd9c1ea1b41fbe7f97368559b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c53b46e5-e727-444b-9e1a-2b55588e7926/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + EnterpriseN + x64 + 5917957130 + ab6c798b46e8841837589be3dcfad504e599680bd9c1ea1b41fbe7f97368559b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c53b46e5-e727-444b-9e1a-2b55588e7926/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_da-dk.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Enterprise + x64 + 5850090289 + 776b434345e451a261d38361af5f5f5ab2d7fdfb7d4a5be77a89e209d33f72ee + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/747df934-6458-4522-80cb-0ffb64026dbd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + EnterpriseN + x64 + 5850090289 + 776b434345e451a261d38361af5f5f5ab2d7fdfb7d4a5be77a89e209d33f72ee + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/747df934-6458-4522-80cb-0ffb64026dbd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_pt-br.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Enterprise + x64 + 5907540453 + 4d5b1f2daf793f8bc5e986d17cf120cf929f4694ded5bb989087a25d32ec01b6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4841b06c-9a95-411a-9e3e-4c4565b1381f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + EnterpriseN + x64 + 5907540453 + 4d5b1f2daf793f8bc5e986d17cf120cf929f4694ded5bb989087a25d32ec01b6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4841b06c-9a95-411a-9e3e-4c4565b1381f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTBUSINESS_VOL_x64FRE_nl-nl.esd + + %ARCH_64% + %ENTERPRISE_N% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedCountrySpecific + x64 + 5919271311 + eb56c70c5113417a1ef8439159bd12be4f1c244e6705ae6f88b6f9430a322299 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/48bd08fb-f088-44e5-9cb2-aea7ac300c74/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCHINA_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %BASE_CHINA% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Ultimate + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudent + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + UltimateN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudentN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + Starter + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasic + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremium + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnected + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + StarterN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasicN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremiumN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedN + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedSingleLanguage + ARM64 + 5855012048 + e20d32ad4655a062892073136184ba87504612295798b2958bb7476b8cdc0653 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9931660b-b80c-4544-9e34-cf9eff03485e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Ultimate + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudent + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + UltimateN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudentN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Starter + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasic + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremium + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnected + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + StarterN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasicN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremiumN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedN + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedSingleLanguage + x64 + 5853031111 + d771fe29ecf97685ca2e7e17b45f564c874f912c3efc25fa683e90d543e6e12e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d0c81fd2-deed-4ed6-a7b2-ca6ffce52bb5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Ultimate + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudent + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + UltimateN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudentN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Starter + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasic + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremium + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnected + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + StarterN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasicN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremiumN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedN + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedSingleLanguage + ARM64 + 5810880526 + af4dbc14d02c0fe5052d638e420e42481819d1d9e653c4e2f7b037778b7a95c8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/2edd5b4a-e2c0-480e-b97b-46eda1fe273d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Ultimate + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudent + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + UltimateN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudentN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + Starter + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasic + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremium + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnected + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + StarterN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasicN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremiumN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedN + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedSingleLanguage + ARM64 + 5801287685 + 5061383d85db58e15d67b9aa113700185b70d939be0438ce25b3ba72545a7751 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d11547a8-4680-49cb-aee8-aef41ef9303c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Ultimate + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudent + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + UltimateN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudentN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + Starter + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasic + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremium + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnected + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + StarterN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasicN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremiumN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedN + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedSingleLanguage + ARM64 + 5910824962 + 242287f80d4b72de4d12f65f8c68a6d9eaa2e787443ce9fba42bda6f7fe44ec6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeadd6bd-5a51-4479-bf53-68fff54f3a6a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Ultimate + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudent + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + UltimateN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudentN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Starter + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasic + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremium + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnected + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + StarterN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasicN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremiumN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedN + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedSingleLanguage + ARM64 + 5758479910 + 990c37272fc2a43dc973428c1c4b25f7b612a15138874b2d870d2016ccc0aac2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/ac5319f5-665f-4d44-a6f9-394a1449b1d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Ultimate + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudent + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + UltimateN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudentN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + Starter + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasic + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremium + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnected + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + StarterN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasicN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremiumN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedN + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedSingleLanguage + ARM64 + 5824888006 + 5e2c50cfaebcef55dc04be3fe1e811f96a1f6e54d0103e677e9f3181abe23d40 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc42f14c-6e21-4fa8-979b-6782666fad86/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Ultimate + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudent + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + UltimateN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudentN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Starter + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasic + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremium + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnected + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + StarterN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasicN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremiumN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedN + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedSingleLanguage + ARM64 + 6047021671 + 4452667d02b5bdcf34ba08c3da4516ae0c59644cc329f95ab2bfdc83f2bee6f9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1978ec44-4eb7-4012-8b3a-bea692509bc4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Ultimate + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudent + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + UltimateN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudentN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Starter + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasic + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremium + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnected + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + StarterN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasicN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremiumN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedN + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedSingleLanguage + x64 + 5927505410 + 8f0db96fefea6c56870da41594ce19cbf74aca4e8eb083df8faa40f7d9ca6c27 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c4473d6a-7504-4969-825a-77b6cec99762/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Ultimate + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudent + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + UltimateN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudentN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Starter + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasic + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremium + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnected + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + StarterN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasicN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremiumN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedN + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedSingleLanguage + x64 + 5908186267 + 8b37d91d4227cf94967762ed6de2aa6c20f1d7e1ab76b351249c791929a84a16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d332bf90-a2b9-4e05-9ca2-ca0a7512b16f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Ultimate + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudent + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + UltimateN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + ProfessionalStudentN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + Starter + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasic + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremium + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnected + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + StarterN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomeBasicN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + HomePremiumN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedN + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + sr-latn-rs + Serbian (Latin, Serbia) + CoreConnectedSingleLanguage + ARM64 + 5809359205 + bce22aedcecbc20a6e5bfa2e70633201567dc6bed303e581226296c3bc1d1d4f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/664ec65f-cdd8-4ae4-bf64-93ad2469b4da/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sr-latn-rs.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Ultimate + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudent + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + UltimateN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudentN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Starter + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasic + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremium + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnected + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + StarterN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasicN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremiumN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedN + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedSingleLanguage + x64 + 5926434655 + 9fe4b62c9ce87d602b23088f611645f510e77d19fc6c56fbf6caacca1443dd13 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3bbf7a96-49bb-41bd-b08a-18fe235d822b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Ultimate + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudent + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + UltimateN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + ProfessionalStudentN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + Starter + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasic + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremium + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnected + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + StarterN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomeBasicN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + HomePremiumN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedN + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + ko-kr + Korean (Korea) + CoreConnectedSingleLanguage + ARM64 + 5883133357 + 73343cd84eb7fb3774964345a943731456c0156e0ee06d041d387cbb13f4a13f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fede2833-1ebf-4039-b146-f6d8d6cf78b4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ko-kr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Ultimate + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudent + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + UltimateN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudentN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Starter + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasic + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremium + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnected + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + StarterN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasicN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremiumN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedN + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedSingleLanguage + x64 + 5943429552 + 487d903b0f63188356930951ad0d35e63929fb72c2ad7ebbeed6334480f6fa06 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/675e6ee3-9273-4371-bbc9-4093a6d008b6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Ultimate + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudent + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + UltimateN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudentN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + Starter + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasic + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomePremium + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnected + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + StarterN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasicN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + HomePremiumN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedN + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedSingleLanguage + x64 + 6016818978 + 62cb8463160f6d0aa9a689dbf316efd44849edd83edf7444694eb3ff88112693 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/41945932-73ff-4622-9f05-2d0c20981967/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Ultimate + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudent + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + UltimateN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudentN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Starter + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasic + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremium + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnected + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + StarterN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasicN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremiumN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedN + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedSingleLanguage + ARM64 + 5824196368 + 3728cc5a3f6833415017c1abe91c2b2a2d64c6ecfbd121cdb09914fa5070c4b3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/28bb0517-b278-4900-a11a-8e50649834e1/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Ultimate + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudent + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + UltimateN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudentN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Starter + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasic + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremium + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnected + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + StarterN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasicN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremiumN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedN + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedSingleLanguage + x64 + 5897907222 + adad1dd7685cafb9b3389ee7eb47aef8371b474fca8fb1373b6d0422931b8257 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/127a9d3b-4bd6-4813-ae0c-27ed12d759ac/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Ultimate + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudent + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + UltimateN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudentN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + Starter + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasic + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremium + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnected + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + StarterN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasicN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremiumN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedN + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedSingleLanguage + x64 + 6181063740 + be323766ca648388d80c9da16aff48731186fb550329b427d0ae045523e1d51e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0519c643-d624-4b5c-ad68-46ae28509922/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Ultimate + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudent + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + UltimateN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + ProfessionalStudentN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + Starter + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasic + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremium + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnected + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + StarterN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomeBasicN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + HomePremiumN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedN + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + zh-tw + Chinese (Taiwan) + CoreConnectedSingleLanguage + x64 + 6095057606 + 1d5c3a5ed614f0419fed324ad9b6334b46380fedf982f7cc75cce4280788c8fd + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b16874cb-e67d-44f2-ab3b-2aadd8e6891e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_zh-tw.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Ultimate + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudent + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + UltimateN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudentN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Starter + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasic + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremium + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnected + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + StarterN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasicN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremiumN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedN + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedSingleLanguage + ARM64 + 5853784170 + ca82d9d76575361847bfbe4a3002378d99ab85b3b459fff8fd62cd911b739ce8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1aeb2c4c-1ae5-4b88-b635-08b4cef2f6a6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Ultimate + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudent + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + UltimateN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + ProfessionalStudentN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + Starter + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasic + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremium + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnected + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + StarterN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomeBasicN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + HomePremiumN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedN + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + et-ee + Estonian (Estonia) + CoreConnectedSingleLanguage + ARM64 + 5746845492 + 241cba4b0b269b8fc00e70f3515dca13c5169a46ded73cd8b1a01d4309e952ad + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/426878b6-9f56-4f03-95b4-7f8083c2faaa/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_et-ee.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Ultimate + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudent + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + UltimateN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudentN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Starter + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasic + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremium + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnected + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + StarterN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasicN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremiumN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedN + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedSingleLanguage + ARM64 + 5801355855 + 2ff3c1229362dacf86b5578dc67e1a15e26a4b1136ec06c95f8d2a55fdec197d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc1c86ed-f32d-428e-b9c1-83ca58a20e67/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Ultimate + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudent + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + UltimateN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudentN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + Starter + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasic + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremium + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnected + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + StarterN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasicN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremiumN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedN + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedSingleLanguage + x64 + 5877108415 + 46ba3805e85c0e9badf2e8fd6ceb6b9d815495ddb4f8f9fce622e8aa227a6290 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fbe9e634-1389-418b-8680-a2a717861df3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Ultimate + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudent + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + UltimateN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudentN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Starter + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasic + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremium + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnected + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + StarterN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasicN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremiumN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedN + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedSingleLanguage + x64 + 5921591500 + ef8e37df35fcf8bcf826699013536de2a6047c9d8b7c51f61ebfbcd7c08b05a3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/cf7ff839-3a3c-4a62-a30e-b762666475d2/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Ultimate + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudent + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + UltimateN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + ProfessionalStudentN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + Starter + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasic + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremium + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnected + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + StarterN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomeBasicN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + HomePremiumN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedN + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + fi-fi + Finnish (Finland) + CoreConnectedSingleLanguage + x64 + 5937530642 + 898359c4109aa850326176e865fc62f9a44c150c99dac4e07c2b23a75bccee73 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68100f51-a7e0-4998-ad55-d4e894bd745b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fi-fi.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Ultimate + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudent + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + UltimateN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudentN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Starter + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasic + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremium + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnected + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + StarterN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasicN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremiumN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedN + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedSingleLanguage + ARM64 + 5834056216 + 92798755fae8ca3307fdfb781b54977aac43ea7994d096d7c1cae3e24e09126d + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4b49e9f8-0df9-4864-b5e0-2ea296257c5e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Ultimate + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudent + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + UltimateN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + ProfessionalStudentN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + Starter + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasic + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremium + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnected + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + StarterN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomeBasicN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + HomePremiumN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedN + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + en-gb + English (United Kingdom) + CoreConnectedSingleLanguage + x64 + 6053846136 + 943feb8cf7440c980ef9e74c8852485c8fc823bc7dfbc142e307f17316d1a8e7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/73b6faf3-c050-4902-bed6-25a6cea6fd6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Ultimate + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudent + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + UltimateN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + ProfessionalStudentN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + Starter + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasic + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremium + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnected + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + StarterN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomeBasicN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + HomePremiumN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedN + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + pt-pt + Portuguese (Portugal) + CoreConnectedSingleLanguage + x64 + 5982784350 + af3b7ff547181b3e3e90d45f68b1e762840744bdc98feea9db531aa62663667f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aee33855-1ba2-4339-9c79-940c678a860b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-pt.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Ultimate + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudent + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + UltimateN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudentN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Starter + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasic + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremium + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnected + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + StarterN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasicN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremiumN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedN + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedSingleLanguage + ARM64 + 5889939875 + fabb7865da440d2240e1379105b394322459c136363e1a34f515aa0aed7c19f2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7324c095-cef3-4248-b490-087a688c6338/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Ultimate + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudent + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + UltimateN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudentN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + Starter + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasic + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremium + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnected + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + StarterN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasicN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremiumN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedN + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedSingleLanguage + ARM64 + 5932303482 + f6f5bc0731d7fc7295fb22e17706b8ebfad665a37aa957ef76e643b7202f246f + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/dfde6cea-b52d-45c3-a934-e9160b122eb7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Ultimate + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudent + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + UltimateN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudentN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Starter + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasic + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremium + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnected + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + StarterN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasicN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremiumN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedN + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedSingleLanguage + x64 + 5870241667 + 0daff00646be9047da7d6eda1bf088421daad36a58d981486eeb5f481742f9a2 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/d8027ea8-ec1d-411d-bd8b-489f6aa1e410/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Ultimate + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudent + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + UltimateN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudentN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Starter + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasic + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremium + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnected + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + StarterN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasicN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremiumN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedN + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedSingleLanguage + x64 + 5870141936 + f2edbe908ddb98516a5873807f83e5d66d0b8f564839d1b7fdc003985a63eb83 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52d0ba5d-0680-426c-acf8-1d54ab108bea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Ultimate + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudent + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + UltimateN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudentN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + Starter + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasic + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomePremium + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnected + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + StarterN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasicN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + HomePremiumN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedN + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedSingleLanguage + ARM64 + 5908220240 + 3c5a0b18d0d46efd04cab2daf62d672e4b660cec959de8b16fe7bcb217506f4e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/13ac18e4-a256-4234-944d-c2b0b4c50940/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Ultimate + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudent + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + UltimateN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudentN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Starter + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasic + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremium + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnected + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + StarterN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasicN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremiumN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedN + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedSingleLanguage + x64 + 6103922377 + 68ffafb1b3cb177a0ed37ca1879420a4a97ae69ffe7f083252db277ed9182363 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/392a5144-4ac0-4cd3-ba13-558147200888/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Ultimate + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudent + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + UltimateN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudentN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Starter + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasic + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremium + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnected + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + StarterN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasicN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremiumN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedN + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedSingleLanguage + ARM64 + 5765851321 + d1730da3ddd3f185c3f4429e4386cfda3ccd33933c1b4724a1833a63ec6e9958 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/a1e00974-6c56-4ece-ab40-0178d05a8eed/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Ultimate + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudent + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + UltimateN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + ProfessionalStudentN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + Starter + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasic + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremium + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnected + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + StarterN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomeBasicN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + HomePremiumN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedN + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + ja-jp + Japanese (Japan) + CoreConnectedSingleLanguage + ARM64 + 6039228768 + 5438173530614d669b7c00cf2d81e1c576ebdce0f1ca12df1d1a72446674babe + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/4741749f-3e46-4c82-9eaf-daf58d4703de/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ja-jp.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Ultimate + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudent + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + UltimateN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + ProfessionalStudentN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + Starter + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasic + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremium + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnected + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + StarterN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomeBasicN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + HomePremiumN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedN + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + hr-hr + Croatian (Croatia) + CoreConnectedSingleLanguage + x64 + 5941016599 + 7f9c5b97efdc8d85d1387b1f471028c369b3d0efafbc2fe49d619c3f72291f8e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/9f326a20-d409-47e6-80b7-b404d9a1ad5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_hr-hr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Ultimate + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudent + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + UltimateN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudentN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Starter + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasic + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremium + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnected + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + StarterN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasicN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremiumN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedN + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedSingleLanguage + x64 + 5922079815 + 5534a2193a038447b4fa19de698d7836cf60ceb34a4759e475f429511b3d13a4 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1e77daaa-9af3-4116-b123-56c521e76fd9/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Ultimate + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudent + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + UltimateN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + ProfessionalStudentN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + Starter + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasic + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremium + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnected + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + StarterN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomeBasicN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + HomePremiumN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedN + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + bg-bg + Bulgarian (Bulgaria) + CoreConnectedSingleLanguage + x64 + 5938069252 + 0433535564e4b1ec82ef45111b5575a8537aa8117ad3ab68afd3d4081ff13cb0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe8c9cce-9fff-473d-b846-2a81556ad831/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_bg-bg.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Ultimate + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudent + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + UltimateN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + ProfessionalStudentN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + Starter + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasic + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremium + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnected + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + StarterN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomeBasicN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + HomePremiumN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedN + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + da-dk + Danish (Denmark) + CoreConnectedSingleLanguage + x64 + 5992210784 + f815edf346a502771d873cde97c533509a0627e109c006a236e9ada6ab26616e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/16251e36-f93c-431f-9aeb-5331a10565cd/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_da-dk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Ultimate + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudent + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + UltimateN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudentN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Starter + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasic + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremium + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnected + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + StarterN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasicN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremiumN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedN + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedSingleLanguage + x64 + 5949398938 + f6fefd46a1de8ae448a85d5914615b0524d36ed5eebbbb157a11dec867f96e19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/68b17ade-0d58-4348-a0a5-833ded7f30d5/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Ultimate + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudent + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + UltimateN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudentN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Starter + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasic + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremium + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnected + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + StarterN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasicN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremiumN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedN + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedSingleLanguage + ARM64 + 5781393666 + 518dfcdf48334595f077f29f6a3d670be11d7db0d6768b650e2a8d7db6e2c214 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb08fa00-3d2e-4d08-a6b2-2549d42dbdb3/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Ultimate + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudent + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + UltimateN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + ProfessionalStudentN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + Starter + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasic + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremium + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnected + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + StarterN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomeBasicN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + HomePremiumN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedN + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + pt-br + Portuguese (Brazil) + CoreConnectedSingleLanguage + ARM64 + 5852849627 + fad17693bf973a41bf62d4c5c08978ffafb9087c12bfd6498e28cb1af6f0844e + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bb953308-838c-484c-b5ad-074a57383f3a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_pt-br.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Ultimate + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudent + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + UltimateN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + ProfessionalStudentN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + Starter + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasic + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremium + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnected + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + StarterN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomeBasicN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + HomePremiumN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedN + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + hu-hu + Hungarian (Hungary) + CoreConnectedSingleLanguage + ARM64 + 5804074745 + 94b4c58feb7185ab34fdbd46840145b6b2106b99e4fa7e8de1db0e473d6daf44 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fb78a30e-4237-4cb0-82e9-60d9880ff731/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_hu-hu.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Ultimate + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudent + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + UltimateN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + ProfessionalStudentN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + Starter + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasic + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremium + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnected + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + StarterN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomeBasicN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + HomePremiumN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedN + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + ro-ro + Romanian (Romania) + CoreConnectedSingleLanguage + ARM64 + 5747010285 + 32ed82373d48e7429f152ba74f98f071ebb3a8acac6edf25619bcc6070a5b654 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8dbff565-3d7b-45f1-9ca7-23ecf956a0b7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ro-ro.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Ultimate + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudent + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + UltimateN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudentN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + Starter + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasic + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremium + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnected + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + StarterN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasicN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremiumN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedN + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedSingleLanguage + x64 + 5917056161 + e8f7df33ae53035a2471b62f3b46e2e9f5a56c3fcc72014fe6e1297ffd7da969 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/1b579fac-d080-4c5f-b2ec-bee2326e2d09/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Ultimate + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudent + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + UltimateN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + ProfessionalStudentN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + Starter + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasic + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremium + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnected + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + StarterN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomeBasicN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + HomePremiumN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedN + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + tr-tr + Turkish (Türkiye) + CoreConnectedSingleLanguage + ARM64 + 5838717802 + ca5faf3c5a6b8288c17a52f1f8f69e466dc6e55bb134b14577b1b3de3a5f765b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/733ce9f8-d46c-4846-bb66-4ba04dcff81f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_tr-tr.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Ultimate + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudent + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + UltimateN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + ProfessionalStudentN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + Starter + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasic + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremium + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnected + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + StarterN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomeBasicN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + HomePremiumN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedN + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + th-th + Thai (Thailand) + CoreConnectedSingleLanguage + ARM64 + 5840463471 + e692e8afc844b8d13f1644e5987ff7452408cf22bc18f23957da29b61510befb + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/464b8aa6-ab1a-4a8c-b8a6-49ddd65d8433/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_th-th.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Ultimate + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudent + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + UltimateN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudentN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Starter + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasic + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremium + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnected + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + StarterN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasicN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremiumN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedN + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedSingleLanguage + x64 + 5918240798 + ce9de714c47b59d357bb4162b7771d397232b67244e1b212e9fe177157de41e5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7a34a51e-e1cc-47b3-bf3f-01c414cc080e/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Ultimate + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudent + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + UltimateN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudentN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + Starter + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomeBasic + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomePremium + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreConnected + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + StarterN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomeBasicN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + HomePremiumN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreConnectedN + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + en-us + English (United States) + CoreConnectedSingleLanguage + ARM64 + 5909009154 + c50cfd50eb7b5ece9648fa2588767dc8963117cab096a194c2abc52ac700cde8 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b579d2a0-9173-4be3-a61f-e10643e3464b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Ultimate + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudent + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + UltimateN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + ProfessionalStudentN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + Starter + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasic + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremium + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnected + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + StarterN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomeBasicN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + HomePremiumN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedN + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + cs-cz + Czech (Czechia) + CoreConnectedSingleLanguage + ARM64 + 5791777489 + 301051b1bfea4c9c985143ec1f80d7f6d663bbedfc57ec164fdca4d8da7ff8f5 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fdd5e539-c5cb-4fea-a901-5889002f29e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_cs-cz.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Ultimate + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudent + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + UltimateN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + ProfessionalStudentN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + Starter + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasic + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomePremium + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnected + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + StarterN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomeBasicN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + HomePremiumN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedN + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + it-it + Italian (Italy) + CoreConnectedSingleLanguage + ARM64 + 5830491748 + bacc788f78a65e44514c949ec9bdced65fc05e2601800ae665c944cce72bceb3 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/fe14b379-9cd1-4769-b7c8-a20e849abc5d/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_it-it.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Ultimate + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudent + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + UltimateN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + ProfessionalStudentN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + Starter + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasic + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremium + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnected + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + StarterN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomeBasicN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + HomePremiumN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedN + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + fr-ca + French (Canada) + CoreConnectedSingleLanguage + x64 + 5932604628 + 6eb55b60f0f8064f8dc3656e3658e3f04bdf925328f0b0bce1277602b7cb0b20 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/388cd5a0-4c82-4f93-bc50-322af7b48566/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-ca.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Ultimate + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudent + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + UltimateN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + ProfessionalStudentN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + Starter + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasic + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremium + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnected + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + StarterN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomeBasicN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + HomePremiumN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedN + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + he-il + Hebrew (Israel) + CoreConnectedSingleLanguage + ARM64 + 5875905528 + 798a11f9898c737edc08686b991227ca1a1fce659e31ce6e2abfbaedd4af06fc + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/b36bf61f-d371-47fa-b2db-e8a581790fa4/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_he-il.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Ultimate + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudent + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + UltimateN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudentN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Starter + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasic + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremium + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnected + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + StarterN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasicN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremiumN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedN + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedSingleLanguage + ARM64 + 5741365558 + e4c8a71ed3218bfcf2fa0952bdd72d134adc10a7b6e03b2435454468bd854044 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e27e1240-2ab5-4842-8490-a9f11c943b30/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Ultimate + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudent + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + UltimateN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + ProfessionalStudentN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + Starter + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasic + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremium + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnected + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + StarterN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomeBasicN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + HomePremiumN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedN + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + ar-sa + Arabic (Saudi Arabia) + CoreConnectedSingleLanguage + x64 + 5885054800 + 52b329724896f5430867d4672001530c339bf962b77a08ea0bf019cf0630f247 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/52775854-6b0d-4c49-95fb-ac2d7646a254/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_ar-sa.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Ultimate + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudent + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + UltimateN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + ProfessionalStudentN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + Starter + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasic + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremium + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnected + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + StarterN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomeBasicN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + HomePremiumN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedN + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + nl-nl + Dutch (Netherlands) + CoreConnectedSingleLanguage + ARM64 + 5800706165 + fec63301b67d7ef821b29bf9cf6b9ef0b05daec78be17b104c32ab8580588959 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/191c9037-3b30-42ed-9f5e-a2de2610387b/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nl-nl.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Ultimate + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudent + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + UltimateN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + ProfessionalStudentN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + Starter + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasic + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremium + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnected + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + StarterN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomeBasicN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + HomePremiumN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedN + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + es-mx + Spanish (Mexico) + CoreConnectedSingleLanguage + x64 + 5900296665 + a9868781add52266b43ee98a46111e66ffd11fe5887c303df87884b72821a171 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10325575-0bda-44c0-8582-8c578c1dfe47/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-mx.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Ultimate + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudent + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + UltimateN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + ProfessionalStudentN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + Starter + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasic + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremium + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnected + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + StarterN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomeBasicN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + HomePremiumN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedN + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + pl-pl + Polish (Poland) + CoreConnectedSingleLanguage + x64 + 5974243083 + b7d77abaa44033b854827ad317a61172409874edeac426c700741e40fe79dfc0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/428c669f-716c-47d5-9500-0129fca4f2d0/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_pl-pl.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Ultimate + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudent + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + UltimateN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + ProfessionalStudentN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + Starter + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasic + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomePremium + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnected + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + StarterN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomeBasicN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + HomePremiumN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedN + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + fr-fr + French (France) + CoreConnectedSingleLanguage + x64 + 6061276163 + 152a98bdefb09b62211d6a883345e45c06f0d3cad051f0b7be79d91b33d28320 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/99af3b2c-8fb9-4aed-a832-676287ca1c72/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_fr-fr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Ultimate + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudent + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + UltimateN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + ProfessionalStudentN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + Starter + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasic + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremium + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnected + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + StarterN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomeBasicN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + HomePremiumN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedN + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + es-es + Spanish (Spain) + CoreConnectedSingleLanguage + x64 + 6090041465 + f495e0326b8f073a5161e5837766dcb554479dc29b4ca1114353aa23015702e0 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e4af7bc6-4ed7-4dd4-9415-2736ebbed52f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_es-es.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Ultimate + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudent + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + UltimateN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + ProfessionalStudentN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + Starter + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasic + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremium + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnected + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + StarterN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomeBasicN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + HomePremiumN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedN + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + el-gr + Greek (Greece) + CoreConnectedSingleLanguage + x64 + 5964796261 + 6f33fd0c44da540add1d42e35441f07ad18a2f3ce8eab33363af76801f6a9c4a + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/27f636c9-5a48-47a8-9dc6-a04ef92b1339/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_el-gr.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Ultimate + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudent + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + UltimateN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudentN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Starter + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasic + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremium + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnected + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + StarterN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasicN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremiumN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedN + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedSingleLanguage + ARM64 + 5782249244 + c16d811324dc1991c4db6ac806ec8dd09a10b9d4b5c950aa658c9012c3784d17 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/e6b8c617-6b61-4cbe-85cb-81e2e83fbd78/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Ultimate + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudent + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + UltimateN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudentN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Starter + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasic + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremium + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnected + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + StarterN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasicN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremiumN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedN + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedSingleLanguage + x64 + 5936057890 + 4bd9b9f51fab7135938ed7e6c70f67a70f4246c80091240325238f882a593d36 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/db9b69f9-d4f8-40c2-83a5-97d26f946da6/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Ultimate + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudent + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + UltimateN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + ProfessionalStudentN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + Starter + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasic + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremium + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnected + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + StarterN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomeBasicN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + HomePremiumN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedN + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + sl-si + Slovenian (Slovenia) + CoreConnectedSingleLanguage + x64 + 5918823066 + f2f892ddfa22f4943ec27f4c494b646a356f0d6932b9e2234f670196664821f7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/eaa7a5b1-1e1f-4738-aea2-d3e683900fea/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sl-si.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Ultimate + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudent + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + UltimateN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + ProfessionalStudentN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + Starter + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasic + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremium + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnected + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + StarterN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomeBasicN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + HomePremiumN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedN + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + lt-lt + Lithuanian (Lithuania) + CoreConnectedSingleLanguage + ARM64 + 5741089625 + 9d2ed87d416dbf40e31fbe9b0dc675f9a36fa5ec0754f941dd69e0553a02ed71 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/acd2cd5f-5294-4691-9097-9230b4da8876/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_lt-lt.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Ultimate + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudent + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + UltimateN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudentN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + Starter + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomeBasic + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomePremium + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreConnected + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + StarterN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomeBasicN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + HomePremiumN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedN + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedSingleLanguage + ARM64 + 5897091648 + fa5d810e6a37f2bce5b2bf4a3e220d0166cc2ac1fe7293320cccd4c8ee6d9a19 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/aeb41e21-b72b-4a1a-8bee-db2a034c3c59/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Ultimate + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudent + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + UltimateN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + ProfessionalStudentN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + Starter + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasic + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremium + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnected + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + StarterN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomeBasicN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + HomePremiumN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedN + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + nb-no + Norwegian Bokmål (Norway) + CoreConnectedSingleLanguage + ARM64 + 5786317560 + fc1a4b932ce86d0f4d10c5e8c42e0074a649611723cd029a2a36c7342ed7aa18 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/10da6502-7db2-4eb7-84a8-51e195096578/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_nb-no.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Ultimate + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudent + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + UltimateN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + ProfessionalStudentN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + Starter + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasic + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremium + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnected + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + StarterN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomeBasicN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + HomePremiumN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedN + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + sv-se + Swedish (Sweden) + CoreConnectedSingleLanguage + x64 + 5955864006 + daf0ad984850e1a100e73c85633f449c003128b4f0988f8f2d9f527c735c106b + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/3d7b40a9-3edd-4ba1-9b76-18a74aaf7d4f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sv-se.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Ultimate + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudent + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + UltimateN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + ProfessionalStudentN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + Starter + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasic + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremium + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnected + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + StarterN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomeBasicN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + HomePremiumN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedN + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + ru-ru + Russian (Russia) + CoreConnectedSingleLanguage + ARM64 + 5891926400 + f0d66cb9308f1f37eee411f322d49341953b996ff1426ff4bee407e347a13cd7 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c2ed69b7-536a-4996-9d01-309d6a5d4a82/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_ru-ru.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Ultimate + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudent + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + UltimateN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + ProfessionalStudentN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + Starter + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasic + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremium + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnected + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + StarterN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomeBasicN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + HomePremiumN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedN + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + uk-ua + Ukrainian (Ukraine) + CoreConnectedSingleLanguage + ARM64 + 5820550618 + 681cd92386645dd0836169998f2565bb44731009facfe8a4853129215d97ca10 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0178e763-3578-4241-9114-91c7ccc389e7/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_uk-ua.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Ultimate + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudent + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + UltimateN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + ProfessionalStudentN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + Starter + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomeBasic + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomePremium + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreConnected + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + StarterN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomeBasicN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + HomePremiumN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedN + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + de-de + German (Germany) + CoreConnectedSingleLanguage + x64 + 6069450687 + 03a8c9cab6bd34f11217dc76e9d3631d6f52b37608aca10a9bbc784b8a2146b9 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/c1c5e31e-2d72-4095-9ccf-a205fc13af6f/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_de-de.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Ultimate + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudent + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + UltimateN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + ProfessionalStudentN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + Starter + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasic + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremium + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnected + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + StarterN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomeBasicN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + HomePremiumN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedN + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + zh-cn + Chinese (China) + CoreConnectedSingleLanguage + ARM64 + 6110968954 + 0b35465e018f821919edf64b58c742e656c75bb6d987a9f6c915fedd6355da16 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/7f77598c-37c4-4efe-b2b0-2adcc690873a/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_A64FRE_zh-cn.esd + + %ARCH_64% + %CLIENT% + True + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Ultimate + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudent + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + UltimateN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + ProfessionalStudentN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + Starter + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasic + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremium + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnected + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + StarterN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomeBasicN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + HomePremiumN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedN + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + lv-lv + Latvian (Latvia) + CoreConnectedSingleLanguage + x64 + 5907325143 + 52332a14aa2090d1cc64557444aa9a97e40dc0d27fd1ba6d76958ee6901c3745 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8669956e-d813-4439-8318-9f5281cf1986/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_lv-lv.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Ultimate + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudent + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + UltimateN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + ProfessionalStudentN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + Starter + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasic + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremium + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnected + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + StarterN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomeBasicN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + HomePremiumN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedN + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + sk-sk + Slovak (Slovakia) + CoreConnectedSingleLanguage + x64 + 5918486834 + 6b47bf784c90b9e445c6f50e915b7b8621d9316934fcb216274c6b9f28b48df6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/bc06728f-d16c-4882-9988-4be14c41f779/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_sk-sk.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Ultimate + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudent + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + UltimateN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + ProfessionalStudentN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + Starter + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomeBasic + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomePremium + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreConnected + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + StarterN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomeBasicN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + HomePremiumN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreConnectedN + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + 26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + en-us + English (United States) + CoreConnectedSingleLanguage + x64 + 6050277882 + 8606d3cc65277ec5ecaf83d783a28794cfb145934f9606f6c1dbebd9d4f9f0f6 + http://dl.delivery.mp.microsoft.com/filestreamingservice/files/8b43810f-286e-4ed3-8066-2188118c9a5c/26200.9168.260809-0632.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + + %ARCH_64% + %CLIENT% + False + + + + + Windows 11 Home + Windows 11 Home K + Windows 11 Home N + Windows 11 Home KN + Windows 11 Pro + Windows 11 Pro K + Windows 11 Pro N + Windows 11 Pro KN + Windows 11 Home Single Language + Windows 11 Home (China only) + 32-bit (x86) + 64-bit (x64) + Windows 11 Education + Windows 11 Education K + Windows 11 Education N + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32- بت (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-بت (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 бита (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 бита (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bitů (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bitů (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-Bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-Bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitine (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitine (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bittinen (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bittinen (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Famille K + Windows 11 Professionnel + + Windows 11 Professionnel K + Windows 11 Famille + Windows 11 Famille N + 64 bits (x64) + + Windows 11 Famille KN + Windows 11 Professionnel KN + Windows 11 Professionnel N + Windows 11 Éducation + Windows 11 Éducation N + Windows 11 Éducation K + Windows 11 Éducation KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Famille K + Windows 11 Professionnel + Windows 11 Famille Unilingue + Windows 11 Professionnel K + Windows 11 Famille + Windows 11 Famille N + 64 bits (x64) + + Windows 11 Famille KN + Windows 11 Professionnel KN + Windows 11 Professionnel N + Windows 11 Éducation + Windows 11 Éducation N + Windows 11 Éducation K + Windows 11 Éducation KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 סיביות (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 סיביות (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitna (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitna (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bites (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bites (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 ビット (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 ビット (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32비트(x86) + Windows 11 Home K + Windows 11 Pro K + Windows 11 Home Single Language K + Windows 11 Pro K + Windows 11 Home + Windows 11 Home KN + 64비트(x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro KN + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bitų (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bitų (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bit (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bit (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-biters (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-biters (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + Wersja 32-bitowa (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + Wersja 64-bitowa (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bits (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bits (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + Pe 32 de biți (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + Pe 64 de biți (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-разрядная (x86) + Windows 11 Домашняя K + Windows 11 Pro + Windows 11 Домашняя для одного языка + Windows 11 Pro K + Windows 11 Домашняя + Windows 11 Домашняя N + 64-разрядная (x64) + + Windows 11 Домашняя KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 для образовательных учреждений + Windows 11 для образовательных учреждений N + Windows 11 для образовательных учреждений K + Windows 11 для образовательных учреждений KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitová verzia (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitová verzia (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitna različica (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitna različica (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-bitna verzija (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-bitna verzija (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 bitar (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 bitar (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 บิต (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64 บิต (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-ъìť (×86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-ъĭţ (ж64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32-роздярна (x86) + Windows 11 Home K + Windows 11 Pro + Windows 11 Home Single Language + Windows 11 Pro K + Windows 11 Home + Windows 11 Home N + 64-розрядна (x64) + Windows 11 Home (China only) + Windows 11 Home KN + Windows 11 Pro KN + Windows 11 Pro N + Windows 11 Education + Windows 11 Education N + Windows 11 Education K + Windows 11 Education KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 位(x86) + Windows 11 家庭版 K + Windows 11 专业版 + Windows 11 家庭单语言版 + Windows 11 专业版 K + Windows 11 家庭版 + Windows 11 家庭版 N + 64 位(x64) + Windows 11 家庭中文版 + Windows 11 家庭版 KN + Windows 11 专业版 KN + Windows 11 专业版 N + Windows 11 教育版 + Windows 11 教育版 N + Windows 11 教育版 K + Windows 11 教育版 KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 位元 (x86) + Windows 11 家用版 K + Windows 11 專業版 + + Windows 11 專業版 K + Windows 11 家用版 + Windows 11 家用版 N + 64 位元 (x64) + + Windows 11 家用版 KN + Windows 11 專業版 KN + Windows 11 專業版 N + Windows 11 教育版 + Windows 11 教育版 N + Windows 11 教育版 K + Windows 11 教育版 KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + 32 位元 (x86) + Windows 11 家用版 K + Windows 11 專業版 + + Windows 11 專業版 K + Windows 11 家用版 + Windows 11 家用版 N + 64 位元 (x64) + + Windows 11 家用版 KN + Windows 11 專業版 KN + Windows 11 專業版 N + Windows 11 教育版 + Windows 11 教育版 N + Windows 11 教育版 K + Windows 11 教育版 KN + Windows 11 + Windows 11 K + Windows 11 N + Windows 11 KN + Windows 11 S + Windows 11 SN + Windows 11 Enterprise + Windows 11 Enterprise N + + + + + ar-sa + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_AR-SA_6.27.16.rtf + + + bg-bg + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_BG-BG_6.27.16.rtf + + + cs-cz + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_CS-CZ_6.27.16.rtf + + + da-dk + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_DA-DK_6.27.16.rtf + + + de-de + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_DE-DE_6.27.16.rtf + + + el-gr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_EL-GR_6.27.16.rtf + + + en-gb + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_EN-GB_6.27.16.rtf + + + en-us + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_EN-US_6.27.16.rtf + + + es-es + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ES-ES_6.27.16.rtf + + + es-mx + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ES-MX_6.27.16.rtf + + + et-ee + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ET-EE_6.27.16.rtf + + + fi-fi + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_FI-FI_6.27.16.rtf + + + fr-ca + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_FR-CA_6.27.16.rtf + + + fr-fr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_FR-FR_6.27.16.rtf + + + he-il + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_HE-IL_6.27.16.rtf + + + hr-hr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_HR-HR_6.27.16.rtf + + + hu-hu + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_HU-HU_6.27.16.rtf + + + it-it + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_IT-IT_6.27.16.rtf + + + ja-jp + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_JA-JP_6.27.16.rtf + + + ko-kr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_KO-KR_6.27.16.rtf + + + lt-lt + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_LT-LT_6.27.16.rtf + + + lv-lv + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_LV-LV_6.27.16.rtf + + + nb-no + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_NB-NO_6.27.16.rtf + + + nl-nl + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_NL-NL_6.27.16.rtf + + + pl-pl + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_PL-PL_6.27.16.rtf + + + pt-br + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_PT-BR_6.27.16.rtf + + + pt-pt + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_PT-PT_6.27.16.rtf + + + ro-ro + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_RO-RO_6.27.16.rtf + + + ru-ru + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_RU-RU_6.27.16.rtf + + + sk-sk + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SK-SK_6.27.16.rtf + + + sl-si + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SL-SI_6.27.16.rtf + + + sr-latn-rs + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SR-LATN-RS_6.27.16.rtf + + + sv-se + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_SV-SE_6.27.16.rtf + + + th-th + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_TH-TH_6.27.16.rtf + + + tr-tr + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_TR-TR_6.27.16.rtf + + + uk-ua + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_UK-UA_6.27.16.rtf + + + zh-cn + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ZH-CN_6.27.16.rtf + + + zh-tw + https://download.microsoft.com/download/C/0/3/C036B882-9F99-4BC9-A4B5-69370C4E17E9/EULA_MCTool_ZH-TW_6.27.16.rtf + + + + + + \ No newline at end of file diff --git a/OSDCloud/core/winpekeyboard/winpekeyboard.ps1 b/OSDCloud/core/winpekeyboard/winpekeyboard.ps1 index cb5e636..7aa365d 100644 --- a/OSDCloud/core/winpekeyboard/winpekeyboard.ps1 +++ b/OSDCloud/core/winpekeyboard/winpekeyboard.ps1 @@ -1,3 +1,3 @@ -if (Get-Command -Name 'osk.exe') { +if (Get-Command -Name 'osk.exe' -ErrorAction Ignore) { Start-Process -FilePath 'osk.exe' -WindowStyle Minimized -} \ No newline at end of file +} diff --git a/OSDCloud/core/OSDRepo/winpe-profiles/Deploy-OSDCloud.json b/OSDCloud/core/winpestartup-profiles/OSDCloud.json similarity index 100% rename from OSDCloud/core/OSDRepo/winpe-profiles/Deploy-OSDCloud.json rename to OSDCloud/core/winpestartup-profiles/OSDCloud.json diff --git a/OSDCloud/core/OSDRepo/winpe-profiles/Show-OSDCloudDeviceInfo.json b/OSDCloud/core/winpestartup-profiles/PS DeviceInfo.json similarity index 100% rename from OSDCloud/core/OSDRepo/winpe-profiles/Show-OSDCloudDeviceInfo.json rename to OSDCloud/core/winpestartup-profiles/PS DeviceInfo.json diff --git a/OSDCloud/docs/Deploy-OSDCloud.md b/OSDCloud/docs/Deploy-OSDCloud.md index 3f2c5c0..c9cd053 100644 --- a/OSDCloud/docs/Deploy-OSDCloud.md +++ b/OSDCloud/docs/Deploy-OSDCloud.md @@ -14,7 +14,7 @@ Starts an OSDCloud operating system deployment. ``` Deploy-OSDCloud [[-WorkflowName] ] [-CLI] [-Force] [-ProfileName ] - [-ProgressAction ] [-OperatingSystem ] [-OSEdition ] + [-DiskNumber ] [-ProgressAction ] [-OperatingSystem ] [-OSEdition ] [-OSActivation ] [-OSLanguageCode ] [-Task ] [] ``` @@ -76,6 +76,13 @@ Deploy-OSDCloud -ProfileName 'Lab' Launches the OSDCloud graphical UX using the 'Lab' profile Env path. +### EXAMPLE 6 +``` +Deploy-OSDCloud -CLI -DiskNumber 1 +``` + +Runs the default OSDCloud workflow immediately and deploys to local disk 1. + ## PARAMETERS ### -WorkflowName @@ -143,6 +150,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -DiskNumber +Specifies the local disk number to use for deployment. +The value must match a local disk detected by OSDCloud. +USB, virtual, offline, and otherwise unsupported disks are not valid deployment targets. + +```yaml +Type: UInt32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -OperatingSystem {{ Fill OperatingSystem Description }} @@ -249,4 +273,3 @@ Runtime parameters are provided by Get-OSDCloudWorkflowRuntimeParameter. ## RELATED LINKS [https://github.com/OSDeploy/OSDCloud/blob/main/PRIVACY.md](https://github.com/OSDeploy/OSDCloud/blob/main/PRIVACY.md) - diff --git a/OSDCloud/private/Deploy-OSDCloudCLI.ps1 b/OSDCloud/private/Deploy-OSDCloudCLI.ps1 index 1347f2c..e8599f3 100644 --- a/OSDCloud/private/Deploy-OSDCloudCLI.ps1 +++ b/OSDCloud/private/Deploy-OSDCloudCLI.ps1 @@ -94,26 +94,26 @@ function Deploy-OSDCloudCLI { [Parameter(Mandatory = $false)] [ArgumentCompleter({ - param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters) + param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters) - $profileNames = @('default') - if ($env:SystemDrive -ne 'X:' -and $env:ProgramData) { - $profileRoot = Join-Path -Path $env:ProgramData -ChildPath 'OSDeployCore\OSDCloud\Profiles' - if (Test-Path -Path $profileRoot -PathType Container) { - $directoryNames = Get-ChildItem -Path $profileRoot -Directory -ErrorAction SilentlyContinue | + $profileNames = @('default') + if ($env:SystemDrive -ne 'X:' -and $env:ProgramData) { + $profileRoot = Join-Path -Path $env:ProgramData -ChildPath 'OSDeployCore\OSDCloud\Profiles' + if (Test-Path -Path $profileRoot -PathType Container) { + $directoryNames = Get-ChildItem -Path $profileRoot -Directory -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Name - if ($directoryNames) { - $profileNames += $directoryNames + if ($directoryNames) { + $profileNames += $directoryNames + } } } - } - foreach ($profileName in ($profileNames | Sort-Object -Unique)) { - if ($profileName -like "$wordToComplete*") { - [System.Management.Automation.CompletionResult]::new($profileName, $profileName, 'ParameterValue', $profileName) + foreach ($profileName in ($profileNames | Sort-Object -Unique)) { + if ($profileName -like "$wordToComplete*") { + [System.Management.Automation.CompletionResult]::new($profileName, $profileName, 'ParameterValue', $profileName) + } } - } - })] + })] [ValidateNotNullOrEmpty()] [System.String] $ProfileName = 'default' @@ -137,13 +137,13 @@ function Deploy-OSDCloudCLI { # Initialize OSDCloudWorkflow # Override values (Parameters > ENV) are assembled into $global:OSDCloudEnv # and applied to $global:OSDCloudDeploy - including operating system resolution - inside - # Initialize-OSDCloudDeploy. + # Initialize-DeployOSDCloud. $WorkflowName = 'cli' $envParameters = @{} - if (Get-Command -Name 'ConvertTo-OSDCloudEnvParameter' -ErrorAction SilentlyContinue) { + if (Get-Command -Name 'ConvertTo-OSDCloudEnvParameter' -ErrorAction Ignore) { $envParameters = ConvertTo-OSDCloudEnvParameter -BoundParameters $PSBoundParameters } - Initialize-OSDCloudDeploy -WorkflowName $WorkflowName -EnvParameters $envParameters -ProfileName $ProfileName + Initialize-DeployOSDCloud -WorkflowName $WorkflowName -EnvParameters $envParameters -Force:$Force.IsPresent -ProfileName $ProfileName $selectedTask = if ($null -ne $Task) { $Task } else { [System.String]$global:OSDCloudDeploy.WorkflowTaskName } $selectedOperatingSystem = if ($null -ne $OperatingSystem) { $OperatingSystem } else { [System.String]$global:OSDCloudDeploy.OperatingSystem } @@ -151,17 +151,10 @@ function Deploy-OSDCloudCLI { $selectedOSActivation = if ($null -ne $OSActivation) { $OSActivation } else { [System.String]$global:OSDCloudDeploy.OSActivation } $selectedOSLanguageCode = if ($null -ne $OSLanguageCode) { $OSLanguageCode } else { [System.String]$global:OSDCloudDeploy.OSLanguageCode } - if ($selectedOSEdition -in @('Enterprise', 'Enterprise N')) { - if ($selectedOSActivation -ne 'Volume') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSEdition '$selectedOSEdition' requires OSActivation 'Volume'." - } - $selectedOSActivation = 'Volume' - } - elseif ($selectedOSEdition -in @('Home', 'Home N')) { - if ($selectedOSActivation -ne 'Retail') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSEdition '$selectedOSEdition' requires OSActivation 'Retail'." - } - $selectedOSActivation = 'Retail' + $resolvedOSActivation = Resolve-OSDCloudWorkflowOSActivation -OSEdition $selectedOSEdition -OSActivation $selectedOSActivation + if ($resolvedOSActivation -ne $selectedOSActivation) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSEdition '$selectedOSEdition' requires OSActivation '$resolvedOSActivation'." + $selectedOSActivation = $resolvedOSActivation } $operatingSystemValues = [array]$global:OSDCloudDeploy.OperatingSystemValues @@ -186,36 +179,35 @@ function Deploy-OSDCloudCLI { throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSEdition '$selectedOSEdition' is not valid for workflow '$WorkflowName'. Valid values: $($validOSEditions -join ', ')" } - $workflowTaskValues = [array]($global:OSDCloudDeploy.Flows | Select-Object -ExpandProperty Name) + $workflowTaskValues = [array]($global:OSDCloudDeploy.WorkflowTasks | Select-Object -ExpandProperty Name) if ($selectedTask -notin $workflowTaskValues) { throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Task '$selectedTask' is not valid for workflow '$WorkflowName'. Valid values: $($workflowTaskValues -join ', ')" } - $workflowTaskObject = $global:OSDCloudDeploy.Flows | Where-Object { $_.Name -eq $selectedTask } | Select-Object -First 1 + $workflowTaskObject = $global:OSDCloudDeploy.WorkflowTasks | Where-Object { $_.Name -eq $selectedTask } | Select-Object -First 1 - $operatingSystemObject = $global:DeployOSDCloudOperatingSystems | - Where-Object { $_.OperatingSystem -eq $selectedOperatingSystem } | - Where-Object { $_.OSActivation -eq $selectedOSActivation } | - Where-Object { $_.OSLanguageCode -eq $selectedOSLanguageCode } | - Select-Object -First 1 + $operatingSystemCloudObject = $global:OSDCoreOperatingSystems | + Where-Object { $_.OperatingSystem -eq $selectedOperatingSystem } | + Where-Object { $_.OSActivation -eq $selectedOSActivation } | + Where-Object { $_.OSLanguageCode -eq $selectedOSLanguageCode } | + Select-Object -First 1 - if (-not $operatingSystemObject) { + if (-not $operatingSystemCloudObject) { throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No Operating System object found for OperatingSystem '$selectedOperatingSystem' with OSActivation '$selectedOSActivation' and OSLanguageCode '$selectedOSLanguageCode'." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem: $selectedOperatingSystem" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSEdition: $selectedOSEdition" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSActivation: $selectedOSActivation" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSLanguageCode: $selectedOSLanguageCode" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Task: $selectedTask" - - $global:OSDCloudDeploy.OperatingSystem = $operatingSystemObject.OperatingSystem - $global:OSDCloudDeploy.OperatingSystemObject = $operatingSystemObject - $global:OSDCloudDeploy.OSBuild = $operatingSystemObject.OSBuild - $global:OSDCloudDeploy.OSBuildVersion = $operatingSystemObject.OSBuildVersion - $global:OSDCloudDeploy.OSVersion = $operatingSystemObject.OSVersion - $global:OSDCloudDeploy.ImageFileName = $operatingSystemObject.FileName - $global:OSDCloudDeploy.ImageFileUrl = $operatingSystemObject.FilePath + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem: $selectedOperatingSystem" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSEdition: $selectedOSEdition" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSActivation: $selectedOSActivation" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSLanguageCode: $selectedOSLanguageCode" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Task: $selectedTask" + + $global:OSDCloudDeploy.OperatingSystem = $operatingSystemCloudObject.OperatingSystem + $global:OSDCloudDeploy.OperatingSystemCloudObject = $operatingSystemCloudObject + $global:OSDCloudDeploy.OperatingSystemCacheObject = Get-OSDCoreOperatingSystemCacheObject -OperatingSystemCloudObject $operatingSystemCloudObject + $global:OSDCloudDeploy.OSBuild = $operatingSystemCloudObject.OSBuild + $global:OSDCloudDeploy.OSBuildVersion = $operatingSystemCloudObject.OSBuildVersion + $global:OSDCloudDeploy.OSVersion = $operatingSystemCloudObject.OSVersion $global:OSDCloudDeploy.OSEdition = $selectedOSEdition $global:OSDCloudDeploy.OSEditionId = $selectedOSEditionObject.EditionId $global:OSDCloudDeploy.OSActivation = $selectedOSActivation @@ -227,7 +219,7 @@ function Deploy-OSDCloudCLI { $global:OSDCloudDeploy.Force = $Force.IsPresent #================================================= - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Invoke-OSDCloudWorkflowTask" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Invoke-OSDCloudWorkflowTask" $global:OSDCloudDeploy.TimeStart = Get-Date $global:OSDCloudDeploy | Out-Host Invoke-OSDCloudWorkflowTask diff --git a/OSDCloud/private/Deploy-OSDCloudGUI.ps1 b/OSDCloud/private/Deploy-OSDCloudGUI.ps1 index 16e18a4..8648cf1 100644 --- a/OSDCloud/private/Deploy-OSDCloudGUI.ps1 +++ b/OSDCloud/private/Deploy-OSDCloudGUI.ps1 @@ -10,7 +10,7 @@ function Deploy-OSDCloudGUI { ) #================================================= # Initialize OSDCloudWorkflow - Initialize-OSDCloudDeploy -WorkflowName $WorkflowName + Initialize-DeployOSDCloud -WorkflowName $WorkflowName #================================================= # Prevents the workflow from starting unless the Start button is clicked in the GUI $global:OSDCloudDeploy.TimeStart = $null @@ -20,15 +20,17 @@ function Deploy-OSDCloudGUI { #================================================= # Ensure workflow frontend is triggered before invoking workflow if ($null -ne $global:OSDCloudDeploy.TimeStart) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Invoke-OSDCloudWorkflowTask $WorkflowName" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Invoke-OSDCloudWorkflowTask $WorkflowName" $global:OSDCloudDeploy | Out-Host try { Invoke-OSDCloudWorkflowTask - } catch { + } + catch { Write-Warning "Failed to invoke OSDCloud Workflow $WorkflowName $_" break } - } else { + } + else { Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCloud Workflow $WorkflowName was not started." } #================================================= diff --git a/OSDCloud/private/Initialize-DeployOSDCloud.ps1 b/OSDCloud/private/Initialize-DeployOSDCloud.ps1 new file mode 100644 index 0000000..d9b581d --- /dev/null +++ b/OSDCloud/private/Initialize-DeployOSDCloud.ps1 @@ -0,0 +1,697 @@ +function Initialize-DeployOSDCloud { + [CmdletBinding()] + param ( + [Parameter(Mandatory = $false, + Position = 0, + ValueFromPipelineByPropertyName = $true)] + [Alias('Name')] + [System.String] + $WorkflowName = 'default', + + [Parameter(Mandatory = $false, HelpMessage = 'Optional local disk number to use as the deployment target.')] + [System.UInt32] + $DiskNumber, + + [Parameter(Mandatory = $false)] + [System.Collections.IDictionary] + $EnvParameters, + + [Parameter(Mandatory = $false)] + [System.Management.Automation.SwitchParameter] + $Force, + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [System.String] + $ProfileName = 'default', + + [Parameter(Mandatory = $false, HelpMessage = 'Optional manufacturer override used for driver pack selection.')] + [System.String] + $OSDManufacturer, + + [Parameter(Mandatory = $false, HelpMessage = 'Optional model override used for driver pack selection.')] + [System.String] + $OSDModel, + + [Parameter(Mandatory = $false, HelpMessage = 'Optional product/system ID override used for driver pack selection.')] + [System.String] + $OSDProduct, + + [Parameter(Mandatory = $false, HelpMessage = 'Mock/testing processor architecture override used for deployment selection.')] + [ValidateNotNullOrEmpty()] + [ValidateSet('amd64', 'arm64')] + [System.String] + $ProcessorArchitecture, + + [Parameter(Mandatory = $false, HelpMessage = 'Operating system name for deployment selection.')] + [ValidateNotNullOrEmpty()] + [System.String] + $OperatingSystem, + + [Parameter(Mandatory = $false, HelpMessage = 'Operating system edition for deployment selection.')] + [ValidateNotNullOrEmpty()] + [System.String] + $OSEdition, + + [Parameter(Mandatory = $false, HelpMessage = 'Operating system activation channel for deployment selection.')] + [ValidateNotNullOrEmpty()] + [System.String] + $OSActivation, + + [Parameter(Mandatory = $false, HelpMessage = 'Operating system language code for deployment selection.')] + [ValidateNotNullOrEmpty()] + [ValidateSet( + 'ar-sa', 'bg-bg', 'cs-cz', 'da-dk', 'de-de', 'el-gr', + 'en-gb', 'en-us', 'es-es', 'es-mx', 'et-ee', 'fi-fi', + 'fr-ca', 'fr-fr', 'he-il', 'hr-hr', 'hu-hu', 'it-it', + 'ja-jp', 'ko-kr', 'lt-lt', 'lv-lv', 'nb-no', 'nl-nl', + 'pl-pl', 'pt-br', 'pt-pt', 'ro-ro', 'ru-ru', 'sk-sk', + 'sl-si', 'sr-latn-rs', 'sv-se', 'th-th', 'tr-tr', + 'uk-ua', 'zh-cn', 'zh-tw' + )] + [System.String] + $OSLanguageCode + ) + $ErrorActionPreference = 'Stop' + #================================================= + # Get module details + # $ModuleVersion = $($MyInvocation.MyCommand.Module.Version) + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($MyInvocation.MyCommand.Name)]" + #================================================= + # OSDCloud Env override layer + # Assemble $global:OSDCloudEnv early so initial property resolution can consume + # values from the selected profile and parameter overrides. + <# + if (Get-Command -Name 'Initialize-OSDCloudEnv' -ErrorAction Ignore) { + Initialize-OSDCloudEnv -Parameters $EnvParameters -ProfileName $ProfileName | Out-Null + } + #> + #================================================= + # Dependencies + # Make sure curl.exe is present and throw if not + if (-not (Get-Command -Name 'curl.exe' -ErrorAction Ignore)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCloud requires 'curl.exe' which is not available on this system. Please ensure curl.exe is available in the system PATH." + } + # Preserve caller-specified OS values so they can be applied after workflow defaults are loaded. + $requestedOSValues = @{} + foreach ($requestedOSParameterName in 'OperatingSystem', 'OSEdition', 'OSActivation', 'OSLanguageCode') { + if ($PSBoundParameters.ContainsKey($requestedOSParameterName)) { + $requestedOSValues[$requestedOSParameterName] = [System.String]$PSBoundParameters[$requestedOSParameterName] + } + } + #================================================= + # Initialize + if (-not ($global:OSDCoreDevice)) { + Initialize-OSDCoreDevice + } + Initialize-OSDCoreCache + #================================================= + #region OSArchitecture + if ($ProcessorArchitecture -and -not [string]::IsNullOrWhiteSpace($ProcessorArchitecture)) { + $global:OSDCoreDevice.ProcessorArchitecture = $ProcessorArchitecture + } + + # Resolve the effective architecture from OSDCoreDevice and normalize aliases. + $processorArchitecture = if (-not [string]::IsNullOrWhiteSpace($global:OSDCoreDevice.ProcessorArchitecture)) { + $global:OSDCoreDevice.ProcessorArchitecture + } + else { + $env:PROCESSOR_ARCHITECTURE + } + + switch -Regex ($processorArchitecture) { + '^(amd64|x64)$' { $processorArchitecture = 'amd64'; break } + '^arm64$' { $processorArchitecture = 'arm64'; break } + default { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unsupported processor architecture '$processorArchitecture'. Expected amd64 or arm64." + } + } + #endregion + #================================================= + # CoreDriverPacks + Initialize-ModuleCoreDriverPacks -OSDManufacturer $OSDManufacturer -ProcessorArchitecture $processorArchitecture + $global:OSDCoreDriverPacks = $global:ModuleCoreDriverPacks | Where-Object { $_.OSArchitecture -eq $processorArchitecture } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: OSDCoreDriverPacks" + #================================================= + # CoreOperatingSystems + $ModuleName = $($MyInvocation.MyCommand.Module.Name) + if ($ModuleName -eq 'OSD') { + $global:OSDCoreOperatingSystems = Get-OSDCoreOperatingSystems | + Where-Object { $_.Architecture -match $processorArchitecture } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: OSDCoreOperatingSystems" + } + elseif ($ModuleName -eq 'OSDCloud') { + $global:OSDCoreOperatingSystems = Get-OSDCloudCoreOperatingSystems | + Where-Object { $_.OSArchitecture -match $processorArchitecture } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: OSDCoreOperatingSystems" + } + else { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to load core operating systems provider command." + } + #================================================= + # OSDCloudDeploy + $global:OSDCloudDeploy = $null + $global:OSDCloudDeploy = [pscustomobject][ordered]@{ + #CoreDriverPacks = [array]$global:ModuleCoreDriverPacks + #CoreOperatingSystems = $global:OSDCoreOperatingSystems + DeploymentDisk = $null + DeploymentDiskNumber = $null + DriverPackName = $null + DriverPackCacheObject = $null + DriverPackCloudObject = $null + DriverPackCloudTest = $false + Force = $Force.IsPresent + Function = $($MyInvocation.MyCommand.Name) + LaunchMethod = 'OSDCloudWorkflow' + Module = $($MyInvocation.MyCommand.Module.Name) + OperatingSystemCacheObject = $null + OperatingSystemCloudObject = $null + OperatingSystemCloudTest = $false + OperatingSystem = $null + OperatingSystemValues = $null + OSArchitecture = $processorArchitecture + OSActivation = $OSActivation + OSActivationValues = $null + OSBuild = $null + OSBuildVersion = $null + OSEdition = $null + OSEditionId = $null + OSEditionValues = $null + OSLanguageCode = $null + OSLanguageCodeValues = $null + OSVersion = $OSVersion + SkipFirmwareUpdate = $false + TimeStart = $null + WorkflowName = $WorkflowName + WorkflowTaskName = $null + WorkflowTaskObject = $null + WorkflowTasks = $null + # DriverFolderName = $null + # DriverFolderNames = @() + # DriverFolderPath = $null + # DriverFolderPaths = @() + # DriverFolderSelections = @() + # ImageFileName = $ImageFileName + # ImageFileUrl = $ImageFileUrl + # LocalImageFileInfo = $null + # LocalImageFilePath = $null + # LocalImageName = $null + # OperatingSystemObject = $OperatingSystemObject + } + #================================================= + #region OSDCoreDevice Manufacturer, Model, Product overrides + if ($OSDManufacturer -and -not [string]::IsNullOrWhiteSpace($OSDManufacturer)) { + $global:OSDCoreDevice.OSDManufacturer = $OSDManufacturer + } + if ($OSDModel -and -not [string]::IsNullOrWhiteSpace($OSDModel)) { + $global:OSDCoreDevice.OSDModel = $OSDModel + } + if ($OSDProduct -and -not [string]::IsNullOrWhiteSpace($OSDProduct)) { + $global:OSDCoreDevice.OSDProduct = $OSDProduct + } + #================================================= + # Refactor variables for deployment workflow initialization + $OSDManufacturer = $global:OSDCoreDevice.OSDManufacturer + $OSDModel = $global:OSDCoreDevice.OSDModel + $OSDProduct = $global:OSDCoreDevice.OSDProduct + #endregion + #================================================= + #region OSDCloudDeploy.DeploymentDisk + $getDiskNumber = { + param ($Disk) + + if ($Disk.PSObject.Properties.Match('Number').Count -gt 0) { + $Disk.Number + } + elseif ($Disk.PSObject.Properties.Match('DiskNumber').Count -gt 0) { + $Disk.DiskNumber + } + } + $getDiskName = { + param ($Disk) + + if ($Disk.PSObject.Properties.Match('FriendlyName').Count -gt 0) { + $Disk.FriendlyName + } + else { + 'Unknown' + } + } + $getDiskSize = { + param ($Disk) + + if ($Disk.PSObject.Properties.Match('Size').Count -gt 0) { + "$([math]::Round($Disk.Size / 1GB, 2)) GB" + } + else { + 'Unknown size' + } + } + + $localDisks = @($global:OSDCoreDevice.LocalDisk) + if ($PSBoundParameters.ContainsKey('DiskNumber')) { + $selectedDeploymentDisk = $localDisks | + Where-Object { + $localDiskNumber = & $getDiskNumber $_ + $null -ne $localDiskNumber -and [System.UInt32]$localDiskNumber -eq $DiskNumber + } | + Select-Object -First 1 + + if (-not $selectedDeploymentDisk) { + $availableLocalDiskDetails = @( + $localDisks | ForEach-Object { + $availableDiskNumber = & $getDiskNumber $_ + $availableDiskName = & $getDiskName $_ + $availableDiskSize = & $getDiskSize $_ + "$availableDiskNumber ($availableDiskName, $availableDiskSize)" + } + ) + $availableLocalDiskMessage = if ($availableLocalDiskDetails.Count -gt 0) { $availableLocalDiskDetails -join ', ' } else { 'None' } + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DiskNumber '$DiskNumber' is not a valid local deployment disk. Valid DiskNumber values: $availableLocalDiskMessage" + } + + $tempDeploymentDisk = $selectedDeploymentDisk + } + else { + $selectedDeploymentDisk = $localDisks | Select-Object -First 1 + if ($selectedDeploymentDisk) { + $tempDeploymentDisk = $selectedDeploymentDisk + } + } + + if ($tempDeploymentDisk) { + $tempDeploymentDiskNumber = & $getDiskNumber $tempDeploymentDisk + } + if ($tempDeploymentDisk) { + $deploymentDiskName = & $getDiskName $tempDeploymentDisk + $deploymentDiskSize = & $getDiskSize $tempDeploymentDisk + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] DiskNumber is automatically set to $tempDeploymentDiskNumber [$deploymentDiskName] with size $deploymentDiskSize." + + $otherLocalDisks = @($global:OSDCoreDevice.LocalDisk | Where-Object { + $localDiskNumber = & $getDiskNumber $_ + $localDiskNumber -ne $tempDeploymentDiskNumber + }) + foreach ($localDisk in $otherLocalDisks) { + $localDiskNumber = & $getDiskNumber $localDisk + $localDiskName = & $getDiskName $localDisk + $localDiskSize = & $getDiskSize $localDisk + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DiskNumber $localDiskNumber [$localDiskName] with size $localDiskSize was not selected for deployment." + } + } + else { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to determine Deployment Disk. Please check your system configuration." + } + $global:OSDCloudDeploy.DeploymentDisk = $tempDeploymentDisk + $global:OSDCloudDeploy.DeploymentDiskNumber = [System.UInt32]$tempDeploymentDiskNumber + #endregion + #================================================= + #region DriverPacks + if ($global:ModuleCoreDriverPacks) { + $DriverPackCloudObject = $global:ModuleCoreDriverPacks | Where-Object { $_.SystemId -match $OSDProduct } | Select-Object -First 1 + } + Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] [INFO] OSDManufacturer: $OSDManufacturer" + Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] [INFO] OSDModel: $OSDModel" + Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] [INFO] OSDProduct: $OSDProduct" + + if ($DriverPackCloudObject) { + $global:OSDCloudDeploy.DriverPackCloudObject = $DriverPackCloudObject + $global:OSDCloudDeploy.DriverPackName = $DriverPackCloudObject.Name + Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] [INFO] DriverPack: $($global:OSDCloudDeploy.DriverPackName)" + Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] [INFO] DriverPack Url: $($DriverPackCloudObject.Url)" + } + #================================================= + # DriverPackCloudTest + if ($DriverPackCloudObject) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Test DriverPack CloudObject." + $global:OSDCloudDeploy.DriverPackCloudTest = Test-OSDCoreDriverPackCloudObject -DriverPackCloudObject $DriverPackCloudObject + if ($global:OSDCloudDeploy.DriverPackCloudTest) { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] DriverPack is available online and ready to downloaded." + } + else { + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] DriverPack URL is not reachable online and cannot be downloaded." + } + + # Driver pack catalogs use either HashMD5 or MD5Hash depending on the source. + $expectedDriverPackHashMD5 = $null + if ($DriverPackCloudObject.PSObject.Properties.Match('HashMD5').Count -gt 0) { + $expectedDriverPackHashMD5 = [string]$DriverPackCloudObject.HashMD5 + } + elseif ($DriverPackCloudObject.PSObject.Properties.Match('MD5Hash').Count -gt 0) { + $expectedDriverPackHashMD5 = [string]$DriverPackCloudObject.MD5Hash + } + + # Check whether the selected driver pack is already present in the cache inventory. + $DriverPackCacheObject = Get-OSDCoreDriverPackCacheObject -DriverPackCloudObject $DriverPackCloudObject + if ($DriverPackCacheObject) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Test DriverPack CacheObject." + # Verify cached driver pack integrity when the catalog includes an MD5 hash. + if (-not [string]::IsNullOrWhiteSpace($expectedDriverPackHashMD5)) { + $actualDriverPackHashMD5 = (Get-FileHash -Path $DriverPackCacheObject.FullName -Algorithm MD5 -ErrorAction Stop).Hash + if ($actualDriverPackHashMD5 -ne $expectedDriverPackHashMD5.Trim()) { + throw "[$(Get-Date -format s)] DriverPack MD5 hash mismatch for $($DriverPackCacheObject.FullName). Expected $($expectedDriverPackHashMD5.Trim()), found $actualDriverPackHashMD5." + } + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] DriverPack is saved in cache and MD5 hash verified." + } + else { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] DriverPack is saved in cache." + } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($DriverPackCacheObject.FullName)" + $global:OSDCloudDeploy.DriverPackCacheObject = $DriverPackCacheObject + $global:OSDCloudDeploy.DriverPackCloudTest = $true + } + else { + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] DriverPack is not available in the offline cache." + $DriverPackCacheObject = $null + } + # $DriverPackCloudObject | Format-List | Out-Host + } + else { + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] OSDCoreDriverPackCloudObject is not set." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] OSDCloud will not apply a DriverPack for this deployment." + $global:OSDCloudDeploy.DriverPackCacheObject = $null + $global:OSDCloudDeploy.DriverPackCloudObject = $null + $global:OSDCloudDeploy.DriverPackCloudTest = $false + $global:OSDCloudDeploy.DriverPackName = $null + } + #endregion + #================================================= + # OSDCloudWorkflowSettingsOS + # This function will read a configuration file and store it in $OSDCloudWorkflowSettingsOS + Initialize-OSDCloudWorkflowSettingsOS -WorkflowName $WorkflowName -Architecture $global:OSDCloudDeploy.OSArchitecture + + # Apply workflow OS constraints to the loaded catalog for this architecture. + $allowedOperatingSystems = @($global:OSDCloudWorkflowSettingsOS.OperatingSystem.values | Where-Object { -not [string]::IsNullOrWhiteSpace([string]$_) }) + $allowedOSActivations = @($global:OSDCloudWorkflowSettingsOS.OSActivation.values | Where-Object { -not [string]::IsNullOrWhiteSpace([string]$_) }) + $allowedOSEditionObjects = @($global:OSDCloudWorkflowSettingsOS.OSEdition.values) + $allowedOSEditions = @($allowedOSEditionObjects | ForEach-Object { [string]$_.Edition } | Where-Object { -not [string]::IsNullOrWhiteSpace($_) }) + $allowedOSLanguageCodes = @($global:OSDCloudWorkflowSettingsOS.OSLanguageCode.values | Where-Object { -not [string]::IsNullOrWhiteSpace([string]$_) }) + + $global:OSDCoreOperatingSystems = @( + $global:OSDCoreOperatingSystems | Where-Object { + ($allowedOperatingSystems.Count -eq 0 -or $allowedOperatingSystems -contains [string]$_.OperatingSystem) -and + ($allowedOSActivations.Count -eq 0 -or $allowedOSActivations -contains [string]$_.OSActivation) -and + ($allowedOSLanguageCodes.Count -eq 0 -or $allowedOSLanguageCodes -contains [string]$_.OSLanguageCode) + } + ) + + if (-not $global:OSDCoreOperatingSystems) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No Operating Systems remain after applying workflow OS filters. Check workflow/$WorkflowName/ui/os.json values for OperatingSystem, OSActivation, and OSLanguageCode." + } + + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Filtered OSDCoreOperatingSystems Count: $(@($global:OSDCoreOperatingSystems).Count)" + #================================================= + # $OperatingSystemCloudObject + <# + This global variable is used to store the selected operating system object from the catalog for use in deployment. + A default should be selected based on this order of preference: + 1. Parameter. + 2. OSDCloudEnv override + 3. Workflow default + 4. First available in the filtered catalog + + #> + # Solution: + $preferredOperatingSystem = [string]$global:OSDCloudWorkflowSettingsOS.OperatingSystem.default + $preferredOSEdition = [string]$global:OSDCloudWorkflowSettingsOS.OSEdition.default + $preferredOSActivation = [string]$global:OSDCloudWorkflowSettingsOS.OSActivation.default + $preferredOSLanguageCode = [string]$global:OSDCloudWorkflowSettingsOS.OSLanguageCode.default + + if ($global:OSDCloudEnv) { + if (-not [string]::IsNullOrWhiteSpace([string]$global:OSDCloudEnv.OperatingSystem)) { + $preferredOperatingSystem = [string]$global:OSDCloudEnv.OperatingSystem + } + if (-not [string]::IsNullOrWhiteSpace([string]$global:OSDCloudEnv.OSEdition)) { + $preferredOSEdition = [string]$global:OSDCloudEnv.OSEdition + } + if (-not [string]::IsNullOrWhiteSpace([string]$global:OSDCloudEnv.OSActivation)) { + $preferredOSActivation = [string]$global:OSDCloudEnv.OSActivation + } + if (-not [string]::IsNullOrWhiteSpace([string]$global:OSDCloudEnv.OSLanguageCode)) { + $preferredOSLanguageCode = [string]$global:OSDCloudEnv.OSLanguageCode + } + } + + if (-not [string]::IsNullOrWhiteSpace($requestedOSValues['OperatingSystem'])) { + $preferredOperatingSystem = $requestedOSValues['OperatingSystem'] + } + if (-not [string]::IsNullOrWhiteSpace($requestedOSValues['OSEdition'])) { + $preferredOSEdition = $requestedOSValues['OSEdition'] + } + if (-not [string]::IsNullOrWhiteSpace($requestedOSValues['OSActivation'])) { + $preferredOSActivation = $requestedOSValues['OSActivation'] + } + if (-not [string]::IsNullOrWhiteSpace($requestedOSValues['OSLanguageCode'])) { + $preferredOSLanguageCode = $requestedOSValues['OSLanguageCode'] + } + + if ($preferredOperatingSystem -notin $allowedOperatingSystems) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OperatingSystem '$preferredOperatingSystem' is not valid for workflow '$WorkflowName'. Valid values: $($allowedOperatingSystems -join ', ')" + } + if ($preferredOSEdition -notin $allowedOSEditions) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSEdition '$preferredOSEdition' is not valid for workflow '$WorkflowName'. Valid values: $($allowedOSEditions -join ', ')" + } + if ($preferredOSLanguageCode -notin $allowedOSLanguageCodes) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSLanguageCode '$preferredOSLanguageCode' is not valid for workflow '$WorkflowName'. Valid values: $($allowedOSLanguageCodes -join ', ')" + } + + $resolvedPreferredOSActivation = Resolve-OSDCloudWorkflowOSActivation -OSEdition $preferredOSEdition -OSActivation $preferredOSActivation + if ($resolvedPreferredOSActivation -ne $preferredOSActivation) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSEdition '$preferredOSEdition' requires OSActivation '$resolvedPreferredOSActivation'." + $preferredOSActivation = $resolvedPreferredOSActivation + } + if ($preferredOSActivation -notin $allowedOSActivations) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSEdition '$preferredOSEdition' requires OSActivation '$preferredOSActivation', which is not valid for workflow '$WorkflowName'. Valid values: $($allowedOSActivations -join ', ')" + } + + $operatingSystemBuildVersionSort = @{ Expression = { + try { + [version]([string]$_.OSBuildVersion -replace '[^0-9\.]', '') + } + catch { + [version]'0.0' + } + }; Descending = $true + } + + $OperatingSystemCloudObject = $global:OSDCoreOperatingSystems | + Where-Object { + ([string]$_.OperatingSystem -ieq $preferredOperatingSystem) -and + ([string]$_.OSActivation -ieq $preferredOSActivation) -and + ([string]$_.OSLanguageCode -ieq $preferredOSLanguageCode) + } | + Sort-Object -Property $operatingSystemBuildVersionSort | + Select-Object -First 1 + + if (-not $OperatingSystemCloudObject) { + Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No exact operating system match was found for OperatingSystem '$preferredOperatingSystem', OSActivation '$preferredOSActivation', and OSLanguageCode '$preferredOSLanguageCode'. Falling back to the first available filtered catalog entry." + $OperatingSystemCloudObject = $global:OSDCoreOperatingSystems | + Sort-Object -Property $operatingSystemBuildVersionSort | + Select-Object -First 1 + } + + if (-not $OperatingSystemCloudObject) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to set OperatingSystemCloudObject because no operating system entries are available in the filtered catalog." + } + #================================================= + # OSDCoreOperatingSystems Verify + if ($OperatingSystemCloudObject) { + $OperatingSystemCloudObject | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'OperatingSystemCloudObject.xml') -Force + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Test OperatingSystem CloudObject." + # Confirm the selected operating system download URL before offering cache download work. + $global:OSDCloudDeploy.OperatingSystemCloudTest = Test-OperatingSystemCloudObject -OperatingSystemCloudObject $OperatingSystemCloudObject + if ($global:OSDCloudDeploy.OperatingSystemCloudTest) { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] OperatingSystem is available online and ready to downloaded." + } + else { + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] OperatingSystem URL is not reachable online and cannot be downloaded." + } + + # Prefer SHA256 when the catalog provides it, and fall back to SHA1 for older entries. + $expectedOperatingSystemHash = $null + $expectedOperatingSystemHashAlgorithm = $null + if (-not [string]::IsNullOrWhiteSpace([string]$OperatingSystemCloudObject.SHA256)) { + $expectedOperatingSystemHash = [string]$OperatingSystemCloudObject.SHA256 + $expectedOperatingSystemHashAlgorithm = 'SHA256' + } + elseif (-not [string]::IsNullOrWhiteSpace([string]$OperatingSystemCloudObject.SHA1)) { + $expectedOperatingSystemHash = [string]$OperatingSystemCloudObject.SHA1 + $expectedOperatingSystemHashAlgorithm = 'SHA1' + } + + # Check whether the selected OS payload is already present in the USB cache inventory. + $OperatingSystemCacheObject = Get-OSDCoreOperatingSystemCacheObject -OperatingSystemCloudObject $OperatingSystemCloudObject + if ($OperatingSystemCacheObject) { + $OperatingSystemCacheObject | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'OSDCoreOperatingSystemCacheObject.xml') -Force + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Test OperatingSystem CacheObject." + # Verify the cached payload before treating it as ready. + if (-not [string]::IsNullOrWhiteSpace($expectedOperatingSystemHash)) { + $actualOperatingSystemHash = (Get-FileHash -Path $OperatingSystemCacheObject.FullName -Algorithm $expectedOperatingSystemHashAlgorithm -ErrorAction Stop).Hash + if ($actualOperatingSystemHash -ne $expectedOperatingSystemHash.Trim()) { + throw "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject $expectedOperatingSystemHashAlgorithm hash mismatch for $($OperatingSystemCacheObject.FullName). Expected $($expectedOperatingSystemHash.Trim()), found $actualOperatingSystemHash." + } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem is saved in cache and $expectedOperatingSystemHashAlgorithm hash verified." + } + else { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem cached file hash was not verified because no hash property was available." + } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($OperatingSystemCacheObject.FullName)" + $global:OSDCloudDeploy.OperatingSystemCacheObject = $OperatingSystemCacheObject + } + else { + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] OperatingSystem is not available in the offline cache." + $global:OSDCloudDeploy.OperatingSystemCacheObject = $null + } + + # Build a display object that supports both OSD and OSDCloud property shapes. + $selectedOperatingSystemName = if ($OperatingSystemCloudObject.Id) { $OperatingSystemCloudObject.Id } else { $OperatingSystemCloudObject.Name } + $selectedOperatingSystemUrl = if ($OperatingSystemCloudObject.FilePath) { $OperatingSystemCloudObject.FilePath } else { $OperatingSystemCloudObject.Url } + $selectedOperatingSystemSha1 = if ($OperatingSystemCloudObject.Sha1) { $OperatingSystemCloudObject.Sha1 } else { $OperatingSystemCloudObject.SHA1 } + $selectedOperatingSystemSha256 = if ($OperatingSystemCloudObject.Sha256) { $OperatingSystemCloudObject.Sha256 } else { $OperatingSystemCloudObject.SHA256 } + + # Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject:" + $tempOperatingSystemDisplay = [ordered]@{ + Name = [string]$selectedOperatingSystemName + FileName = [string]$OperatingSystemCloudObject.FileName + Url = [string]$selectedOperatingSystemUrl + } + if (-not [string]::IsNullOrWhiteSpace([string]$selectedOperatingSystemSha256)) { + $tempOperatingSystemDisplay['SHA256'] = [string]$selectedOperatingSystemSha256 + } + elseif (-not [string]::IsNullOrWhiteSpace([string]$selectedOperatingSystemSha1)) { + $tempOperatingSystemDisplay['SHA1'] = [string]$selectedOperatingSystemSha1 + } + $tempOSDCoreOperatingSystemCloudObject = [pscustomobject]$tempOperatingSystemDisplay + $tempOSDCoreOperatingSystemCloudObject | Format-List | Out-Host + $global:OSDCloudDeploy.OperatingSystemCloudObject = $OperatingSystemCloudObject + } + #================================================= + # OSDCloudWorkflowTasks + # If $WorkflowName is not default, display a message that this Workflow is for Beta or Testing purposes only + if ($WorkflowName -ne 'default') { + Write-Warning "[$(Get-Date -format s)] The workflow '$WorkflowName' is for Beta testing purposes only." + } + + Initialize-OSDCloudWorkflowTasks -WorkflowName $WorkflowName + # Make sure at least one workflow task is defined + if (-not $global:OSDCloudWorkflowTasks) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Initialize-DeployOSDCloud requires at least one valid workflow task. Please check your OSDCloud Workflow Tasks." + } + $global:OSDCloudDeploy.WorkflowTasks = [array]$global:OSDCloudWorkflowTasks + $global:OSDCloudDeploy.WorkflowTaskObject = $global:OSDCloudDeploy.WorkflowTasks | Select-Object -First 1 + $global:OSDCloudDeploy.WorkflowTaskName = $global:OSDCloudDeploy.WorkflowTaskObject.name + #================================================= + # Set initial Operating System + <# + Id : Windows 11 25H2 amd64 Retail en-gb 26200.7462 + OperatingSystem : Windows 11 25H2 + OSVersion : 25H2 + OSArchitecture : amd64 + OSActivation : Retail + LanguageCode : en-gb + Language : English (United Kingdom) + OSBuild : 26200 + OSBuildVersion : 26200.7462 + Size : 5626355066 + Sha1 : + Sha256 : 566a518dc46ba5ea401381810751a8abcfe7d012b2f81c9709b787358c606926 + FileName : 26200.7462.251207-0044.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + FilePath : http://dl.delivery.mp.microsoft.com/filestreamingservice/files/79a3f5e0-d04d-4689-a5d4-3ea35f8b189a/26200.7462.251207-0044.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd + #> + #================================================= + # OperatingSystemObject + $OperatingSystemObject = $global:OSDCloudDeploy.OperatingSystemCloudObject + if (-not $OperatingSystemObject) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to initialize deployment state because OperatingSystemCloudObject is not set." + } + #================================================= + # OperatingSystem + $OperatingSystem = if ($OperatingSystemObject.OperatingSystem) { + [string]$OperatingSystemObject.OperatingSystem + } + else { + $preferredOperatingSystem + } + $global:OSDCloudDeploy.OperatingSystem = $OperatingSystem + $global:OSDCloudDeploy.OperatingSystemValues = [array]$allowedOperatingSystems + #================================================= + # OSActivation + $OSActivation = if ($OperatingSystemObject.OSActivation) { + [string]$OperatingSystemObject.OSActivation + } + elseif ($OperatingSystemObject.Activation) { + [string]$OperatingSystemObject.Activation + } + else { + $preferredOSActivation + } + $global:OSDCloudDeploy.OSActivation = $OSActivation + $global:OSDCloudDeploy.OSActivationValues = [array]$allowedOSActivations + #================================================= + # OSBuild + $global:OSDCloudDeploy.OSBuild = if ($OperatingSystemObject.OSBuild) { + [string]$OperatingSystemObject.OSBuild + } + else { + [string]$OperatingSystemObject.Build + } + #================================================= + # OSBuildVersion + $global:OSDCloudDeploy.OSBuildVersion = if ($OperatingSystemObject.OSBuildVersion) { + [string]$OperatingSystemObject.OSBuildVersion + } + else { + [string]$OperatingSystemObject.Build + } + #================================================= + # OSEdition + $OSEdition = $preferredOSEdition + $OSEditionValues = [array]$allowedOSEditionObjects + $OSEditionObject = $OSEditionValues | Where-Object { $_.Edition -eq $OSEdition } | Select-Object -First 1 + if (-not $OSEditionObject) { + $validOSEditions = $OSEditionValues | ForEach-Object { $_.Edition } + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSEdition '$OSEdition' is not valid for workflow '$WorkflowName'. Valid values: $($validOSEditions -join ', ')" + } + if ([string]::IsNullOrWhiteSpace([string]$OSEditionObject.EditionId)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSEdition '$OSEdition' does not have a valid EditionId in workflow '$WorkflowName'." + } + $global:OSDCloudDeploy.OSEdition = $OSEdition + $global:OSDCloudDeploy.OSEditionValues = $OSEditionValues + $global:OSDCloudDeploy.OSEditionId = $OSEditionObject.EditionId + #================================================= + # OSLanguageCode + $OSLanguageCode = if ($OperatingSystemObject.OSLanguageCode) { + [string]$OperatingSystemObject.OSLanguageCode + } + elseif ($OperatingSystemObject.Language) { + [string]$OperatingSystemObject.Language + } + else { + $preferredOSLanguageCode + } + $global:OSDCloudDeploy.OSLanguageCode = $OSLanguageCode + $global:OSDCloudDeploy.OSLanguageCodeValues = [array]$allowedOSLanguageCodes + #================================================= + # OSVersion + $OSVersion = if ($OperatingSystemObject.OSVersion) { + [string]$OperatingSystemObject.OSVersion + } + elseif ($OperatingSystemObject.ReleaseID) { + [string]$OperatingSystemObject.ReleaseID + } + else { + ($OperatingSystem -split ' ')[2] + } + $global:OSDCloudDeploy.OSVersion = $OSVersion + #================================================= + # OSDCloud Env override layer + # Apply the pre-assembled overrides onto $global:OSDCloudDeploy so they take effect + # everywhere. + <# + if (Get-Command -Name 'Set-OSDCloudEnvOverride' -ErrorAction Ignore) { + Set-OSDCloudEnvOverride -Target $global:OSDCloudDeploy -ResolveOperatingSystem -AddMissingKeys + } + #> + $global:OSDCloudDeploy | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'OSDCloudDeploy.xml') -Force + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: OSDCloudDeploy" + #================================================= +} diff --git a/OSDCloud/private/Initialize-OSDCloudDeploy.ps1 b/OSDCloud/private/Initialize-OSDCloudDeploy.ps1 deleted file mode 100644 index e1eb8e3..0000000 --- a/OSDCloud/private/Initialize-OSDCloudDeploy.ps1 +++ /dev/null @@ -1,275 +0,0 @@ -function Initialize-OSDCloudDeploy { - [CmdletBinding()] - param ( - [Parameter(Mandatory = $false, - Position = 0, - ValueFromPipelineByPropertyName = $true)] - [Alias('Name')] - [System.String] - $WorkflowName = 'default', - - [Parameter(Mandatory = $false)] - [System.Collections.IDictionary] - $EnvParameters, - - [Parameter(Mandatory = $false)] - [ValidateNotNullOrEmpty()] - [System.String] - $ProfileName = 'default' - ) - $ErrorActionPreference = 'Stop' - #================================================= - # Get module details - $ModuleVersion = $($MyInvocation.MyCommand.Module.Version) - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $ModuleVersion" - #================================================= - # OSDCloud Env override layer - # Assemble $global:OSDCloudEnv early so initial property resolution can consume - # values from the selected profile and parameter overrides. - if (Get-Command -Name 'Initialize-OSDCloudEnv' -ErrorAction SilentlyContinue) { - Initialize-OSDCloudEnv -Parameters $EnvParameters -ProfileName $ProfileName | Out-Null - } - #================================================= - # Dependencies - # Make sure curl.exe is present and throw if not - if (-not (Get-Command -Name 'curl.exe' -ErrorAction SilentlyContinue)) { - throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCloud requires 'curl.exe' which is not available on this system. Please ensure curl.exe is available in the system PATH." - } - #================================================= - # Get-DeploymentDiskObject - $DeploymentDiskObject = Get-DeploymentDiskObject - - # Make sure Get-DeploymentDiskObject returns a single object - if (-not $DeploymentDiskObject) { - throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCloud requires at least one Local Disk, but no compatible Local Disk was found." - } - # Warn if multiple disks found and inform which disk will be used - # Include the Friendly Name of the disk for clarity - # Include the size in GB for clarity - if (@($DeploymentDiskObject).Count -gt 1) { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Multiple Local Disks were found. OSDCloud will default to DiskNumber: $($DeploymentDiskObject[0].DiskNumber)" - $DeploymentDiskObject | ForEach-Object { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DiskNumber: $($_.DiskNumber), FriendlyName: $($_.FriendlyName), Size(GB): $([math]::Round($_.Size / 1GB, 2))" - } - } - # Limit to the first disk found - $DeploymentDiskObject = $DeploymentDiskObject | Select-Object -First 1 - #================================================= - # OSDCoreDevice - <# - PS C:\Users\david> $OSDCoreDevice - Name Value - ---- ----- - OSDManufacturer HP - OSDModel HP Z2 Mini G9 Workstation Desktop PC - OSDProduct 895E - ComputerName OSDMAIN - BaseBoardProduct 895E - BiosReleaseDate 11/02/2025 18:00:00 - BiosVersion U50 Ver. 03.05.02 - ComputerManufacturer HP - ComputerModel HP Z2 Mini G9 Workstation Desktop PC - ComputerSystemFamily 103C_53335X HP Workstation - ComputerSystemProduct SBKPF,DWKSBLF,SBKPFV3 - ComputerSystemSKU B40ZBUP#ABA - ComputerSystemType Small Form Factor - HardwareHash - IsAutopilotSpec True - IsDesktop False - IsLaptop False - IsOnBattery False - IsServer False - IsSFF True - IsTablet False - IsTpmSpec True - IsVM False - IsUEFI True - KeyboardLayout 00000409 - KeyboardName Enhanced (101- or 102-key) - NetGateways {192.168.0.1, $null} - NetIPAddress {192.168.0.121, fe80::81d7:1db5:c6cc:e822, fd1a:2b60:6c6d:4ec6:3111:5f06:51a4:c72e, fd1a:2b60:6c6d:4ec6:1236:ad56:5fe8:9d11...} - NetMacAddress {64:4B:F0:39:11:3A, 10:4A:26:03:04:16} - OSArchitecture 64-bit - OSVersion 10.0.26200 - ProcessorArchitecture AMD64 - SerialNumber MXL4414JQT - SystemFirmwareHardwareId EF647623-90B4-44BC-8866-D6FB7F29AB46 - TimeZone Central Standard Time - TotalPhysicalMemoryGB 128 - TpmIsActivated True - TpmIsEnabled True - TpmIsOwned True - TpmManufacturerIdTxt NTC - TpmManufacturerVersion 7.2.3.1 - TpmSpecVersion 2.0, 0, 1.59 - UUID 048A2C6B-A1D9-488C-8BF0-18D0F9A82D91 - #> - if (-not ($global:OSDCoreDevice)) { - Initialize-OSDCoreDevice - } - #================================================= - # OSDCloudWorkflowTasks - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Initialize OSDCloud Tasks" - # If $WorkflowName is not default, display a message that this Workflow is for Beta or Testing purposes only - if ($WorkflowName -ne 'default') { - Write-Warning "[$(Get-Date -format s)] The workflow '$WorkflowName' is for Beta testing purposes only." - } - - Initialize-OSDCloudWorkflowTasks -WorkflowName $WorkflowName - # Make sure at least one workflow task is defined - if (-not $global:OSDCloudWorkflowTasks) { - throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Initialize-OSDCloudDeploy requires at least one valid workflow task. Please check your OSDCloud Workflow Tasks." - } - # Update WorkflowTaskObject and WorkflowTaskName in the Init global variable - $WorkflowTaskObject = $global:OSDCloudWorkflowTasks | Select-Object -First 1 - $WorkflowTaskName = $WorkflowTaskObject.name - #================================================= - # OSDCloudWorkflowSettingsUser - #TODO : Remove dependency on User Settings for future releases - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Initialize OSDCloud Settings User" - # Initialize-OSDCloudWorkflowSettingsUser -WorkflowName $WorkflowName - #================================================= - # OSDCloud Operating Systems - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Get OSDCloud OperatingSystems" - - # Limit to matching Processor Architecture - $ProcessorArchitecture = $global:OSDCoreDevice.ProcessorArchitecture - $global:DeployOSDCloudOperatingSystems = Get-OSDCloudCoreOperatingSystems | Where-Object { $_.OSArchitecture -match "$ProcessorArchitecture" } - - # Need to fail if no OS found for Architecture - if (-not $global:DeployOSDCloudOperatingSystems) { - throw "No Operating Systems found for Architecture: $ProcessorArchitecture. Please check your OSDCloud OperatingSystems." - } - #================================================= - # OSDCloudWorkflowSettingsOS - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Initialize OSDCloud Workflow Settings OS" - Initialize-OSDCloudWorkflowSettingsOS -WorkflowName $WorkflowName - #================================================= - # Set initial Operating System - <# - Id : Windows 11 25H2 amd64 Retail en-gb 26200.7462 - OperatingSystem : Windows 11 25H2 - OSName : Windows 11 - OSVersion : 25H2 - OSArchitecture : amd64 - OSActivation : Retail - LanguageCode : en-gb - Language : English (United Kingdom) - OSBuild : 26200 - OSBuildVersion : 26200.7462 - Size : 5626355066 - Sha1 : - Sha256 : 566a518dc46ba5ea401381810751a8abcfe7d012b2f81c9709b787358c606926 - FileName : 26200.7462.251207-0044.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd - FilePath : http://dl.delivery.mp.microsoft.com/filestreamingservice/files/79a3f5e0-d04d-4689-a5d4-3ea35f8b189a/26200.7462.251207-0044.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-gb.esd - #> - $OperatingSystem = $global:OSDCloudWorkflowSettingsOS.OperatingSystem.default - $OperatingSystemValues = [array]$global:OSDCloudWorkflowSettingsOS.OperatingSystem.values - $OSActivation = $global:OSDCloudWorkflowSettingsOS.OSActivation.default - $OSActivationValues = [array]$global:OSDCloudWorkflowSettingsOS.OSActivation.values - $OSArchitecture = $ProcessorArchitecture - $OSEdition = $global:OSDCloudWorkflowSettingsOS.OSEdition.default - $OSEditionValues = [array]$global:OSDCloudWorkflowSettingsOS.OSEdition.values - $OSEditionId = ($OSEditionValues | Where-Object { $_.Edition -eq $OSEdition }).EditionId - $OSLanguageCode = $global:OSDCloudWorkflowSettingsOS.OSLanguageCode.default - $OSLanguageCodeValues = [array]$global:OSDCloudWorkflowSettingsOS.OSLanguageCode.values - $OSVersion = ($global:OSDCloudWorkflowSettingsOS.OperatingSystem.default -split ' ')[2] - #================================================= - # OSDCloudEnv - #================================================= - # Use OSDCloudEnv to override these properties: - # OperatingSystem, OSEdition, OSActivation, OSLanguageCode - if ($global:OSDCloudEnv) { - if ($global:OSDCloudEnv.OperatingSystem) { - $OperatingSystem = $global:OSDCloudEnv.OperatingSystem - } - if ($global:OSDCloudEnv.OSEdition) { - $OSEdition = $global:OSDCloudEnv.OSEdition - $OSEditionId = ($OSEditionValues | Where-Object { $_.Edition -eq $OSEdition }).EditionId - } - if ($global:OSDCloudEnv.OSActivation) { - $OSActivation = $global:OSDCloudEnv.OSActivation - } - if ($global:OSDCloudEnv.OSLanguageCode) { - $OSLanguageCode = $global:OSDCloudEnv.OSLanguageCode - } - } - #================================================= - # OperatingSystemObject - $OperatingSystemObject = $global:DeployOSDCloudOperatingSystems | Where-Object { $_.OperatingSystem -match $OperatingSystem } | Where-Object { $_.OSActivation -eq $OSActivation } | Where-Object { $_.OSLanguageCode -eq $OSLanguageCode } - if (-not $OperatingSystemObject) { - throw "No Operating System found for OperatingSystem: $OperatingSystem, OSActivation: $OSActivation, OSLanguageCode: $OSLanguageCode. Please check your OSDCloud OperatingSystems." - } - $OSName = $OperatingSystemObject.OSName - $OSBuild = $OperatingSystemObject.OSBuild - $OSBuildVersion = $OperatingSystemObject.OSBuildVersion - $ImageFileName = $OperatingSystemObject.FileName - $ImageFileUrl = $OperatingSystemObject.FilePath - #================================================= - # DriverPacks - $OSDManufacturer = $global:OSDCoreDevice.OSDManufacturer - $OSDModel = $global:OSDCoreDevice.OSDModel - $OSDProduct = $global:OSDCoreDevice.OSDProduct - $DriverPackValues = Get-ModuleCoreDriverPacks - $DriverPackObject = $DriverPackValues | Where-Object { $_.SystemId -match $OSDProduct } | Select-Object -First 1 - - if ($DriverPackObject) { - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] OSDManufacturer: $OSDManufacturer" - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] OSDModel: $OSDModel" - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] OSDProduct: $OSDProduct" - $DriverPackName = $DriverPackObject.Name - $DriverPackUrl = $DriverPackObject.Url - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] DriverPack: $DriverPackName" - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] DriverPack Url: $DriverPackUrl" - } else { - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] OSDManufacturer: $OSDManufacturer" - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] OSDModel: $OSDModel" - Write-Host -ForegroundColor Gray "[$(Get-Date -format s)] OSDProduct: $OSDProduct" - } - #================================================= - # Main - $global:OSDCloudDeploy = $null - $global:OSDCloudDeploy = [ordered]@{ - DeploymentDiskObject = $DeploymentDiskObject - DriverFolderName = $null - DriverFolderNames = @() - DriverFolderPath = $null - DriverFolderPaths = @() - DriverFolderSelections = @() - DriverPackName = $DriverPackName - DriverPackObject = $DriverPackObject - DriverPackValues = [array]$DriverPackValues - Flows = [array]$global:OSDCloudWorkflowTasks - Function = $($MyInvocation.MyCommand.Name) - ImageFileName = $ImageFileName - ImageFileUrl = $ImageFileUrl - LaunchMethod = 'OSDCloudWorkflow' - Module = $($MyInvocation.MyCommand.Module.Name) - OperatingSystem = $OperatingSystem - OperatingSystemObject = $OperatingSystemObject - OperatingSystemValues = $OperatingSystemValues - OSActivation = $OSActivation - OSActivationValues = $OSActivationValues - OSArchitecture = $OSArchitecture - OSBuild = $OSBuild - OSBuildVersion = $OSBuildVersion - OSEdition = $OSEdition - OSEditionId = $OSEditionId - OSEditionValues = $OSEditionValues - OSLanguageCode = $OSLanguageCode - OSLanguageCodeValues = $OSLanguageCodeValues - OSVersion = $OSVersion - TimeStart = $null - WorkflowName = $WorkflowName - WorkflowTaskName = $WorkflowTaskName - WorkflowTaskObject = $WorkflowTaskObject - } - #================================================= - # OSDCloud Env override layer - # Apply the pre-assembled overrides onto $global:OSDCloudDeploy so they take effect - # everywhere. - if (Get-Command -Name 'Set-OSDCloudEnvOverride' -ErrorAction SilentlyContinue) { - Set-OSDCloudEnvOverride -Target $global:OSDCloudDeploy -ResolveOperatingSystem -AddMissingKeys - } - #================================================= -} diff --git a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupDrivers.ps1 b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupDrivers.ps1 index 5dd5ee5..bd40a91 100644 --- a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupDrivers.ps1 +++ b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupDrivers.ps1 @@ -74,7 +74,7 @@ function Initialize-WinPEStartupDrivers { Write-Verbose "No .inf files found in $driverFolder" continue } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Drivers: $driverFolder" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Drivers: $driverFolder" foreach ($inf in $infFiles) { # Write-Verbose "Loading driver: $($inf.FullName)" diff --git a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupEnvironment.ps1 b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupEnvironment.ps1 index 9af5be0..1f339e3 100644 --- a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupEnvironment.ps1 +++ b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupEnvironment.ps1 @@ -55,7 +55,7 @@ function Initialize-WinPEStartupEnvironment { process { if ($skipExecution) { return } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Initialize WinPE Startup" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Initialize WinPEStartup" # ── Shell Folders ─────────────────────────────────────────────── $shellFolders = @( Join-Path -Path $systemDrive -ChildPath 'Program Files\WindowsPowerShell\Scripts' diff --git a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupFiles.ps1 b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupFiles.ps1 index 642eb0a..daa0ff4 100644 --- a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupFiles.ps1 +++ b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupFiles.ps1 @@ -69,7 +69,7 @@ function Initialize-WinPEStartupFiles { if (Test-Path -Path $contentFolder -PathType Container) { Write-Verbose "Found content folder: $contentFolder" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Files: $contentFolder" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Files: $contentFolder" # Write-Verbose "Copying content from $contentFolder to $destination" Invoke-Robocopy -Source $contentFolder -Destination $destination } diff --git a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupMain.ps1 b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupMain.ps1 index 0ac0778..c945d85 100644 --- a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupMain.ps1 +++ b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupMain.ps1 @@ -42,8 +42,8 @@ function Initialize-WinPEStartupMain { process { if ($skipExecution) { return } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Initialize wpeinit" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Initialize wpeutil" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Initialize wpeinit" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Initialize wpeutil" Write-Verbose 'Running wpeinit.exe' Invoke-WpeInit Start-Sleep -Seconds 2 # Wait for wpeinit to complete before running wpeutil commands @@ -65,7 +65,7 @@ function Initialize-WinPEStartupMain { Invoke-WpeUtil -Command 'UpdateBootInfo' Start-Sleep -Seconds 2 # Wait for Set-WinPEStartupUSBDriveLetter to complete before proceeding - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Initialize network" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Initialize network" ipconfig /release | Out-Null ipconfig /renew | Out-Null diff --git a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupScript.ps1 b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupScript.ps1 index 249aa23..013ae7e 100644 --- a/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupScript.ps1 +++ b/OSDCloud/private/WinPEStartup/Initialize-WinPEStartupScript.ps1 @@ -17,7 +17,7 @@ function Initialize-WinPEStartupScript { .PARAMETER SubfolderPath The relative subfolder path to search for on each drive. Defaults - to 'WinPEStartup\Scripts'. + to 'WinPEStartup\scripts'. .PARAMETER FileName The file name pattern to match. Defaults to 'startnet.cmd'. Only .cmd @@ -36,7 +36,7 @@ function Initialize-WinPEStartupScript { .EXAMPLE Initialize-WinPEStartupScript - Scans all drives for WinPEStartup\Scripts\startnet.cmd. + Scans all drives for WinPEStartup\scripts\startnet.cmd. .EXAMPLE Initialize-WinPEStartupScript -NoExit @@ -62,7 +62,7 @@ function Initialize-WinPEStartupScript { param ( [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] - [string]$SubfolderPath = 'WinPEStartup\Scripts', + [string]$SubfolderPath = 'WinPEStartup\scripts', [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] @@ -110,7 +110,7 @@ function Initialize-WinPEStartupScript { foreach ($scriptFile in $scriptFiles) { switch ($scriptFile.Extension) { '.cmd' { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Script: $($scriptFile.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Script: $($scriptFile.FullName)" Write-Verbose "Executing CMD script: $($scriptFile.FullName)" Invoke-CmdScript -ScriptPath $scriptFile.FullName } @@ -124,7 +124,7 @@ function Initialize-WinPEStartupScript { else { $action = 'Execute PowerShell script in process' } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Script: $($scriptFile.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Script: $($scriptFile.FullName)" Write-Verbose "Executing PowerShell script: $($scriptFile.FullName)" if ($NewProcess -and $NoExit) { Start-Process -FilePath 'powershell.exe' -ArgumentList '-NoExit', '-NoLogo', '-File', $scriptFile.FullName -Wait diff --git a/OSDCloud/private/WinPEStartup/Invoke-OSDCloudWifi.ps1 b/OSDCloud/private/WinPEStartup/Invoke-OSDCloudWifi.ps1 index 9ed0691..cd4a199 100644 --- a/OSDCloud/private/WinPEStartup/Invoke-OSDCloudWifi.ps1 +++ b/OSDCloud/private/WinPEStartup/Invoke-OSDCloudWifi.ps1 @@ -80,11 +80,11 @@ function Invoke-OSDCloudWifi { #================================================= # Test-OSDCloudInternetConnection if (Test-OSDCloudInternetConnection -Uri 'google.com') { - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Ping google.com success. Device is already connected to the Internet" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ping google.com success. Device is already connected to the Internet" $StartOSDCloudWifi = $false } else { - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Ping google.com failed. Will attempt to connect to a Wireless Network" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ping google.com failed. Will attempt to connect to a Wireless Network" $StartOSDCloudWifi = $true } #================================================= @@ -110,7 +110,7 @@ function Invoke-OSDCloudWifi { } if (!$StartOSDCloudWifi) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Unable to enable Wireless Network due to missing components" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Unable to enable Wireless Network due to missing components" if ($MissingDlls.Count -gt 0) { Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Missing DLL files: $($MissingDlls -join ', ')" } @@ -126,10 +126,10 @@ function Invoke-OSDCloudWifi { Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WlanSvc service is already running" } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Starting WlanSvc service from state '$($WlanService.Status)'" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Starting WlanSvc service from state '$($WlanService.Status)'" Start-Service -Name 'WlanSvc' -ErrorAction Stop - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Waiting for WlanSvc service to start" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Waiting for WlanSvc service to start" $WlanService.WaitForStatus([System.ServiceProcess.ServiceControllerStatus]::Running, [TimeSpan]::FromSeconds(30)) $WlanService.Refresh() @@ -137,7 +137,7 @@ function Invoke-OSDCloudWifi { throw "WlanSvc did not reach the Running state within the timeout period." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] WlanSvc service started successfully" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] WlanSvc service started successfully" } } catch [System.TimeoutException] { @@ -209,7 +209,7 @@ function Invoke-OSDCloudWifi { if ($Module) { $UEFIWifiProfile = Get-UEFIVariable -Namespace "{43B9C282-A6F5-4C36-B8DE-C8738F979C65}" -VariableName PrebootWifiProfile if ($UEFIWifiProfile) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Found Wi-Fi Profile in HP UEFI" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Found Wi-Fi Profile in HP UEFI" $UEFIWifiProfile = $UEFIWifiProfile -Replace "`0","" $SSIDString = $UEFIWifiProfile.Split(",") | Where-Object {$_ -match "SSID"} @@ -218,10 +218,10 @@ function Invoke-OSDCloudWifi { $KeyString = $UEFIWifiProfile.Split(",") | Where-Object {$_ -match "Password"} $Key = ($KeyString.Split(":") | Where-Object {$_ -notmatch "Password"}).Replace("`"","") if ($SSID) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Found $SSID in UEFI, Attepting to Create Profile and Connect" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Found $SSID in UEFI, Attepting to Create Profile and Connect" Set-OSDCloudWifi -WLanName $SSID -Passwd $Key -outfile "$env:TEMP\UEFIWifiProfile.XML" if (!($WifiProfile)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Setting WifiProfile var to $env:TEMP\UEFIWifiProfile.XML" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Setting WifiProfile var to $env:TEMP\UEFIWifiProfile.XML" $WifiProfile = "$env:TEMP\UEFIWifiProfile.XML" } } @@ -233,7 +233,7 @@ function Invoke-OSDCloudWifi { #TODO Test on ARM64 if ($StartOSDCloudWifi) { if ($WirelessNetworkAdapter.NetEnabled -eq $true) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Wireless is already connected ... Disconnecting" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Wireless is already connected ... Disconnecting" (Get-WmiObject -ClassName Win32_NetworkAdapter | Where-Object { $_.InterfaceIndex -eq $WirelessNetworkAdapter.InterfaceIndex }).disable() | Out-Null Start-Sleep -Seconds 5 (Get-WmiObject -ClassName Win32_NetworkAdapter | Where-Object { $_.InterfaceIndex -eq $WirelessNetworkAdapter.InterfaceIndex }).enable() | Out-Null @@ -245,7 +245,7 @@ function Invoke-OSDCloudWifi { # Connect if ($StartOSDCloudWifi) { if ($WifiProfile -and (Test-Path $WifiProfile)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Starting unattended Wi-Fi connection " + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Starting unattended Wi-Fi connection " } else { Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Starting Wi-Fi Network Menu " @@ -262,15 +262,17 @@ function Invoke-OSDCloudWifi { if ($StartOSDCloudWifi) { # use saved wi-fi profile to make the unattended connection try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Establishing a connection using $WifiProfile" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Establishing a connection using $WifiProfile" Connect-OSDCloudWifiByXMLProfile $WifiProfile -ErrorAction Stop Start-Sleep -Seconds 10 } catch { Write-Warning $_ # to avoid infinite loop of tries - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing invalid Wi-Fi profile '$WifiProfile'" - Remove-Item $WifiProfile -Force + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing invalid Wi-Fi profile '$WifiProfile'" + if (Test-Path -LiteralPath $WifiProfile) { + Remove-Item -LiteralPath $WifiProfile -Force + } continue } } @@ -294,7 +296,7 @@ function Invoke-OSDCloudWifi { $SSID = $SSIDList | Where-Object { $_.index -eq $SSIDIndex } | Select-Object -exp SSID # connect to selected Wi-Fi - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Establishing a connection to SSID $SSID" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Establishing a connection to SSID $SSID" try { Connect-OSDCloudWifi $SSID -ErrorAction Stop } catch { @@ -312,14 +314,14 @@ function Invoke-OSDCloudWifi { } else { $text = "to SSID $SSID" } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Waiting for a connection $text" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Waiting for a connection $text" Start-Sleep -Seconds 15 $i = 30 #TODO Resolve issue with WirelessNetworkAdapter while (((Get-CimInstance -ClassName Win32_NetworkAdapterConfiguration | Where-Object { $_.Index -eq $($WirelessNetworkAdapter.DeviceID) }).IPEnabled -eq $false) -and $i -gt 0) { --$i - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Waiting for Wi-Fi Connection ($i)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Waiting for Wi-Fi Connection ($i)" Start-Sleep -Seconds 1 } } diff --git a/OSDCloud/private/WinPEStartup/Invoke-PEStartupCommand.ps1 b/OSDCloud/private/WinPEStartup/Invoke-PEStartupCommand.ps1 index 59ab381..f72d1a1 100644 --- a/OSDCloud/private/WinPEStartup/Invoke-PEStartupCommand.ps1 +++ b/OSDCloud/private/WinPEStartup/Invoke-PEStartupCommand.ps1 @@ -68,7 +68,7 @@ $Unattend = @" $Unattend | Out-File -FilePath "$env:Temp\$Command.xml" -Encoding utf8 -Force if ($Wait -and $NoExit) { - # Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] This window may need to be closed to continue the WinPE startup process" + # Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] This window may need to be closed to continue the WinPEStartup process" } if ($Wait) { diff --git a/OSDCloud/private/WinPEStartup/Invoke-PEStartupUpdateModule.ps1 b/OSDCloud/private/WinPEStartup/Invoke-PEStartupUpdateModule.ps1 index 95c5eec..2a1aa5a 100644 --- a/OSDCloud/private/WinPEStartup/Invoke-PEStartupUpdateModule.ps1 +++ b/OSDCloud/private/WinPEStartup/Invoke-PEStartupUpdateModule.ps1 @@ -89,7 +89,7 @@ $Unattend = @" $Unattend | Out-File -FilePath "$env:Temp\UpdatePSModule$Name.xml" -Encoding utf8 -Force if ($Wait -and $NoExit) { - # Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] This window may need to be closed to continue the WinPE startup process" + # Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] This window may need to be closed to continue the WinPEStartup process" } if ($Wait) { diff --git a/OSDCloud/private/WinPEStartup/OSDCloudWifi.ps1 b/OSDCloud/private/WinPEStartup/OSDCloudWifi.ps1 index 393faae..286f497 100644 --- a/OSDCloud/private/WinPEStartup/OSDCloudWifi.ps1 +++ b/OSDCloud/private/WinPEStartup/OSDCloudWifi.ps1 @@ -71,7 +71,7 @@ function Connect-OSDCloudWifiByXMLProfile { ) $SSID = ([xml](Get-Content $wifiProfile)).WLANProfile.Name - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Connecting to $SSID" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Connecting to $SSID" # just for sure $null = Netsh WLAN delete profile "$SSID" @@ -197,7 +197,9 @@ function Set-OSDCloudWifi() { Copy-Item $WlanConfig -Destination $OutFile } $result = Netsh WLAN add profile filename=$WlanConfig - Remove-Item $WlanConfig -ErrorAction SilentlyContinue + if (Test-Path -LiteralPath $WlanConfig) { + Remove-Item -LiteralPath $WlanConfig -ErrorAction SilentlyContinue + } if ($result -notmatch "is added on interface") { throw "There was en error when setting up Wi-Fi $WLanName connection profile. Error was $result" } diff --git a/OSDCloud/private/WinPEStartup/Set-WinPEStartupUSBDriveLetter.ps1 b/OSDCloud/private/WinPEStartup/Set-WinPEStartupUSBDriveLetter.ps1 index cbf7930..7cfd85c 100644 --- a/OSDCloud/private/WinPEStartup/Set-WinPEStartupUSBDriveLetter.ps1 +++ b/OSDCloud/private/WinPEStartup/Set-WinPEStartupUSBDriveLetter.ps1 @@ -102,7 +102,7 @@ function Set-WinPEStartupUSBDriveLetter { } try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] USB DriveLetter: $oldLetter -> $newLetter" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] USB DriveLetter: $oldLetter -> $newLetter" Set-Partition -DiskNumber $usbPartition.DiskNumber -PartitionNumber $usbPartition.PartitionNumber -NewDriveLetter $newLetter -ErrorAction Stop $resultCount += 1 } diff --git a/OSDCloud/private/core-device/Get-OSDCoreCacheContent.ps1 b/OSDCloud/private/core-cache/Get-OSDCoreCacheContent.ps1 similarity index 98% rename from OSDCloud/private/core-device/Get-OSDCoreCacheContent.ps1 rename to OSDCloud/private/core-cache/Get-OSDCoreCacheContent.ps1 index f3996fa..bf2aed6 100644 --- a/OSDCloud/private/core-device/Get-OSDCoreCacheContent.ps1 +++ b/OSDCloud/private/core-cache/Get-OSDCoreCacheContent.ps1 @@ -7,7 +7,7 @@ function Get-OSDCoreCacheContent { Enumerates mounted file system drives and discovers OSDCloud cache content. Returns objects with Type, Name, FullName, SizeMB, DriveRoot, VolumeLabel, VolumeUniqueId, and USB properties. - Exports the returned object to $env:Temp\OSDCoreCacheContent.xml each time the function runs. + Exports the returned object to $env:Temp\OSDCoreCache.xml each time the function runs. If Type is omitted, retur ns all supported cache content types. @@ -87,7 +87,7 @@ function Get-OSDCoreCacheContent { $Error.Clear() Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDCoreCacheContent is updating" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDCoreCacheContent is updating" function Get-FileOnlySizeMB { param( @@ -311,7 +311,7 @@ function Get-OSDCoreCacheContent { } $result = @($result | Sort-Object -Property FullName, Type -Unique | Sort-Object -Property FullName) - $result | Export-Clixml -Path (Join-Path -Path $env:Temp -ChildPath 'OSDCoreCacheContent.xml') -Force + $result | Export-Clixml -Path (Join-Path -Path $env:Temp -ChildPath 'OSDCoreCache.xml') -Force Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($result.Count) path(s)" Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" diff --git a/OSDCloud/private/core-device/Get-OSDCoreCacheDrive.ps1 b/OSDCloud/private/core-cache/Get-OSDCoreCacheDrive.ps1 similarity index 100% rename from OSDCloud/private/core-device/Get-OSDCoreCacheDrive.ps1 rename to OSDCloud/private/core-cache/Get-OSDCoreCacheDrive.ps1 diff --git a/OSDCloud/private/core-device/Get-OSDCoreCacheUSBPath.ps1 b/OSDCloud/private/core-cache/Get-OSDCoreCacheUSBPath.ps1 similarity index 100% rename from OSDCloud/private/core-device/Get-OSDCoreCacheUSBPath.ps1 rename to OSDCloud/private/core-cache/Get-OSDCoreCacheUSBPath.ps1 diff --git a/OSDCloud/private/core-cache/Initialize-OSDCoreCache.ps1 b/OSDCloud/private/core-cache/Initialize-OSDCoreCache.ps1 new file mode 100644 index 0000000..4f3a71f --- /dev/null +++ b/OSDCloud/private/core-cache/Initialize-OSDCoreCache.ps1 @@ -0,0 +1,36 @@ +function Initialize-OSDCoreCache { + <# + .SYNOPSIS + Initializes the in-memory OSDCore cache inventory. + + .DESCRIPTION + Resets the global OSDCore cache collection and repopulates it from + local cache content discovered by Get-OSDCoreCacheContent. + + The resulting cache objects are stored in $global:OSDCoreCache for + subsequent workflow and selection logic. + + .OUTPUTS + None. This function updates $global:OSDCoreCache. + + .EXAMPLE + Initialize-OSDCoreCache + + Rebuilds $global:OSDCoreCache using currently discovered local + OSDCloud cache content. + + .NOTES + Depends on Get-OSDCoreCacheContent being available in the session. + #> + [CmdletBinding()] + param () + #================================================= + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($MyInvocation.MyCommand.Name)]" + #================================================= + $global:OSDCoreCache = @() + $global:OSDCoreCache = Get-OSDCoreCacheContent + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: OSDCoreCache" + #================================================= + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + #================================================= +} diff --git a/OSDCloud/private/core-device/Test-OSDCoreCacheUSB.ps1 b/OSDCloud/private/core-cache/Test-OSDCoreCacheUSB.ps1 similarity index 100% rename from OSDCloud/private/core-device/Test-OSDCoreCacheUSB.ps1 rename to OSDCloud/private/core-cache/Test-OSDCoreCacheUSB.ps1 diff --git a/OSDCloud/private/core-device/Update-RecastOSDCloudUSBCache.ps1 b/OSDCloud/private/core-cache/Update-RecastOSDCloudUSBCache.ps1 similarity index 74% rename from OSDCloud/private/core-device/Update-RecastOSDCloudUSBCache.ps1 rename to OSDCloud/private/core-cache/Update-RecastOSDCloudUSBCache.ps1 index 2a08512..0d74a3e 100644 --- a/OSDCloud/private/core-device/Update-RecastOSDCloudUSBCache.ps1 +++ b/OSDCloud/private/core-cache/Update-RecastOSDCloudUSBCache.ps1 @@ -68,27 +68,27 @@ function Update-RecastOSDCloudUSBCache { [Parameter(Mandatory = $false, HelpMessage = 'Operating system release identifier for deployment selection.')] [ValidateNotNullOrEmpty()] - [ValidateSet('25H2','24H2','23H2','22H2','21H2')] + [ValidateSet('25H2', '24H2', '23H2', '22H2', '21H2')] [string] $OSReleaseID = '25H2', [Parameter(Mandatory = $false, HelpMessage = 'Operating system language code for deployment selection.')] [ValidateNotNullOrEmpty()] [ValidateSet ( - 'ar-sa','bg-bg','cs-cz','da-dk','de-de','el-gr', - 'en-gb','en-us','es-es','es-mx','et-ee','fi-fi', - 'fr-ca','fr-fr','he-il','hr-hr','hu-hu','it-it', - 'ja-jp','ko-kr','lt-lt','lv-lv','nb-no','nl-nl', - 'pl-pl','pt-br','pt-pt','ro-ro','ru-ru','sk-sk', - 'sl-si','sr-latn-rs','sv-se','th-th','tr-tr', - 'uk-ua','zh-cn','zh-tw' + 'ar-sa', 'bg-bg', 'cs-cz', 'da-dk', 'de-de', 'el-gr', + 'en-gb', 'en-us', 'es-es', 'es-mx', 'et-ee', 'fi-fi', + 'fr-ca', 'fr-fr', 'he-il', 'hr-hr', 'hu-hu', 'it-it', + 'ja-jp', 'ko-kr', 'lt-lt', 'lv-lv', 'nb-no', 'nl-nl', + 'pl-pl', 'pt-br', 'pt-pt', 'ro-ro', 'ru-ru', 'sk-sk', + 'sl-si', 'sr-latn-rs', 'sv-se', 'th-th', 'tr-tr', + 'uk-ua', 'zh-cn', 'zh-tw' )] [string] $OSLanguageCode, [Parameter(Mandatory = $false, HelpMessage = 'Operating system activation channel for deployment selection.')] [ValidateNotNullOrEmpty()] - [ValidateSet('Retail','Volume')] + [ValidateSet('Retail', 'Volume')] [string] $OSActivation = 'Retail', @@ -114,7 +114,7 @@ function Update-RecastOSDCloudUSBCache { [Parameter(Mandatory = $false, HelpMessage = 'WinPE Post Action.')] [ValidateNotNullOrEmpty()] - [ValidateSet('Quit','Restart','Shutdown')] + [ValidateSet('Quit', 'Restart', 'Shutdown')] [string] $WinPEPostAction = 'Quit' ) @@ -125,13 +125,16 @@ function Update-RecastOSDCloudUSBCache { Show-OSDCoreLicenseHelp return } + if (-not $global:OSDCoreLicense) { + Initialize-OSDCoreLicense + } #================================================= # Emit function/version context and surface legacy parameter usage. $ModuleVersion = $($MyInvocation.MyCommand.Module.Version) - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $ModuleVersion" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($MyInvocation.MyCommand.Name)] $ModuleVersion" #================================================= # Dependency guard: OSDCloud relies on curl.exe for downloads. - if (-not (Get-Command -Name 'curl.exe' -ErrorAction SilentlyContinue)) { + if (-not (Get-Command -Name 'curl.exe' -ErrorAction Ignore)) { throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCloud requires 'curl.exe' which is not available on this system. Please ensure curl.exe is available in the system PATH." } #================================================= @@ -140,12 +143,12 @@ function Update-RecastOSDCloudUSBCache { if (-not $osdCoreCacheUsbPath) { throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No eligible OSDCoreCache USB drive was detected. Connect a USB drive with an OSDCloud directory, NTFS or exFAT format, and more than 10 GB free." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDCoreCache USB is available at $osdCoreCacheUsbPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDCoreCache USB is available at $osdCoreCacheUsbPath" #================================================= # Resolve architecture-specific edition constraints and normalize edition metadata. $OSEditionValuesByArchitecture = @{ - amd64 = @('Home','Home N','Education','Education N','Pro','Pro N','Enterprise','Enterprise N') - arm64 = @('Home','Pro','Enterprise') + amd64 = @('Home', 'Home N', 'Education', 'Education N', 'Pro', 'Pro N', 'Enterprise', 'Enterprise N') + arm64 = @('Home', 'Pro', 'Enterprise') } if (-not $OSEditionValuesByArchitecture.ContainsKey($OSArchitecture)) { throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unsupported OSArchitecture '$OSArchitecture'." @@ -157,13 +160,13 @@ function Update-RecastOSDCloudUSBCache { } $OSEditionIdByName = @{ - 'Home' = 'Core' - 'Home N' = 'CoreN' - 'Education' = 'Education' - 'Education N' = 'EducationN' - 'Pro' = 'Professional' - 'Pro N' = 'ProfessionalN' - 'Enterprise' = 'Enterprise' + 'Home' = 'Core' + 'Home N' = 'CoreN' + 'Education' = 'Education' + 'Education N' = 'EducationN' + 'Pro' = 'Professional' + 'Pro N' = 'ProfessionalN' + 'Enterprise' = 'Enterprise' 'Enterprise N' = 'EnterpriseN' } $OSEditionId = $OSEditionIdByName[$OSEdition] @@ -178,22 +181,18 @@ function Update-RecastOSDCloudUSBCache { } #================================================= # OSDCoreOperatingSystems - if ($PSBoundParameters.ContainsKey('OSArchitecture')) { - $global:OSDCoreOperatingSystems = Get-OSDCoreOperatingSystems | Where-Object { $_.Architecture -match "$OSArchitecture" } - } - - # Validate that the OS catalog was preloaded for this architecture. - if (-not $global:OSDCoreOperatingSystems) { - throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to load OperatingSystem Catalog" - } + # Let Set-OSDCoreOperatingSystemCloudObject load the module-native provider catalog. # Automatically determine default OSLanguageCode from the detected keyboard layout if not explicitly provided. if (-not $PSBoundParameters.ContainsKey('OSLanguageCode')) { - if (Get-Command -Name 'Convert-KeyboardLayoutToLanguageCode' -ErrorAction SilentlyContinue) { + if ($global:OSDCoreLicense.IsRegistered -and (Get-Command -Name 'Convert-KeyboardLayoutToLanguageCode' -ErrorAction Ignore)) { $OSLanguageCode = Convert-KeyboardLayoutToLanguageCode -KeyboardLayout $global:OSDCoreDevice.KeyboardLayout -FallbackLanguageCode 'en-US' } else { $OSLanguageCode = 'en-US' + if (-not $global:OSDCoreLicense.IsRegistered) { + Write-Verbose -Message ('[{0}] [{1}] Skipping OSLanguageCode keyboard conversion because OSDCloud is not registered.' -f (Get-Date -format s), $MyInvocation.MyCommand.Name) + } } } @@ -203,7 +202,8 @@ function Update-RecastOSDCloudUSBCache { -OSArchitecture $OSArchitecture ` -OSLanguageCode $OSLanguageCode ` -OSReleaseID $OSReleaseID ` - -OSVersion 'Windows 11' + -OSVersion 'Windows 11' ` + -RefreshCatalog if (-not $global:OSDCoreOperatingSystemCloudObject) { throw "[$(Get-Date -format s)] Unable to find a matching operating system object for OSReleaseID '$OSReleaseID', OSArchitecture '$OSArchitecture', Activation '$OSActivation', and Language '$OSLanguageCode'." @@ -213,7 +213,7 @@ function Update-RecastOSDCloudUSBCache { # Resolve driver pack metadata for the detected device, with optional manufacturer overrides supplied by the caller. if ($PSBoundParameters.ContainsKey('OSDManufacturer')) { $global:OSDCoreDevice.OSDManufacturer = $OSDManufacturer - $global:OSDCoreDriverPacks = Get-ModuleCoreDriverPacks -OSDManufacturer $OSDManufacturer + $global:ModuleCoreDriverPacks = Initialize-ModuleCoreDriverPacks -OSDManufacturer $OSDManufacturer } # Resolve driver pack metadata for the detected device, with optional model overrides supplied by the caller. @@ -225,34 +225,47 @@ function Update-RecastOSDCloudUSBCache { if ($PSBoundParameters.ContainsKey('OSDProduct')) { $global:OSDCoreDevice.OSDProduct = $OSDProduct } - $global:OSDCoreDriverPackCloudObject = $global:OSDCoreDriverPacks | Where-Object { $_.SystemId -match $global:OSDCoreDevice.OSDProduct } | Select-Object -First 1 + $global:OSDCoreDriverPackCloudObject = $global:ModuleCoreDriverPacks | Where-Object { $_.SystemId -match $global:OSDCoreDevice.OSDProduct } | Select-Object -First 1 #================================================ # OSDCoreOperatingSystemCloudObject if ($global:OSDCoreOperatingSystemCloudObject) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Verifying OSDCoreOperatingSystemCloudObject." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Verifying OSDCoreOperatingSystemCloudObject." + $selectedOperatingSystemName = if ($global:OSDCoreOperatingSystemCloudObject.Id) { $global:OSDCoreOperatingSystemCloudObject.Id } else { $global:OSDCoreOperatingSystemCloudObject.Name } + $selectedOperatingSystemVersion = if ($global:OSDCoreOperatingSystemCloudObject.OSName) { $global:OSDCoreOperatingSystemCloudObject.OSName } else { $global:OSDCoreOperatingSystemCloudObject.Version } + $selectedOperatingSystemReleaseId = if ($global:OSDCoreOperatingSystemCloudObject.OSVersion) { $global:OSDCoreOperatingSystemCloudObject.OSVersion } else { $global:OSDCoreOperatingSystemCloudObject.ReleaseID } + $selectedOperatingSystemUrl = if ($global:OSDCoreOperatingSystemCloudObject.FilePath) { $global:OSDCoreOperatingSystemCloudObject.FilePath } else { $global:OSDCoreOperatingSystemCloudObject.Url } + $selectedOperatingSystemSha256 = if ($global:OSDCoreOperatingSystemCloudObject.Sha256) { $global:OSDCoreOperatingSystemCloudObject.Sha256 } else { $global:OSDCoreOperatingSystemCloudObject.SHA256 } + $selectedOperatingSystemSha1 = if ($global:OSDCoreOperatingSystemCloudObject.Sha1) { $global:OSDCoreOperatingSystemCloudObject.Sha1 } else { $global:OSDCoreOperatingSystemCloudObject.SHA1 } + # Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject:" - $tempOSDCoreOperatingSystemCloudObject = $global:OSDCoreOperatingSystemCloudObject | Select-Object -Property Name, FileName, Url, SHA1, SHA256 + $tempOSDCoreOperatingSystemCloudObject = [pscustomobject]@{ + Name = $selectedOperatingSystemName + FileName = [string]$global:OSDCoreOperatingSystemCloudObject.FileName + Url = [string]$selectedOperatingSystemUrl + SHA1 = [string]$selectedOperatingSystemSha1 + SHA256 = [string]$selectedOperatingSystemSha256 + } # $global:OSDCoreOperatingSystemCloudObject | Out-Host $tempOSDCoreOperatingSystemCloudObject | Out-Host # Confirm the selected operating system download URL before offering cache download work. - $OSDCoreOperatingSystemCloudObjectUrlReachable = Test-OSDCoreOperatingSystemCloudObject -OperatingSystemCloudObject $global:OSDCoreOperatingSystemCloudObject + $OSDCoreOperatingSystemCloudObjectUrlReachable = Test-OperatingSystemCloudObject -OperatingSystemCloudObject $global:OSDCoreOperatingSystemCloudObject if ($OSDCoreOperatingSystemCloudObjectUrlReachable) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem URL is reachable. OK." + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] OperatingSystem is available online and ready to downloaded." } else { - Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OperatingSystem URL is not reachable." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OperatingSystem URL is not reachable online and cannot be downloaded." } # Prefer SHA256 when the catalog provides it, and fall back to SHA1 for older entries. $expectedOperatingSystemHash = $null $expectedOperatingSystemHashAlgorithm = $null - if (-not [string]::IsNullOrWhiteSpace([string]$global:OSDCoreOperatingSystemCloudObject.SHA256)) { - $expectedOperatingSystemHash = [string]$global:OSDCoreOperatingSystemCloudObject.SHA256 + if (-not [string]::IsNullOrWhiteSpace([string]$selectedOperatingSystemSha256)) { + $expectedOperatingSystemHash = [string]$selectedOperatingSystemSha256 $expectedOperatingSystemHashAlgorithm = 'SHA256' } - elseif (-not [string]::IsNullOrWhiteSpace([string]$global:OSDCoreOperatingSystemCloudObject.SHA1)) { - $expectedOperatingSystemHash = [string]$global:OSDCoreOperatingSystemCloudObject.SHA1 + elseif (-not [string]::IsNullOrWhiteSpace([string]$selectedOperatingSystemSha1)) { + $expectedOperatingSystemHash = [string]$selectedOperatingSystemSha1 $expectedOperatingSystemHashAlgorithm = 'SHA1' } @@ -265,25 +278,25 @@ function Update-RecastOSDCloudUSBCache { if ($actualOperatingSystemHash -ne $expectedOperatingSystemHash.Trim()) { throw "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject $expectedOperatingSystemHashAlgorithm hash mismatch for $($osdCoreOperatingSystemCacheContent.FullName). Expected $($expectedOperatingSystemHash.Trim()), found $actualOperatingSystemHash." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem cached file $expectedOperatingSystemHashAlgorithm hash verified. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem is saved in cache and $expectedOperatingSystemHashAlgorithm hash verified." } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem cached file hash was not verified because no hash property was available." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem cached file hash was not verified because no hash property was available." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem is ready at $($osdCoreOperatingSystemCacheContent.FullName)." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem is ready at $($osdCoreOperatingSystemCacheContent.FullName)." } else { - Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OperatingSystem is not available on a USB drive." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OperatingSystem is not available in the offline cache." # Do not offer a download when the catalog URL cannot be reached. if (-not $OSDCoreOperatingSystemCloudObjectUrlReachable) { - Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OperatingSystem download was not offered because the URL is not reachable." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OperatingSystem download was not offered because the URL is not reachable online and cannot be downloaded." } elseif (Test-OSDCoreCacheUSB) { $osdCoreCacheUsbPath = Get-OSDCoreCacheUSBPath | Select-Object -First 1 if ($osdCoreCacheUsbPath) { # Build the destination path used by the USB cache OS folder layout. - $osdCoreOperatingSystemDestinationChildPath = "$($global:OSDCoreOperatingSystemCloudObject.Version) $($global:OSDCoreOperatingSystemCloudObject.ReleaseID)" + $osdCoreOperatingSystemDestinationChildPath = "$selectedOperatingSystemVersion $selectedOperatingSystemReleaseId" $osdCoreOperatingSystemDestination = [System.IO.Path]::GetFullPath((Join-Path -Path (Join-Path -Path ([string]$osdCoreCacheUsbPath) -ChildPath 'OS') -ChildPath $osdCoreOperatingSystemDestinationChildPath)) $osdCoreOperatingSystemDestinationFullName = Join-Path -Path $osdCoreOperatingSystemDestination -ChildPath ([string]$global:OSDCoreOperatingSystemCloudObject.FileName) $downloadOperatingSystem = $true @@ -295,12 +308,12 @@ function Update-RecastOSDCloudUSBCache { if ($actualOperatingSystemHash -ne $expectedOperatingSystemHash.Trim()) { throw "[$(Get-Date -format s)] OperatingSystem $expectedOperatingSystemHashAlgorithm hash mismatch for $osdCoreOperatingSystemDestinationFullName. Expected $($expectedOperatingSystemHash.Trim()), found $actualOperatingSystemHash." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem existing file $expectedOperatingSystemHashAlgorithm hash verified. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem existing file $expectedOperatingSystemHashAlgorithm hash verified. OK." } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem already exists at $osdCoreOperatingSystemDestinationFullName. No hash property was available to verify." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem already exists at $osdCoreOperatingSystemDestinationFullName. No hash property was available to verify." } - $global:OSDCoreCacheContent = Get-OSDCoreCacheContent + Initialize-OSDCoreCache $downloadOperatingSystem = $false } @@ -312,7 +325,7 @@ function Update-RecastOSDCloudUSBCache { (New-Object System.Management.Automation.Host.ChoiceDescription '&No', 'Skip the OperatingSystem download.') ) if ($downloadOperatingSystem -and ($host.UI.PromptForChoice($caption, $message, $choices, 1) -eq 0)) { - $savedOperatingSystem = Invoke-OSDCoreDownloadFile -SourceUrl $global:OSDCoreOperatingSystemCloudObject.Url -DestinationDirectory $osdCoreOperatingSystemDestination -DestinationName $global:OSDCoreOperatingSystemCloudObject.FileName -ErrorAction Stop + $savedOperatingSystem = Invoke-OSDCoreDownloadFile -SourceUrl $selectedOperatingSystemUrl -DestinationDirectory $osdCoreOperatingSystemDestination -DestinationName $global:OSDCoreOperatingSystemCloudObject.FileName -ErrorAction Stop # Verify the downloaded payload before refreshing the cache inventory. if (-not [string]::IsNullOrWhiteSpace($expectedOperatingSystemHash)) { @@ -320,10 +333,10 @@ function Update-RecastOSDCloudUSBCache { if ($actualOperatingSystemHash -ne $expectedOperatingSystemHash.Trim()) { throw "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject $expectedOperatingSystemHashAlgorithm hash mismatch for $($savedOperatingSystem.FullName). Expected $($expectedOperatingSystemHash.Trim()), found $actualOperatingSystemHash." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject $expectedOperatingSystemHashAlgorithm hash verified. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDCoreOperatingSystemCloudObject $expectedOperatingSystemHashAlgorithm hash verified. OK." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject downloaded to $($savedOperatingSystem.FullName)" - $global:OSDCoreCacheContent = Get-OSDCoreCacheContent + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDCoreOperatingSystemCloudObject downloaded to $($savedOperatingSystem.FullName)" + Initialize-OSDCoreCache } } else { @@ -334,25 +347,26 @@ function Update-RecastOSDCloudUSBCache { Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] No eligible OSDCoreCache USB drive is available for OperatingSystem download." } } - } else { + } + else { Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OSDCoreOperatingSystemCloudObject is not set." Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OSDCloud will not function on this device or on this network." } #================================================ # OSDCoreDriverPackCloudObject - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDManufacturer: $($global:OSDCoreDevice.OSDManufacturer)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDModel: $($global:OSDCoreDevice.OSDModel)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDProduct: $($global:OSDCoreDevice.OSDProduct)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDManufacturer: $($global:OSDCoreDevice.OSDManufacturer)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDModel: $($global:OSDCoreDevice.OSDModel)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDProduct: $($global:OSDCoreDevice.OSDProduct)" if ($global:OSDCoreDriverPackCloudObject) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Verifying OSDCoreDriverPackCloudObject." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Verifying OSDCoreDriverPackCloudObject." $global:OSDCoreDriverPackCloudObject | Out-Host $OSDCoreDriverPackCloudObjectUrlReachable = Test-OSDCoreDriverPackCloudObject -DriverPackCloudObject $global:OSDCoreDriverPackCloudObject if ($OSDCoreDriverPackCloudObjectUrlReachable) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack URL is reachable. OK." + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] DriverPack is available online and ready to downloaded." } else { - Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] DriverPack URL is not reachable." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] DriverPack URL is not reachable online and cannot be downloaded." } # Driver pack catalogs use either HashMD5 or MD5Hash depending on the source. @@ -365,27 +379,28 @@ function Update-RecastOSDCloudUSBCache { } # Check whether the selected driver pack is already present in the cache inventory. - $osdCoreDriverPackCacheContent = Get-OSDCoreDriverPackCacheObject -DriverPackCloudObject $global:OSDCoreDriverPackCloudObject - if ($osdCoreDriverPackCacheContent) { + $OSDCoreDriverPackCacheObject = Get-OSDCoreDriverPackCacheObject -DriverPackCloudObject $global:OSDCoreDriverPackCloudObject + if ($OSDCoreDriverPackCacheObject) { # Verify cached driver pack integrity when the catalog includes an MD5 hash. if (-not [string]::IsNullOrWhiteSpace($expectedDriverPackHashMD5)) { - $actualDriverPackHashMD5 = (Get-FileHash -Path $osdCoreDriverPackCacheContent.FullName -Algorithm MD5 -ErrorAction Stop).Hash + $actualDriverPackHashMD5 = (Get-FileHash -Path $OSDCoreDriverPackCacheObject.FullName -Algorithm MD5 -ErrorAction Stop).Hash if ($actualDriverPackHashMD5 -ne $expectedDriverPackHashMD5.Trim()) { - throw "[$(Get-Date -format s)] DriverPack MD5 hash mismatch for $($osdCoreDriverPackCacheContent.FullName). Expected $($expectedDriverPackHashMD5.Trim()), found $actualDriverPackHashMD5." + throw "[$(Get-Date -format s)] DriverPack MD5 hash mismatch for $($OSDCoreDriverPackCacheObject.FullName). Expected $($expectedDriverPackHashMD5.Trim()), found $actualDriverPackHashMD5." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack cached file MD5 hash verified. OK." + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] DriverPack is saved in cache and MD5 hash verified." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($OSDCoreDriverPackCacheObject.FullName)" } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack cached file hash was not verified because no MD5 hash property was available." + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] DriverPack is saved in cache." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($OSDCoreDriverPackCacheObject.FullName)" } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack is ready at $($osdCoreDriverPackCacheContent.FullName)" } else { - Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] DriverPack is not available on a USB Drive." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] DriverPack is not available in the offline cache." # Do not offer a download when the driver pack URL cannot be reached. if (-not $OSDCoreDriverPackCloudObjectUrlReachable) { - Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] DriverPack download was not offered because the URL is not reachable." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] DriverPack download was not offered because the URL is not reachable online and cannot be downloaded." } elseif (Test-OSDCoreCacheUSB) { $osdCoreCacheUsbPath = Get-OSDCoreCacheUSBPath | Select-Object -First 1 @@ -402,12 +417,12 @@ function Update-RecastOSDCloudUSBCache { if ($actualDriverPackHashMD5 -ne $expectedDriverPackHashMD5.Trim()) { throw "[$(Get-Date -format s)] DriverPack MD5 hash mismatch for $osdCoreDriverPackDestinationFullName. Expected $($expectedDriverPackHashMD5.Trim()), found $actualDriverPackHashMD5." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack existing file MD5 hash verified. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack existing file MD5 hash verified. OK." } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack already exists at $osdCoreDriverPackDestinationFullName. No MD5 hash property was available to verify." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack already exists at $osdCoreDriverPackDestinationFullName. No MD5 hash property was available to verify." } - $global:OSDCoreCacheContent = Get-OSDCoreCacheContent + Initialize-OSDCoreCache $downloadDriverPack = $false } @@ -427,10 +442,10 @@ function Update-RecastOSDCloudUSBCache { if ($actualDriverPackHashMD5 -ne $expectedDriverPackHashMD5.Trim()) { throw "[$(Get-Date -format s)] DriverPack MD5 hash mismatch for $($savedDriverPack.FullName). Expected $($expectedDriverPackHashMD5.Trim()), found $actualDriverPackHashMD5." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack MD5 hash verified. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack MD5 hash verified. OK." } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack downloaded to $($savedDriverPack.FullName)" - $global:OSDCoreCacheContent = Get-OSDCoreCacheContent + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack downloaded to $($savedDriverPack.FullName)" + Initialize-OSDCoreCache } } else { @@ -444,7 +459,7 @@ function Update-RecastOSDCloudUSBCache { } else { Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OSDCoreDriverPackCloudObject is not set." - Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OSDCloud will not apply a DriverPack for this device or on this network." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] OSDCloud will not apply a DriverPack for this deployment." } #================================================ Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] Done." diff --git a/OSDCloud/private/core-device/Initialize-OSDCoreDevice.ps1 b/OSDCloud/private/core-device/Initialize-OSDCoreDevice.ps1 index 5aa0401..55d9ae6 100644 --- a/OSDCloud/private/core-device/Initialize-OSDCoreDevice.ps1 +++ b/OSDCloud/private/core-device/Initialize-OSDCoreDevice.ps1 @@ -1,37 +1,106 @@ function Initialize-OSDCoreDevice { <# .SYNOPSIS - Collects local hardware, firmware, TPM, and network details for OSDCloud. + Initializes the OSDCore device inventory and diagnostics context. .DESCRIPTION - Initialize-OSDCoreDevice gathers device information from CIM classes, firmware, - and environment data, then normalizes manufacturer/model/product values for - workflow use. It writes diagnostic logs to $env:TEMP\osdcloud-logs, attempts to - copy logs to an available OSDCloudLogs path, and populates - $global:OSDCoreDevice with an ordered property set used by downstream OSDCloud - deployment logic. + Initialize-OSDCoreDevice collects local hardware, firmware, TPM, keyboard, + disk, USB cache, and network information from CIM, environment variables, + and UEFI checks. It creates diagnostic artifacts in + $env:TEMP\osdcloud-logs, clears stale OSDCoreDevice snapshot files before + collection, normalizes key identity values such as + manufacturer/model/product, and builds $global:OSDCoreDevice as an + ordered property bag used by deployment and workflow orchestration + functions. + + OSDCloud environment values can override the reported OSD manufacturer, + model, product, OS architecture, and processor architecture. The device + snapshot includes the raw SMBIOS UUID and EndpointSHA, a SHA256 hash used by + downstream telemetry callers when a stable privacy-preserving identifier + is needed. + + The function is intended for internal module initialization and is called + before workflow execution so downstream steps can rely on a consistent + device state snapshot. .EXAMPLE Initialize-OSDCoreDevice - Collects current device metadata, creates or updates - $global:OSDCoreDevice, and writes log artifacts for troubleshooting. + Collects current device metadata, creates or updates + $global:OSDCoreDevice, removes stale device snapshot files, and writes + current log artifacts for troubleshooting. + + + .EXAMPLE + Initialize-OSDCoreDevice -Verbose + + Runs initialization and emits additional details about discovered disks, + network adapters, keyboard selection, and support checks. + + .INPUTS + None. You cannot pipe input to this function. .OUTPUTS None. This function does not emit pipeline output. .NOTES - Side effects: - - Clears the current PowerShell error collection. - - Updates date/time in WinPE when needed. - - Writes logs to $env:TEMP\osdcloud-logs. - - Sets $global:OSDCoreDevice. + Side effects: + - Clears the current PowerShell error collection. + - Attempts to sync date/time (best effort) through Sync-OSDCoreDateTime. + - Removes stale OSDCoreDevice.xml and OSDCoreDevice.json files from + $env:TEMP\osdcloud-logs before collecting a new snapshot. + - Writes diagnostic logs and current device snapshots to + $env:TEMP\osdcloud-logs. + - Attempts to stage logs in an OSDCloudLogs destination when available. + - Updates global state in $global:OSDCoreDevice. + + Changelog: + - 2026-08-13 | pending | Add OSDeploy identity and license properties. + Added nullable idOSDeployDevice, idRegisteredEmail, and idRegisteredLicense values + from WinPE environment variables or local license discovery. + - 2026-08-13 | pending | Add EndpointSHA and clear stale device snapshot files. + Removed existing OSDCoreDevice output files before collecting device state + and added EndpointSHA as a SHA256 hash of the device UUID. + - 2026-08-12 | pending | Infer AutoOSLanguageCode from keyboard layout. + Used Convert-KeyboardLayoutToLanguageCode with the detected KeyboardLayout + to populate AutoOSLanguageCode in the OSDCoreDevice snapshot. + - 2026-08-12 | pending | Move DeploymentDisk selection to deployment initialization. + Removed deployment disk target selection from device inventory so + Initialize-DeployOSDCloud selects the deployment disk from LocalDisk. + - 2026-08-11 | pending | Populate local disk inventory in OSDCoreDevice. + Assigned filtered online local disk, partition, and volume objects before + exporting the device snapshot. + - 2026-08-11 | pending | Populate USB disk inventory in OSDCoreDevice. + Assigned filtered online USB disk objects to USBDisk before exporting + the device snapshot. + - 2026-08-06 | pending | Export OSDCoreDevice CLIXML to TEMP. + Added Export-Clixml output to $env:TEMP\OSDCoreDevice.xml so + callers and support workflows can consume a typed device snapshot. + - 2026-08-05 | pending | Report unknown values for empty identity fields. + Normalized OSDManufacturer, OSDModel, and OSDProduct values written + to OSDCoreDevice so null/whitespace values are emitted as Unknown. + - 2026-08-05 | pending | Resolve OS catalog provider selection overwrite. + Replaced unconditional dual assignment of OSDCoreOperatingSystems with + command-aware selection logic that uses the available provider function + and throws a descriptive error when neither provider is present. + - 2026-08-05 | ef3e4fb | Core catalog initialization wiring update. + Integrated initializer into the broader core startup path and aligned + device state dependencies for downstream catalog and workflow logic. + - 2026-08-04 | 538d747 | Initial OSDCoreDevice initializer introduced. + Added core CIM collection, log export pipeline, normalization helpers, + and baseline global property map for workflow consumers. + + Maintainer guidance: + - Add a new changelog entry in this NOTES section for every functional + behavior change in this function. + - Keep entries in reverse chronological order using this format: + YYYY-MM-DD | | #> [CmdletBinding()] param () #================================================= $Error.Clear() - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)]" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($MyInvocation.MyCommand.Name)]" #================================================= try { Sync-OSDCoreDateTime -ThresholdMinutes 5 -Force -ErrorAction Stop @@ -133,6 +202,8 @@ function Initialize-OSDCoreDevice { $KeyboardLayout = $null $KeyboardName = $null } + + $AutoOSLanguageCode = 'en-us' #================================================= # Win32_NetworkAdapter $classWin32NetworkAdapter = Get-CimInstance -ClassName Win32_NetworkAdapter | Select-Object -Property * @@ -178,7 +249,7 @@ function Initialize-OSDCoreDevice { if ($SystemFirmwareDevice) { $GuidPattern = '\{?(([0-9a-f]){8}-([0-9a-f]){4}-([0-9a-f]){4}-([0-9a-f]){4}-([0-9a-f]){12})\}?' $SystemFirmwareResource = ($SystemFirmwareDevice.PNPDeviceID | Select-String -Pattern $GuidPattern -AllMatches | Select-Object -ExpandProperty Matches | Select-Object -ExpandProperty Value) - $SystemFirmwareHardwareId = $SystemFirmwareResource -replace '[{}]','' + $SystemFirmwareHardwareId = $SystemFirmwareResource -replace '[{}]', '' } else { $SystemFirmwareDevice = $null @@ -240,8 +311,8 @@ function Initialize-OSDCoreDevice { Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] [NOT SUPPORTED] Intune Autopilot is not supported on this device." } else { - Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [OK] TPM 2.0 is supported on this device." - Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [OK] Intune Autopilot is supported on this device." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] TPM 2.0 is supported on this device." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Intune Autopilot is supported on this device." $IsAutopilotSpec = $true $IsTpmSpec = $true } @@ -253,13 +324,13 @@ function Initialize-OSDCoreDevice { $SecureBootStatus = Confirm-SecureBootUEFI } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [UNAVAILABLE] Unable to access UEFI Secure Boot information." - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [UNAVAILABLE] This system may not support UEFI or Secure Boot." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Unable to access UEFI Secure Boot information." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] This system may not support UEFI or Secure Boot." } if ($SecureBootStatus -eq $true) { - Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [OK] Secure Boot is enabled on this device." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Secure Boot is enabled on this device." - if (Get-Command -Name Get-SecureBootUEFI -ErrorAction SilentlyContinue) { + if (Get-Command -Name Get-SecureBootUEFI -ErrorAction Ignore) { try { $dbVariable = Get-SecureBootUEFI -Name DB -ErrorAction Stop $kekVariable = Get-SecureBootUEFI -Name KEK -ErrorAction Stop @@ -283,14 +354,14 @@ function Initialize-OSDCoreDevice { } $WinUEFIca2023 = $dbText -match 'Windows UEFI CA 2023' if ($WinUEFIca2023) { - Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [OK] Windows UEFI CA 2023 is present." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Windows UEFI CA 2023 is present." } else { Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Windows UEFI CA 2023 is not present." } $MsUEFIca2023 = $dbText -match 'Microsoft UEFI CA 2023' if ($MsUEFIca2023) { - Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [OK] Microsoft UEFI CA 2023 is present." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft UEFI CA 2023 is present." } else { Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Microsoft UEFI CA 2023 is not present." @@ -302,7 +373,7 @@ function Initialize-OSDCoreDevice { } $MsKEKca2023 = $kekText -match 'Microsoft Corporation KEK 2K CA 2023' if ($MsKEKca2023) { - Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [OK] Microsoft Corporation KEK 2K CA 2023 is present." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Corporation KEK 2K CA 2023 is present." } else { Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Microsoft Corporation KEK 2K CA 2023 is not present." @@ -315,7 +386,7 @@ function Initialize-OSDCoreDevice { } } elseif ($SecureBootStatus -eq $false) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [FAIL] Secure Boot is not enabled." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Secure Boot is not enabled." } #================================================= # Identify Serial Number with multiple fallback methods due to variability in how different manufacturers populate WMI classes @@ -368,19 +439,25 @@ function Initialize-OSDCoreDevice { $vmPattern = '(?i)(virtual machine|vmware|hyper-v|hyperv|kvm|qemu|xen|virtualbox|bhyve|parallels|gce|google compute engine|amazon ec2|azure|bochs|openstack|ovirt|rhev|kubevirt|ahv|nutanix)' [System.Boolean]$IsVM = ($vmDetectionSources -join ' ') -match $vmPattern #================================================= + # IsWinPE + [System.Boolean]$IsWinPE = $false + if ($env:SystemDrive -eq 'X:') { + $IsWinPE = $true + } + #================================================= # ChassisType - $IsDesktop = $false - $IsLaptop = $false - $IsServer = $false - $IsSFF = $false - $IsTablet = $false $ComputerSystemType = $classWin32SystemEnclosure | ForEach-Object { - if ($_.ChassisTypes[0] -in "8", "9", "10", "11", "12", "14", "18", "21") { $IsLaptop = $true; "Laptop" } - if ($_.ChassisTypes[0] -in "3", "4", "5", "6", "7", "15", "16") { $IsDesktop = $true; "Desktop" } - if ($_.ChassisTypes[0] -in "23") { $IsServer = $true; "Server" } - if ($_.ChassisTypes[0] -in "34", "35", "36") { $IsSFF = $true; "Small Form Factor" } - if ($_.ChassisTypes[0] -in "13", "31", "32", "30") { $IsTablet = $true; "Tablet" } - } + if ($_.ChassisTypes[0] -in "8", "9", "10", "11", "12", "14", "18", "21") { "Laptop" } + if ($_.ChassisTypes[0] -in "3", "4", "5", "6", "7", "15", "16") { "Desktop" } + if ($_.ChassisTypes[0] -in "23") { "Server" } + if ($_.ChassisTypes[0] -in "34", "35", "36") { "Small Form Factor" } + if ($_.ChassisTypes[0] -in "13", "31", "32", "30") { "Tablet" } + } + [System.Boolean]$IsDesktop = $ComputerSystemType -contains 'Desktop' + [System.Boolean]$IsLaptop = $ComputerSystemType -contains 'Laptop' + [System.Boolean]$IsServer = $ComputerSystemType -contains 'Server' + [System.Boolean]$IsSFF = $ComputerSystemType -contains 'Small Form Factor' + [System.Boolean]$IsTablet = $ComputerSystemType -contains 'Tablet' #================================================= # TotalPhysicalMemoryGB $TotalPhysicalMemoryGB = [math]::Round( @@ -394,8 +471,8 @@ function Initialize-OSDCoreDevice { #================================================= # OA3Tool for Hardware Hash (Autopilot) $HardwareHash = $null - if (Get-Command 'oa3tool.exe' -ErrorAction SilentlyContinue) { - $oa3cfg = @" + if (Get-Command 'oa3tool.exe' -ErrorAction Ignore) { + $oa3cfg = @" $env:TEMP\OA3_Input.xml @@ -407,7 +484,7 @@ function Initialize-OSDCoreDevice { "@ - $oa3input = @" + $oa3input = @" XXXXX-XXXXX-XXXXX-XXXXX-XXXXX @@ -514,46 +591,77 @@ function Initialize-OSDCoreDevice { } #================================================= # Disk Information - # Include only USB disks that are online and available. + # Include only disks that are online and available. $GetDisk = Get-Disk | - Where-Object { - $_.BusType -eq 'USB' -and - $_.IsOffline -eq $false -and - $_.OperationalStatus -eq 'Online' - } | - Sort-Object DiskNumber | - Select-Object -Property * + Where-Object { + $_.IsOffline -eq $false -and + $_.OperationalStatus -eq 'Online' + } | + Sort-Object DiskNumber | + Select-Object -Property * + + $USBDisk = $GetDisk | Where-Object { $_.BusType -eq 'USB' } + $LocalDisk = $GetDisk | Where-Object { $_.BusType -notin 'File Backed Virtual', 'MAX', 'Microsoft Reserved', 'USB', 'Virtual' } $usbDiskNumbers = [System.Collections.Generic.HashSet[int]]::new() - foreach ($disk in $GetDisk) { + foreach ($disk in $USBDisk) { [void]$usbDiskNumbers.Add([int]$disk.DiskNumber) } + $localDiskNumbers = [System.Collections.Generic.HashSet[int]]::new() + foreach ($disk in $LocalDisk) { + [void]$localDiskNumbers.Add([int]$disk.DiskNumber) + } # Partition Information $GetPartition = Get-Partition | - Sort-Object DiskNumber, PartitionNumber | - Select-Object -Property *, @{ - Name = 'IsUSB' - Expression = { $usbDiskNumbers.Contains([int]$_.DiskNumber) } - } + Sort-Object DiskNumber, PartitionNumber | + Select-Object -Property *, @{ + Name = 'IsUSB' + Expression = { $usbDiskNumbers.Contains([int]$_.DiskNumber) } + }, @{ + Name = 'IsLocal' + Expression = { $localDiskNumbers.Contains([int]$_.DiskNumber) } + } # USB Partitions - $USBPartitions = $GetPartition | Where-Object { $_.IsUSB -eq $true } - - # USBVolumes - $usbDriveLetters = $USBPartitions | - ForEach-Object { $_.AccessPaths } | - Where-Object { -not [string]::IsNullOrWhiteSpace($_) } | - ForEach-Object { - if ($_ -match '^(?[A-Z]):\\$') { - $Matches.DriveLetter - } - } | - Sort-Object -Unique + $USBPartition = $GetPartition | Where-Object { $_.IsUSB -eq $true } + $LocalPartition = $GetPartition | Where-Object { $_.IsLocal -eq $true } + + # USBVolume + $usbDriveLetters = $USBPartition | + ForEach-Object { $_.AccessPaths } | + Where-Object { -not [string]::IsNullOrWhiteSpace($_) } | + ForEach-Object { + if ($_ -match '^(?[A-Z]):\\$') { + $Matches.DriveLetter + } + } | + Sort-Object -Unique - $USBVolumes = @() + $USBVolume = $null if ($usbDriveLetters) { - $USBVolumes = Get-Volume -DriveLetter $usbDriveLetters -ErrorAction SilentlyContinue | - Sort-Object DriveLetter -Unique + $USBVolume = Get-Volume -DriveLetter $usbDriveLetters -ErrorAction SilentlyContinue | + Sort-Object DriveLetter -Unique + } + $USBCache = $null + if ($USBVolume) { + $USBCache = $USBVolume | Where-Object { $_.FileSystem -eq 'NTFS' } | Select-Object -First 1 + } + + # LocalVolume + $localDriveLetters = $LocalPartition | + ForEach-Object { $_.AccessPaths } | + Where-Object { -not [string]::IsNullOrWhiteSpace($_) } | + ForEach-Object { + if ($_ -match '^(?[A-Z]):\\$') { + $Matches.DriveLetter + } + } | + Sort-Object -Unique + + $LocalVolume = $null + if ($localDriveLetters) { + $LocalVolume = Get-Volume -DriveLetter $localDriveLetters -ErrorAction SilentlyContinue | + Sort-Object DriveLetter -Unique } #================================================= # OSDCloudEnv @@ -581,68 +689,140 @@ function Initialize-OSDCoreDevice { } } #================================================= - # Pass Variables to OSDCoreDevice + # OSDeploy and Recast Registration Information #================================================= + $deviceUUID = [System.String]$classWin32ComputerSystemProduct.UUID + $EndpointSHA = $null + if (-not [string]::IsNullOrWhiteSpace($deviceUUID)) { + $EndpointSHA = [System.BitConverter]::ToString([System.Security.Cryptography.SHA256]::Create().ComputeHash([System.Text.Encoding]::UTF8.GetBytes($deviceUUID))).Replace("-", "") + } + + $idOSDeployDevice = $null + if (-not [string]::IsNullOrWhiteSpace($env:ID_OSDEPLOYDEVICE)) { + $idOSDeployDevice = [System.String]$env:ID_OSDEPLOYDEVICE + } + + $idOSDeployBoot = $null + if (-not [string]::IsNullOrWhiteSpace($env:ID_OSDEPLOYBOOT)) { + $idOSDeployBoot = [System.String]$env:ID_OSDEPLOYBOOT + } + + $idRegisteredEmail = $null + if (-not [string]::IsNullOrWhiteSpace($env:ID_REGISTEREDEMAIL)) { + $idRegisteredEmail = [System.String]$env:ID_REGISTEREDEMAIL + } + + $idRegisteredLicense = $null + if (-not [string]::IsNullOrWhiteSpace($env:ID_REGISTEREDLICENSE)) { + $idRegisteredLicense = [System.String]$env:ID_REGISTEREDLICENSE + } + + if ([string]::IsNullOrWhiteSpace($idRegisteredEmail) -or [string]::IsNullOrWhiteSpace($idRegisteredLicense)) { + try { + if (-not $global:OSDCoreLicense.License) { + Initialize-OSDCoreLicense + } + if ([string]::IsNullOrWhiteSpace($idRegisteredEmail) -and -not [string]::IsNullOrWhiteSpace($global:OSDCoreLicense.License.Email)) { + $idRegisteredEmail = [System.String]$global:OSDCoreLicense.License.Email + } + if ([string]::IsNullOrWhiteSpace($idRegisteredLicense) -and -not [string]::IsNullOrWhiteSpace($global:OSDCoreLicense.License.LicenseGuid)) { + $idRegisteredLicense = [System.String]$global:OSDCoreLicense.License.LicenseGuid + } + } + catch {} + } + + #================================================= + # OSLanguage + #================================================= + if ($global:OSDCoreLicense.IsRegistered) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDCloud is registered to $idRegisteredEmail" + if (Get-Command -Name 'Convert-KeyboardLayoutToLanguageCode' -ErrorAction Ignore) { + $AutoOSLanguageCode = Convert-KeyboardLayoutToLanguageCode -KeyboardLayout $KeyboardLayout -FallbackLanguageCode 'en-US' -LowerCase + } + } + else { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Skipping AutoOSLanguageCode keyboard conversion because OSDCloud is not registered." + } + + $reportedOSDManufacturer = if ([string]::IsNullOrWhiteSpace($OSDManufacturer)) { 'Unknown' } else { [System.String]$OSDManufacturer } + $reportedOSDModel = if ([string]::IsNullOrWhiteSpace($OSDModel)) { 'Unknown' } else { [System.String]$OSDModel } + $reportedOSDProduct = if ([string]::IsNullOrWhiteSpace($OSDProduct)) { 'Unknown' } else { [System.String]$OSDProduct } + $global:OSDCoreDevice = $null $global:OSDCoreDevice = [ordered]@{ - OSDManufacturer = [System.String]$OSDManufacturer - OSDModel = [System.String]$OSDModel - OSDProduct = [System.String]$OSDProduct - ComputerName = $classWin32ComputerSystem.Name - BaseBoardProduct = [System.String]$BaseBoardProduct - BiosReleaseDate = [System.String]$classWin32BIOS.ReleaseDate - BiosVersion = [System.String]$classWin32BIOS.SMBIOSBIOSVersion - ComputerManufacturer = [System.String]$ComputerManufacturer - ComputerModel = [System.String]$ComputerModel - ComputerSystemFamily = [System.String]$ComputerSystemFamily - ComputerSystemProduct = [System.String]$ComputerSystemProduct - ComputerSystemSKU = [System.String]$ComputerSystemSKU - ComputerSystemType = [System.String]$ComputerSystemType - HardwareHash = [System.String]$HardwareHash - IsAutopilotSpec = [System.Boolean]$IsAutopilotSpec - IsDesktop = [System.Boolean]$IsDesktop - IsLaptop = [System.Boolean]$IsLaptop - IsOnBattery = [System.Boolean]$IsOnBattery - IsServer = [System.Boolean]$IsServer - IsSFF = [System.Boolean]$IsSFF - IsTablet = [System.Boolean]$IsTablet - IsTpmSpec = [System.Boolean]$IsTpmSpec - IsVM = [System.Boolean]$IsVM - IsUEFI = [System.Boolean]$IsUEFI - KeyboardLayout = $KeyboardLayout - KeyboardName = $KeyboardName - NetGateways = $NetGateways - NetIPAddress = $NetIPAddress - NetMacAddress = $NetMacAddress - OSArchitecture = $OSArchitecture - OSVersion = $classWin32OperatingSystem.Version - ProcessorArchitecture = $ProcessorArchitecture - SerialNumber = $SerialNumber - SystemFirmwareHardwareId = $SystemFirmwareHardwareId - TimeZone = $classWin32TimeZone.StandardName - TotalPhysicalMemoryGB = $TotalPhysicalMemoryGB - TpmIsActivated = $DeviceTpmIsActivated - TpmIsEnabled = $DeviceTpmIsEnabled - TpmIsOwned = $DeviceTpmIsOwned - TpmManufacturerIdTxt = $DeviceTpmManufacturerIdTxt - TpmManufacturerVersion = $DeviceTpmManufacturerVersion - TpmSpecVersion = $DeviceTpmSpecVersion - USBPartitions = $USBPartitions - USBVolumes = $USBVolumes - UUID = $classWin32ComputerSystemProduct.UUID - } - $global:OSDCoreDevice | ConvertTo-Json -Depth 10 | Out-File "$LogsPath\OSDCoreDevice.json" -Force -Encoding utf8 - #================================================= - # OSDCoreCacheContent - $global:OSDCoreCacheContent = Get-OSDCoreCacheContent - #================================================= - # OSDCoreOperatingSystems - $global:OSDCoreOperatingSystems = Get-OSDCoreOperatingSystems | Where-Object { $_.Architecture -match "$ProcessorArchitecture" } - $null = Set-OSDCoreOperatingSystemCloudObject -OSArchitecture $ProcessorArchitecture - #================================================= - # OSDCoreDriverPacks - $global:OSDCoreDriverPacks = Get-ModuleCoreDriverPacks -OSDManufacturer $OSDManufacturer - $global:OSDCoreDriverPackCloudObject = $global:OSDCoreDriverPacks | Where-Object { $_.SystemId -match $OSDProduct } | Select-Object -First 1 + OSDManufacturer = $reportedOSDManufacturer + OSDModel = $reportedOSDModel + OSDProduct = $reportedOSDProduct + AutoOSLanguageCode = $AutoOSLanguageCode + BaseBoardProduct = [System.String]$BaseBoardProduct + BiosReleaseDate = [System.String]$classWin32BIOS.ReleaseDate + BiosVersion = [System.String]$classWin32BIOS.SMBIOSBIOSVersion + ComputerManufacturer = [System.String]$ComputerManufacturer + ComputerModel = [System.String]$ComputerModel + ComputerName = $classWin32ComputerSystem.Name + ComputerSystemFamily = [System.String]$ComputerSystemFamily + ComputerSystemProduct = [System.String]$ComputerSystemProduct + ComputerSystemSKU = [System.String]$ComputerSystemSKU + ComputerSystemType = [System.String]$ComputerSystemType + HardwareHash = [System.String]$HardwareHash + IsAutopilotSpec = [System.Boolean]$IsAutopilotSpec + IsDesktop = [System.Boolean]$IsDesktop + IsLaptop = [System.Boolean]$IsLaptop + IsOnBattery = [System.Boolean]$IsOnBattery + IsServer = [System.Boolean]$IsServer + IsSFF = [System.Boolean]$IsSFF + IsTablet = [System.Boolean]$IsTablet + IsTpmSpec = [System.Boolean]$IsTpmSpec + IsUEFI = [System.Boolean]$IsUEFI + IsVM = [System.Boolean]$IsVM + IsWinPE = [System.Boolean]$IsWinPE + KeyboardLayout = $KeyboardLayout + KeyboardName = $KeyboardName + LocalDisk = $LocalDisk + LocalPartition = $LocalPartition + LocalVolume = $LocalVolume + NetGateways = $NetGateways + NetIPAddress = $NetIPAddress + NetMacAddress = $NetMacAddress + OSArchitecture = $OSArchitecture + OSVersion = $classWin32OperatingSystem.Version + ProcessorArchitecture = $ProcessorArchitecture + SerialNumber = $SerialNumber + SystemFirmwareHardwareId = $SystemFirmwareHardwareId + TimeZone = $classWin32TimeZone.StandardName + TotalPhysicalMemoryGB = $TotalPhysicalMemoryGB + TpmIsActivated = $DeviceTpmIsActivated + TpmIsEnabled = $DeviceTpmIsEnabled + TpmIsOwned = $DeviceTpmIsOwned + TpmManufacturerIdTxt = $DeviceTpmManufacturerIdTxt + TpmManufacturerVersion = $DeviceTpmManufacturerVersion + TpmSpecVersion = $DeviceTpmSpecVersion + USBCache = $USBCache + USBDisk = $USBDisk + USBPartition = $USBPartition + USBVolume = $USBVolume + UUID = $deviceUUID + EndpointSHA = [System.String]$EndpointSHA #Device UUID SHA256 + idOSDeployDevice = $idOSDeployDevice + idOSDeployBoot = $idOSDeployBoot + idRegisteredEmail = $idRegisteredEmail + idRegisteredLicense = $idRegisteredLicense + } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: OSDCoreDevice" + #================================================= + # Export OSDCoreDevice to XML and JSON for use in other scripts or workflows + $OSDCoreDeviceClixmlPath = Join-Path -Path $LogsPath -ChildPath 'OSDCoreDevice.xml' + if (Test-Path -LiteralPath $OSDCoreDeviceClixmlPath) { + Remove-Item -LiteralPath $OSDCoreDeviceClixmlPath -Force -ErrorAction SilentlyContinue + } + $global:OSDCoreDevice | Export-Clixml -Path $OSDCoreDeviceClixmlPath -Force + + $OSDCoreDeviceJsonPath = Join-Path -Path $LogsPath -ChildPath 'OSDCoreDevice.json' + if (Test-Path -LiteralPath $OSDCoreDeviceJsonPath) { + Remove-Item -LiteralPath $OSDCoreDeviceJsonPath -Force -ErrorAction SilentlyContinue + } + $global:OSDCoreDevice | ConvertTo-Json -Depth 10 | Out-File $OSDCoreDeviceJsonPath -Force -Encoding utf8 #================================================= # OSDCloudLogs # Look for available drives (USB, mapped network drives, and local drives) with at least 1 GB of free space and write permissions for the current user to copy logs. diff --git a/OSDCloud/private/core-device/Sync-OSDCoreDateTime.ps1 b/OSDCloud/private/core-device/Sync-OSDCoreDateTime.ps1 index 617ea2c..ae27831 100644 --- a/OSDCloud/private/core-device/Sync-OSDCoreDateTime.ps1 +++ b/OSDCloud/private/core-device/Sync-OSDCoreDateTime.ps1 @@ -61,13 +61,13 @@ function Sync-OSDCoreDateTime { process { $result = [PSCustomObject]@{ - LocalDateTime = $null - InternetDateTime = $null + LocalDateTime = $null + InternetDateTime = $null DifferenceMinutes = $null - IsWinPE = $env:SystemDrive -eq "X:" - ClockUpdated = $false - Success = $false - ErrorMessage = $null + IsWinPE = $env:SystemDrive -eq "X:" + ClockUpdated = $false + Success = $false + ErrorMessage = $null } try { @@ -118,16 +118,16 @@ function Sync-OSDCoreDateTime { $result.DifferenceMinutes = [math]::Round([math]::Abs(($result.InternetDateTime - $result.LocalDateTime).TotalMinutes)) if ($result.DifferenceMinutes -gt $ThresholdMinutes) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Time difference of $($result.DifferenceMinutes) minutes exceeds threshold of $ThresholdMinutes minutes" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Time difference of $($result.DifferenceMinutes) minutes exceeds threshold of $ThresholdMinutes minutes" if ($result.IsWinPE) { if ($Force) { if ($PSCmdlet.ShouldProcess("System Clock", "Set to $($result.InternetDateTime)")) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Setting system clock to internet time" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Setting system clock to internet time" try { $null = Set-Date -Date $result.InternetDateTime -ErrorAction Stop $result.ClockUpdated = $true - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] System clock successfully updated" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] System clock successfully updated" } catch { $result.ErrorMessage = "Failed to set system clock: $($_.Exception.Message)" @@ -146,7 +146,7 @@ function Sync-OSDCoreDateTime { } } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] System clock is synchronized within threshold ($($result.DifferenceMinutes) minutes difference)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] System clock is synchronized within threshold ($($result.DifferenceMinutes) minutes difference)." } } diff --git a/OSDCloud/private/core-driverpack/Get-ModuleCoreDriverPacks.ps1 b/OSDCloud/private/core-driverpack/Get-ModuleCoreDriverPacks.ps1 deleted file mode 100644 index 1973109..0000000 --- a/OSDCloud/private/core-driverpack/Get-ModuleCoreDriverPacks.ps1 +++ /dev/null @@ -1,65 +0,0 @@ -function Get-ModuleCoreDriverPacks { - <# - .SYNOPSIS - Retrieves driver pack information for the specified manufacturer and operating system architecture. - - .DESCRIPTION - Gets driver pack catalogs based on the device manufacturer and OS architecture. For AMD64 architecture, - manufacturer-specific catalogs are loaded. For ARM64 and other architectures, the default catalog is returned. - Supports Dell, HP, Lenovo, Microsoft (Surface), and generic devices. - - .PARAMETER OSDManufacturer - The device manufacturer name. Defaults to the value from $global:OSDCoreDevice.OSDManufacturer. - Supported values: Dell, HP, Lenovo, Microsoft, or any other value will use the Default catalog. - - .PARAMETER ProcessorArchitecture - The operating system architecture. Defaults to the value from $global:OSDCoreDevice.ProcessorArchitecture. - Typically 'amd64' or 'arm64'. - - .OUTPUTS - PSCustomObject - Array of driver pack objects containing driver information for the specified manufacturer and architecture. - - .EXAMPLE - PS> Get-ModuleCoreDriverPacks - Returns driver packs for the current device's manufacturer and architecture. - - .EXAMPLE - PS> Get-ModuleCoreDriverPacks -OSDManufacturer 'Dell' -ProcessorArchitecture 'amd64' - Returns driver packs for Dell devices with AMD64 architecture. - - .NOTES - Requires manufacturer-specific cmdlets (Get-OSDCoreDriverPackCatalogDell, Get-OSDCoreDriverPackCatalogHP, etc.) to be available. - #> - [CmdletBinding()] - param ( - [Parameter(Mandatory = $false)] - [ValidateNotNullOrEmpty()] - [System.String]$GenericDriverPackJson = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\generic.json'), - - [System.String]$OSDManufacturer = $global:OSDCoreDevice.OSDManufacturer, - - [System.String]$ProcessorArchitecture = $env:PROCESSOR_ARCHITECTURE - ) - - # Load Generic driver pack catalog for fallback - $GenericCatalog = Get-Content -Path $GenericDriverPackJson -Raw | ConvertFrom-Json - - if ($ProcessorArchitecture -eq 'amd64') { - $DriverPackValues = switch ($OSDManufacturer) { - 'Dell' { Get-OSDCoreDriverPackCatalogDell } - 'HP' { Get-OSDCoreDriverPackCatalogHP } - 'Lenovo' { Get-OSDCoreDriverPackCatalogLenovo } - 'Microsoft' { Get-OSDCoreDriverPackCatalogSurface } - default { $GenericCatalog } - } - } - else { - $DriverPackValues = switch ($OSDManufacturer) { - 'Microsoft' { Get-OSDCoreDriverPackCatalogSurface } - default { $GenericCatalog } - } - } - - $DriverPackValues | Where-Object { $_.OSArchitecture -eq $ProcessorArchitecture } -} diff --git a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCacheObject.ps1 b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCacheObject.ps1 new file mode 100644 index 0000000..92064ab --- /dev/null +++ b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCacheObject.ps1 @@ -0,0 +1,64 @@ +function Get-OSDCoreDriverPackCacheObject { + <# + .SYNOPSIS + Gets the cached driver pack content object for the selected OSDCore driver pack. + + .DESCRIPTION + Searches OSDCore cache content for the first DriverPacks entry that matches the selected + driver pack object's FileName. Returns the matching cache content object when found, or + $null when the driver pack object, cache content, or matching cache item is missing. + + .PARAMETER DriverPackCloudObject + Driver pack object containing the FileName property to match. Defaults to $global:OSDCoreDriverPackCloudObject. + + .PARAMETER CacheContent + Cache content inventory to search. Defaults to $global:OSDCoreCache. + + .EXAMPLE + Get-OSDCoreDriverPackCacheObject + Returns the cache content object for $global:OSDCoreDriverPackCloudObject when it exists. + + .EXAMPLE + if (Get-OSDCoreDriverPackCacheObject) { 'Driver pack cache content exists.' } + Tests whether the selected driver pack exists in the cache inventory. + + .LINK + https://github.com/OSDeploy/OSD/tree/master/docs + + .NOTES + Author: David Segura - Recast Software + 2026-07-19 - Initial private helper created + #> + [CmdletBinding()] + [OutputType([System.Management.Automation.PSObject])] + param + ( + [Parameter(ValueFromPipeline)] + [psobject] + $DriverPackCloudObject = $global:OSDCoreDriverPackCloudObject, + + [Parameter()] + [psobject[]] + $CacheContent = $global:OSDCoreCache + ) + + process { + if ($null -eq $DriverPackCloudObject) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject is not set." + return $null + } + + $DriverPackFileName = [string]$DriverPackCloudObject.FileName + if ([string]::IsNullOrWhiteSpace($DriverPackFileName)) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject FileName is not set." + return $null + } + + if (-not $CacheContent) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreCache is not set." + return $null + } + + $CacheContent | Where-Object { $_.Type -eq 'DriverPacks' -and $_.Name -eq $DriverPackFileName } | Select-Object -First 1 + } +} diff --git a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogDell.ps1 b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogDell.ps1 index 0d7e907..fd0f996 100644 --- a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogDell.ps1 +++ b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogDell.ps1 @@ -1,46 +1,25 @@ function Get-OSDCoreDriverPackCatalogDell { <# .SYNOPSIS - Downloads and parses the Dell driver pack catalog for Windows 11. + Gets the Dell driver pack catalog bundled with the module. .DESCRIPTION - Retrieves the latest Dell DriverPackCatalog.cab from Dell's download site, - extracts and parses it to create a catalog of available Windows 11 driver packs. - If online retrieval fails, the function falls back to the bundled local catalog. + Reads the Dell driver pack catalog XML from the module and returns Windows 11 + driver pack objects. This function does not download or update catalog content. + Use Update-OSDCoreDriverPackCatalogDell to refresh the module catalog. .PARAMETER LocalDriverPackCatalog - Path to the local fallback Dell catalog XML file. This file is used when the - online catalog cannot be downloaded or extracted. - - .PARAMETER OemDriverPackCatalog - URL to the online Dell DriverPack catalog CAB file. - - .PARAMETER Force - Forces download and rebuild of the temporary online catalog even when a - cached temp catalog file already exists. - - .PARAMETER LocalOnly - Uses only local catalog values and skips online catalog download/extraction. + Path to the local Dell catalog XML file bundled with the module. .EXAMPLE Get-OSDCoreDriverPackCatalogDell - Retrieves the Dell driver pack catalog for Windows 11. - - .EXAMPLE - Get-OSDCoreDriverPackCatalogDell -Force - - Forces a fresh online download of the Dell catalog before parsing. + Gets the Dell driver pack catalog from the module. .EXAMPLE Get-OSDCoreDriverPackCatalogDell -LocalDriverPackCatalog 'C:\Catalogs\dell.xml' - Uses a custom local fallback catalog path. - - .EXAMPLE - Get-OSDCoreDriverPackCatalogDell -LocalOnly - - Processes only local catalog values without any online download checks. + Gets Dell driver pack catalog values from a custom XML file. .OUTPUTS PSCustomObject[] @@ -48,166 +27,86 @@ function Get-OSDCoreDriverPackCatalogDell { SystemId, URL, ReleaseDate, and other metadata. .NOTES - Catalog is downloaded from https://downloads.dell.com/catalog/DriverPackCatalog.cab + The module catalog is stored in core\driverpacks\dell.xml. #> [CmdletBinding()] param ( [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] - [System.String]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\dell.xml'), - - [Parameter(Mandatory = $false)] - [ValidateNotNullOrEmpty()] - [System.String]$OemDriverPackCatalog = 'https://downloads.dell.com/catalog/DriverPackCatalog.cab', - - [Parameter(Mandatory = $false)] - [switch]$Force, - - [Parameter(Mandatory = $false)] - [switch]$LocalOnly + [System.String]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\dell.xml') ) - begin { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - #================================================= - # Catalogs - $tempCatalogPackagePath = "$($env:TEMP)\DriverPackCatalog.cab" - $tempCatalogPath = "$($env:TEMP)\osdcloud-driverpack-dell.xml" - #================================================= - # Build realtime catalog from online source, if fails fallback to offline catalog - try { - if ($LocalOnly) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LocalOnly requested; skipping online catalog download" - } - elseif ($Force -or -not (Test-Path $tempCatalogPath)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading $OemDriverPackCatalog" - $null = Invoke-WebRequest -Uri $OemDriverPackCatalog -OutFile $tempCatalogPackagePath -ErrorAction Stop - - if (Test-Path $tempCatalogPackagePath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Extracting $tempCatalogPath" - # expand.exe is used for CAB extraction as Expand-Archive only supports ZIP - $expandResult = & expand.exe $tempCatalogPackagePath $tempCatalogPath 2>&1 - if ($LASTEXITCODE -ne 0) { - Write-Warning "Failed to extract catalog: $expandResult" - } - } - } else { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using temp catalog" - } - } catch { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Failed to download DriverPack catalog: $($_.Exception.Message)" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Falling back to local catalog" - } + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Indexing $LocalDriverPackCatalog" - # Load catalog content - if ($LocalOnly) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - [xml]$XmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw - } - elseif (Test-Path $tempCatalogPath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $tempCatalogPath" - [xml]$XmlCatalogContent = Get-Content -Path $tempCatalogPath -Raw - } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - [xml]$XmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw - } + [xml]$xmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw -ErrorAction Stop - # Validate catalog content - if (-not $XmlCatalogContent) { - $errorRecord = [System.Management.Automation.ErrorRecord]::new( - [System.Exception]::new("Failed to load catalog content"), - 'CatalogLoadFailed', - [System.Management.Automation.ErrorCategory]::InvalidData, - $tempCatalogPath - ) - $PSCmdlet.ThrowTerminatingError($errorRecord) - } + if (-not $xmlCatalogContent) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to load Dell driver pack catalog content'), + 'CatalogLoadFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $LocalDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) } - process { - #================================================= - # Build Catalog - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" - $OnlineBaseUri = 'https://downloads.dell.com/' + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" + $onlineBaseUri = 'https://downloads.dell.com/' - #$CatalogVersion = (Get-Date $XmlCatalogContent.DriverPackManifest.version).ToString('yy.MM.dd') - $RawCatalogVersion = $XmlCatalogContent.DriverPackManifest.version -replace '.00','.01' - $CatalogVersion = (Get-Date $RawCatalogVersion).ToString('yy.MM.dd') - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $CatalogVersion" + $rawCatalogVersion = $xmlCatalogContent.DriverPackManifest.version -replace '.00', '.01' + $catalogVersion = (Get-Date $rawCatalogVersion).ToString('yy.MM.dd') + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $catalogVersion" - $DellDriverPackXml = $XmlCatalogContent.DriverPackManifest.DriverPackage + $dellDriverPackXml = $xmlCatalogContent.DriverPackManifest.DriverPackage + $dellDriverPackXml = $dellDriverPackXml | Where-Object { + $osCode = $_.SupportedOperatingSystems.OperatingSystem.osCode + $osCode -and ($osCode.Trim() | Select-Object -Unique) -notmatch 'winpe' + } - # Fixed handling null values - $DellDriverPackXml = $DellDriverPackXml | Where-Object { - $osCode = $_.SupportedOperatingSystems.OperatingSystem.osCode - $osCode -and ($osCode.Trim() | Select-Object -Unique) -notmatch 'winpe' + $results = foreach ($item in $dellDriverPackXml) { + $osCode = $item.SupportedOperatingSystems.OperatingSystem.osCode.Trim() | Select-Object -Unique + if ($osCode -match 'Windows11') { + $operatingSystem = 'Windows 11' } - #================================================= - # Create Object - #================================================= - $Results = foreach ($Item in $DellDriverPackXml) { - $osCode = $Item.SupportedOperatingSystems.OperatingSystem.osCode.Trim() | Select-Object -Unique - if ($osCode -match 'Windows11') { - $OperatingSystem = 'Windows 11' - } else { - Continue - } - - $Name = "Dell $($Item.SupportedSystems.Brand.Model.name | Select-Object -Unique)" - $Name = $Name -replace ' ',' ' - $Name = $Name -replace 'Dell Dell','Dell' - $Model = ($Item.SupportedSystems.Brand.Model.name | Select-Object -Unique) - - # DriverPack Version - $DriverPackVersion = $Item.dellVersion - if ($DriverPackVersion -eq '*') { - $DriverPackVersion = $null - } - - $ReleaseDate = Get-Date $Item.dateTime -Format "yy.MM.dd" - - $ObjectProperties = [Ordered]@{ - CatalogVersion = $CatalogVersion - ReleaseDate = $ReleaseDate - Name = "$Name $DriverPackVersion [$ReleaseDate]" - Manufacturer = 'Dell' - Model = $Model - SystemId = [string[]]@($Item.SupportedSystems.Brand.Model.systemID | Select-Object -Unique) - FileName = (Split-Path -Leaf $Item.path) - Url = -join ($OnlineBaseUri, $Item.path) - OperatingSystem = $OperatingSystem - OSArchitecture = 'amd64' - HashMD5 = $Item.HashMD5 - } - New-Object -TypeName PSObject -Property $ObjectProperties + else { + continue } - #================================================= - # Sort Results - #================================================= - $Results = $Results | Sort-Object -Property Name - if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { - $Results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-dell.json" -Encoding utf8 - } - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($Results.Count) Windows 11 driver packs" - $Results - } - end { - #================================================= - if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { - $Results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-dell.json" -Encoding utf8 - } - if (Test-Path $tempCatalogPackagePath) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary CAB file" - Remove-Item -Path $tempCatalogPackagePath -Force -ErrorAction SilentlyContinue + $name = "Dell $($item.SupportedSystems.Brand.Model.name | Select-Object -Unique)" + $name = $name -replace ' ', ' ' + $name = $name -replace 'Dell Dell', 'Dell' + $model = ($item.SupportedSystems.Brand.Model.name | Select-Object -Unique) + + $driverPackVersion = $item.dellVersion + if ($driverPackVersion -eq '*') { + $driverPackVersion = $null } - if (Test-Path $tempCatalogPath) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" - Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue + + $releaseDate = Get-Date $item.dateTime -Format 'yy.MM.dd' + + $objectProperties = [Ordered]@{ + CatalogVersion = $catalogVersion + ReleaseDate = $releaseDate + Name = "$name $driverPackVersion [$releaseDate]" + Manufacturer = 'Dell' + Model = $model + SystemId = [string[]]@($item.SupportedSystems.Brand.Model.systemID | Select-Object -Unique) + FileName = (Split-Path -Leaf $item.path) + Url = -join ($onlineBaseUri, $item.path) + OperatingSystem = $operatingSystem + OSArchitecture = 'amd64' + HashMD5 = $item.HashMD5 } - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - #================================================= + New-Object -TypeName PSObject -Property $objectProperties + } + + $results = $results | Sort-Object -Property Name + if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { + $results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-dell.json" -Encoding utf8 } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($results.Count) Windows 11 driver packs" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + $results } diff --git a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogHP.ps1 b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogHP.ps1 index e90c290..47bb5c5 100644 --- a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogHP.ps1 +++ b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogHP.ps1 @@ -1,41 +1,25 @@ function Get-OSDCoreDriverPackCatalogHP { <# .SYNOPSIS - Downloads and parses the HP driver pack catalog for Windows 11. + Gets the HP driver pack catalog bundled with the module. .DESCRIPTION - Retrieves the latest HP Client Driver Pack Catalog from HP's cloud repository, - extracts and parses it to create a catalog of available Windows 11 driver packs. - Falls back to offline catalog if download fails. + Reads the HP driver pack catalog XML from the module and returns Windows 11 + driver pack objects. This function does not download or update catalog content. + Use Update-OSDCoreDriverPackCatalogHP to refresh the module catalog. .PARAMETER LocalDriverPackCatalog - Path to the local fallback HP catalog XML file. - - .PARAMETER OemDriverPackCatalog - URL to the online HP driver pack catalog CAB file. - - .PARAMETER Force - Forces download and rebuild of the temporary online catalog even when a - cached temp catalog file already exists. - - .PARAMETER LocalOnly - Uses only local catalog values and skips online catalog download/extraction. + Path to the local HP catalog XML file bundled with the module. .EXAMPLE Get-OSDCoreDriverPackCatalogHP - Retrieves the HP driver pack catalog for Windows 11. - - .EXAMPLE - Get-OSDCoreDriverPackCatalogHP -Force - - Forces a refresh of the HP driver pack catalog by downloading the latest version - from HP's server, bypassing any cached copies. + Gets the HP driver pack catalog from the module. .EXAMPLE - Get-OSDCoreDriverPackCatalogHP -LocalOnly + Get-OSDCoreDriverPackCatalogHP -LocalDriverPackCatalog 'C:\Catalogs\hp.xml' - Processes only local catalog values without any online download checks. + Gets HP driver pack catalog values from a custom XML file. .OUTPUTS PSCustomObject[] @@ -43,186 +27,89 @@ function Get-OSDCoreDriverPackCatalogHP { SystemId, URL, ReleaseDate, and other metadata. .NOTES - Catalog is downloaded from https://hpia.hpcloud.hp.com/downloads/driverpackcatalog/HPClientDriverPackCatalog.cab + The module catalog is stored in core\driverpacks\hp.xml. #> [CmdletBinding()] param ( [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] - [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\hp.xml'), + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\hp.xml') + ) - [Parameter(Mandatory = $false)] - [ValidateNotNullOrEmpty()] - [string]$OemDriverPackCatalog = 'https://hpia.hpcloud.hp.com/downloads/driverpackcatalog/HPClientDriverPackCatalog.cab', + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Indexing $LocalDriverPackCatalog" + + [xml]$xmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw -ErrorAction Stop + if (-not $xmlCatalogContent.NewDataSet.HPClientDriverPackCatalog) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to load HP driver pack catalog content'), + 'CatalogLoadFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $LocalDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } - [Parameter(Mandatory = $false)] - [switch]$Force, + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" + $hpCatalogRoot = $xmlCatalogContent.NewDataSet.HPClientDriverPackCatalog + if ($hpCatalogRoot -and $hpCatalogRoot.DateReleased) { + $dtDateReleased = [datetime]::ParseExact($hpCatalogRoot.DateReleased, 'yyyy-MM-dd', $null) + $catalogVersion = $dtDateReleased.ToString('yy.MM.dd') + } + else { + $catalogVersion = Get-Date -Format yy.MM.dd + } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $catalogVersion" - [Parameter(Mandatory = $false)] - [switch]$LocalOnly - ) + $hpSoftPaqList = $xmlCatalogContent.NewDataSet.HPClientDriverPackCatalog.SoftPaqList.SoftPaq + $hpModelList = $xmlCatalogContent.NewDataSet.HPClientDriverPackCatalog.ProductOSDriverPackList.ProductOSDriverPack + $hpModelList = $hpModelList | Where-Object { $_.OSId -ge '4317' } - begin { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - #================================================= - # Catalogs - $tempCatalogPackagePath = "$($env:TEMP)\HPClientDriverPackCatalog.cab" - $tempCatalogPath = "$($env:TEMP)\osdcloud-driverpack-hp.xml" - #================================================= - # Build realtime catalog from online source, if fails fallback to offline catalog - try { - if ($LocalOnly) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LocalOnly requested; skipping online catalog download" - } - elseif ($Force -or -not (Test-Path $tempCatalogPath)) { - - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading $OemDriverPackCatalog" - $null = Invoke-WebRequest -Uri $OemDriverPackCatalog -OutFile $tempCatalogPackagePath -ErrorAction Stop - - if (Test-Path $tempCatalogPackagePath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Validating $tempCatalogPackagePath" - # Use list mode for CAB validation to avoid destination warnings. - $cabTest = try { & expand.exe -D $tempCatalogPackagePath 2>&1 } catch { $null } - if ($LASTEXITCODE -ne 0) { - Write-Warning "CAB file validation failed: $cabTest" - Remove-Item -Path $tempCatalogPackagePath -Force -ErrorAction SilentlyContinue - } - } - - if (Test-Path $tempCatalogPackagePath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Extracting $tempCatalogPath" - # expand.exe is used for CAB extraction as Expand-Archive only supports ZIP - $expandResult = & expand.exe $tempCatalogPackagePath $tempCatalogPath 2>&1 - if ($LASTEXITCODE -ne 0) { - Write-Warning "Failed to extract catalog: $expandResult" - Remove-Item -Path $tempCatalogPackagePath -Force -ErrorAction SilentlyContinue - } - } - } else { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using temp catalog" - } - } catch { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Failed to download DriverPack catalog: $($_.Exception.Message)" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Falling back to local catalog" + $results = foreach ($item in $hpModelList) { + $hpSoftPaq = $hpSoftPaqList | Where-Object { $_.Id -eq $item.SoftPaqId } + if ($null -eq $hpSoftPaq) { + continue } - # Load catalog content - if ($LocalOnly) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - [xml]$XmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw - } - elseif (Test-Path $tempCatalogPath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $tempCatalogPath" - [xml]$XmlCatalogContent = Get-Content -Path $tempCatalogPath -Raw - } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - [xml]$XmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw - } + $osVersion = $item.OSName + $osVersion = $osVersion.Substring($osVersion.Length - 4) - # Validate catalog content - if (-not $XmlCatalogContent) { - $errorRecord = [System.Management.Automation.ErrorRecord]::new( - [System.Exception]::new("Failed to load catalog content"), - 'CatalogLoadFailed', - [System.Management.Automation.ErrorCategory]::InvalidData, - $tempCatalogPath - ) - $PSCmdlet.ThrowTerminatingError($errorRecord) - } - } + $template = 'M/d/yyyy hh:mm:ss tt' + $dtReleaseDate = [datetime]::ParseExact($hpSoftPaq.DateReleased, $template, $null) + $releaseDate = $dtReleaseDate.ToString('yy.MM.dd') - process { - #================================================= - # Build Catalog - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" - - # Extract catalog version from DateReleased attribute of root element - $HpCatalogRoot = $XmlCatalogContent.NewDataSet.HPClientDriverPackCatalog - if ($HpCatalogRoot -and $HpCatalogRoot.DateReleased) { - # DateReleased is in format: 2026-06-11 - $dtDateReleased = [datetime]::ParseExact($HpCatalogRoot.DateReleased, 'yyyy-MM-dd', $null) - $CatalogVersion = $dtDateReleased.ToString('yy.MM.dd') - } else { - # Fallback to current date if DateReleased is not available - $CatalogVersion = Get-Date -Format yy.MM.dd + $systemIds = if ($item.SystemId) { + $item.SystemId.split(',').ForEach({ $_.Trim() }) } - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $CatalogVersion" - - $HpSoftPaqList = $XmlCatalogContent.NewDataSet.HPClientDriverPackCatalog.SoftPaqList.SoftPaq - $HpModelList = $XmlCatalogContent.NewDataSet.HPClientDriverPackCatalog.ProductOSDriverPackList.ProductOSDriverPack - $HpModelList = $HpModelList | Where-Object {$_.OSId -ge '4317'} - #================================================= - # Create Object - #================================================= - $Results = foreach ($Item in $HpModelList) { - $HpSoftPaq = $null - $HpSoftPaq = $HpSoftPaqList | Where-Object {$_.Id -eq $Item.SoftPaqId} - - if ($null -eq $HpSoftPaq) { - Continue - } - $OperatingSystem = 'Windows 11' - - $OSVersion = $Item.OSName - $OSVersion = $OSVersion.Substring($OSVersion.Length - 4) - - $template = "M/d/yyyy hh:mm:ss tt" - $timeinfo = $HpSoftPaq.DateReleased - $dtReleaseDate = [datetime]::ParseExact($timeinfo, $template, $null) - $ReleaseDate = $dtReleaseDate.ToString("yy.MM.dd") - - # Handle null SystemId - $SystemIds = if ($Item.SystemId) { - $Item.SystemId.split(',').ForEach({$_.Trim()}) - } else { - @() - } - - $ObjectProperties = [Ordered]@{ - CatalogVersion = $CatalogVersion - ReleaseDate = $ReleaseDate - Name = "$($Item.SystemName) $($Item.SoftPaqId) [$ReleaseDate]" - Manufacturer = 'HP' - Model = $Item.SystemName - SystemId = [string[]]$SystemIds - FileName = $HpSoftPaq.Url | Split-Path -Leaf - Url = $HpSoftPaq.Url - OperatingSystem = 'Windows 11' - OSArchitecture = 'amd64' - OSVersion = $OSVersion - HashMD5 = $HpSoftPaq.MD5 - } - New-Object -TypeName PSObject -Property $ObjectProperties + else { + @() } - #================================================= - # Cleanup Catalog - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Filtering to latest driver packs per model" - $Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object Model | ForEach-Object {$_.Group | Select-Object -First 1} - #================================================= - # Sort Results - #================================================= - $Results = $Results | Sort-Object -Property Name - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($Results.Count) Windows 11 driver packs" - $Results - } - end { - #================================================= - if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { - $Results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-hp.json" -Encoding utf8 - } - if (Test-Path $tempCatalogPackagePath) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary CAB file" - Remove-Item -Path $tempCatalogPackagePath -Force -ErrorAction SilentlyContinue + $objectProperties = [Ordered]@{ + CatalogVersion = $catalogVersion + ReleaseDate = $releaseDate + Name = "$($item.SystemName) $($item.SoftPaqId) [$releaseDate]" + Manufacturer = 'HP' + Model = $item.SystemName + SystemId = [string[]]$systemIds + FileName = $hpSoftPaq.Url | Split-Path -Leaf + Url = $hpSoftPaq.Url + OperatingSystem = 'Windows 11' + OSArchitecture = 'amd64' + OSVersion = $osVersion + HashMD5 = $hpSoftPaq.MD5 } - if (Test-Path $tempCatalogPath) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" - Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue - } - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - #================================================= + New-Object -TypeName PSObject -Property $objectProperties + } + + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Filtering to latest driver packs per model" + $results = $results | Sort-Object Model, OSVersion -Descending | Group-Object Model | ForEach-Object { $_.Group | Select-Object -First 1 } + $results = $results | Sort-Object -Property Name + if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { + $results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-hp.json" -Encoding utf8 } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($results.Count) Windows 11 driver packs" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + $results } diff --git a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogLenovo.ps1 b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogLenovo.ps1 index 165a4c6..f3339e1 100644 --- a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogLenovo.ps1 +++ b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogLenovo.ps1 @@ -1,40 +1,25 @@ function Get-OSDCoreDriverPackCatalogLenovo { <# .SYNOPSIS - Downloads and parses the Lenovo driver pack catalog for Windows 11. + Gets the Lenovo driver pack catalog bundled with the module. .DESCRIPTION - Retrieves the latest Lenovo SCCM driver pack catalog from Lenovo's download site, - parses the XML to create a catalog of available Windows 11 driver packs. - Falls back to offline catalog if download fails. + Reads the Lenovo driver pack catalog XML from the module and returns Windows 11 + driver pack objects. This function does not download or update catalog content. + Use Update-OSDCoreDriverPackCatalogLenovo to refresh the module catalog. .PARAMETER LocalDriverPackCatalog - Path to the local fallback Lenovo catalog XML file. - - .PARAMETER OemDriverPackCatalog - URL to the online Lenovo driver pack catalog XML file. - - .PARAMETER Force - Forces download and rebuild of the temporary online catalog even when a - cached temp catalog file already exists. - - .PARAMETER LocalOnly - Uses only local catalog values and skips online catalog download. + Path to the local Lenovo catalog XML file bundled with the module. .EXAMPLE Get-OSDCoreDriverPackCatalogLenovo - Retrieves the Lenovo driver pack catalog for Windows 11. - - .EXAMPLE - Get-OSDCoreDriverPackCatalogLenovo -Force - - Forces a fresh online download of the Lenovo catalog before parsing. + Gets the Lenovo driver pack catalog from the module. .EXAMPLE - Get-OSDCoreDriverPackCatalogLenovo -LocalOnly + Get-OSDCoreDriverPackCatalogLenovo -LocalDriverPackCatalog 'C:\Catalogs\lenovo.xml' - Processes only local catalog values without any online download checks. + Gets Lenovo driver pack catalog values from a custom XML file. .OUTPUTS PSCustomObject[] @@ -42,158 +27,76 @@ function Get-OSDCoreDriverPackCatalogLenovo { SystemId, URL, ReleaseDate, and other metadata. .NOTES - Catalog is downloaded from https://download.lenovo.com/cdrt/td/catalogv2.xml + The module catalog is stored in core\driverpacks\lenovo.xml. #> [CmdletBinding()] param ( [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] - [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\lenovo.xml'), - - [Parameter(Mandatory = $false)] - [ValidateNotNullOrEmpty()] - [string]$OemDriverPackCatalog = 'https://download.lenovo.com/cdrt/td/catalogv2.xml', - - [Parameter(Mandatory = $false)] - [switch]$Force, - - [Parameter(Mandatory = $false)] - [switch]$LocalOnly + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\lenovo.xml') ) - begin { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - #================================================= - # Catalogs - $tempCatalogPath = "$($env:TEMP)\osdcloud-driverpack-lenovo.xml" - #================================================= - # Build realtime catalog from online source, if fails fallback to offline catalog - try { - if ($LocalOnly) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LocalOnly requested; skipping online catalog download" - } - elseif ($Force -or -not (Test-Path $tempCatalogPath)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading $OemDriverPackCatalog" - $sourceContent = Invoke-RestMethod -Uri $OemDriverPackCatalog -UseBasicParsing -ErrorAction Stop - - if ($sourceContent) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $tempCatalogPath" - # Remove BOM (Byte Order Mark) from the beginning of the content - $catalogContent = $sourceContent.Substring(3) - $catalogContent | Out-File -FilePath $tempCatalogPath -Encoding utf8 -Force - [xml]$XmlCatalogContent = $catalogContent - } - } else { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using temp catalog" - if (Test-Path $tempCatalogPath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $tempCatalogPath" - [xml]$XmlCatalogContent = Get-Content -Path $tempCatalogPath -Raw - } - } - } catch { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Failed to download DriverPack catalog: $($_.Exception.Message)" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Falling back to local catalog" - } - - # Load offline catalog if online catalog failed - if ($LocalOnly) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - [xml]$XmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw - } - elseif (-not $XmlCatalogContent) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - [xml]$XmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw - } - - # Validate catalog content - if (-not $XmlCatalogContent) { - $errorRecord = [System.Management.Automation.ErrorRecord]::new( - [System.Exception]::new("Failed to load catalog content"), - 'CatalogLoadFailed', - [System.Management.Automation.ErrorCategory]::InvalidData, - $tempCatalogPath - ) - $PSCmdlet.ThrowTerminatingError($errorRecord) - } + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Indexing $LocalDriverPackCatalog" + + [xml]$xmlCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw -ErrorAction Stop + if (-not $xmlCatalogContent.ModelList.Model) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to load Lenovo driver pack catalog content'), + 'CatalogLoadFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $LocalDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) } - process { - #================================================= - # Build Catalog - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" - $CatalogVersion = Get-Date -Format yy.MM.dd - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $CatalogVersion" - - $ModelList = $XmlCatalogContent.ModelList.Model - #================================================= - # Create Object - #================================================= - $Results = foreach ($Model in $ModelList) { - foreach ($Item in $Model.SCCM) { - $DownloadUrl = $Item.'#text' - # Release date is in this format: 2022-09-28 - $ReleaseDate = $Item.date - # Need to convert it to this format: 22.09.28 - $ReleaseDate = Get-Date $ReleaseDate -Format "yy.MM.dd" - - $OSVersion = $Item.version - if ($OSVersion -eq '*') { - $OSVersion = $null - } - - $HashMD5 = $Item.crc - - if ($Item.os -eq 'win11') { - $OperatingSystem = "Windows 11" - } else { - continue - } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" + $catalogVersion = Get-Date -Format yy.MM.dd + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $catalogVersion" + + $modelList = $xmlCatalogContent.ModelList.Model + $results = foreach ($model in $modelList) { + foreach ($item in $model.SCCM) { + $downloadUrl = $item.'#text' + $releaseDate = Get-Date $item.date -Format 'yy.MM.dd' + $osVersion = $item.version + if ($osVersion -eq '*') { + $osVersion = $null + } - $NewName = "Lenovo $($Model.name) [$ReleaseDate]" + if ($item.os -eq 'win11') { + $operatingSystem = 'Windows 11' + } + else { + continue + } - $ObjectProperties = [Ordered]@{ - CatalogVersion = $CatalogVersion - ReleaseDate = $ReleaseDate - Name = $NewName - Manufacturer = 'Lenovo' - Model = $Model.name - SystemId = $Model.Types.Type.split(',').ForEach({$_.Trim()}) - FileName = $DownloadUrl | Split-Path -Leaf - Url = $DownloadUrl - OperatingSystem = $OperatingSystem - OSArchitecture = 'amd64' - OSVersion = $OSVersion - HashMD5 = $HashMD5 - } - New-Object -TypeName PSObject -Property $ObjectProperties + $objectProperties = [Ordered]@{ + CatalogVersion = $catalogVersion + ReleaseDate = $releaseDate + Name = "Lenovo $($model.name) [$releaseDate]" + Manufacturer = 'Lenovo' + Model = $model.name + SystemId = $model.Types.Type.split(',').ForEach({ $_.Trim() }) + FileName = $downloadUrl | Split-Path -Leaf + Url = $downloadUrl + OperatingSystem = $operatingSystem + OSArchitecture = 'amd64' + OSVersion = $osVersion + HashMD5 = $item.crc } + New-Object -TypeName PSObject -Property $objectProperties } - #================================================= - # Cleanup Catalog - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Filtering to latest driver packs per model" - $Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object Model | ForEach-Object {$_.Group | Select-Object -First 1} - # $Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object HashMD5 | ForEach-Object {$_.Group | Select-Object -First 1} - #================================================= - # Sort Results - #================================================= - $Results = $Results | Sort-Object Model, OSVersion -Descending - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($Results.Count) Windows 11 driver packs" - $Results } - end { - #================================================= - if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { - $Results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-lenovo.json" -Encoding utf8 - } - if (Test-Path $tempCatalogPath) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" - Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue - } - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - #================================================= + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Filtering to latest driver packs per model" + $results = $results | Sort-Object Model, OSVersion -Descending | Group-Object Model | ForEach-Object { $_.Group | Select-Object -First 1 } + $results = $results | Sort-Object Model, OSVersion -Descending + if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { + $results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-lenovo.json" -Encoding utf8 } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($results.Count) Windows 11 driver packs" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + $results } diff --git a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogPanasonic.ps1 b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogPanasonic.ps1 index 562e3f3..5332ebb 100644 --- a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogPanasonic.ps1 +++ b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogPanasonic.ps1 @@ -1,144 +1,91 @@ function Get-OSDCoreDriverPackCatalogPanasonic { - [CmdletBinding()] - param ( - [Parameter(Mandatory = $false)] - [ValidateNotNullOrEmpty()] - [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\panasonic.json'), + <# + .SYNOPSIS + Gets the Panasonic driver pack catalog bundled with the module. - [Parameter(Mandatory = $false)] - [ValidateNotNullOrEmpty()] - [string]$OemDriverPackCatalog = 'https://pna-b2b-storage-mkt.s3.amazonaws.com/computer/software/apps/Panasonic.json', + .DESCRIPTION + Reads the Panasonic driver pack catalog JSON from the module and returns Windows 11 + driver pack objects. This function does not download or update catalog content. + Use Update-OSDCoreDriverPackCatalogPanasonic to refresh the module catalog. - [Parameter(Mandatory = $false)] - [switch]$Force, + .PARAMETER LocalDriverPackCatalog + Path to the local Panasonic catalog JSON file bundled with the module. - [Parameter(Mandatory = $false)] - [switch]$LocalOnly - ) + .EXAMPLE + Get-OSDCoreDriverPackCatalogPanasonic - begin { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - #================================================= - # Catalogs - $tempCatalogPath = "$($env:TEMP)\osdcloud-driverpack-panasonic.json" - #================================================= - # Build realtime catalog from online source, if fails fallback to offline catalog - try { - if ($LocalOnly) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LocalOnly requested; skipping online catalog download" - } - elseif ($Force -or -not (Test-Path $tempCatalogPath)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading $OemDriverPackCatalog" - $sourceContent = Invoke-RestMethod -Uri $OemDriverPackCatalog -UseBasicParsing -ErrorAction Stop + Gets the Panasonic driver pack catalog from the module. - if ($sourceContent) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $tempCatalogPath" - $sourceContent | Out-File -FilePath $tempCatalogPath -Encoding utf8 -Force - $JsonCatalogContent = $sourceContent - } - } else { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using temp Panasonic driver pack catalog" - if (Test-Path $tempCatalogPath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $tempCatalogPath" - $JsonCatalogContent = Get-Content -Path $tempCatalogPath -Raw | ConvertFrom-Json - } - } - } catch { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Failed to download Panasonic driver pack catalog: $($_.Exception.Message)" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Falling back to local catalog" - } + .OUTPUTS + PSCustomObject[] + Returns custom objects with driver pack information including Name, Model, + SystemId, URL, ReleaseDate, and other metadata. - # Load offline catalog if online catalog failed - if ($LocalOnly) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - $JsonCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw | ConvertFrom-Json - } - elseif (-not $JsonCatalogContent) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - $JsonCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw | ConvertFrom-Json - } - - # Validate catalog content - if (-not $JsonCatalogContent) { - $errorRecord = [System.Management.Automation.ErrorRecord]::new( - [System.Exception]::new("Failed to load catalog content"), - 'CatalogLoadFailed', - [System.Management.Automation.ErrorCategory]::InvalidData, - $tempCatalogPath - ) - $PSCmdlet.ThrowTerminatingError($errorRecord) - } - } + .NOTES + The module catalog is stored in core\driverpacks\panasonic.json. + #> + [CmdletBinding()] + param ( + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\panasonic.json') + ) - process { - #================================================= - # Build Catalog - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" - $CatalogVersion = Get-Date $JsonCatalogContent.LastDateModified -Format "yy.MM.dd" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $CatalogVersion" + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Indexing $LocalDriverPackCatalog" - $ModelList = $JsonCatalogContent.Models - #================================================= - # Create Object - #================================================= - $Results = foreach ($Model in $ModelList) { + $jsonCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw -ErrorAction Stop | ConvertFrom-Json + if (-not $jsonCatalogContent.Models) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to load Panasonic driver pack catalog content'), + 'CatalogLoadFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $LocalDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } - $ModelName = $Model.Alias - $SystemId = $Model.Product + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building driver pack catalog" + $catalogVersion = Get-Date $jsonCatalogContent.LastDateModified -Format 'yy.MM.dd' + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Catalog version: $catalogVersion" - foreach ($Item in $Model.DriverPacks) { - if ($Item.OSVer -eq 'Win10') { continue } + $results = foreach ($model in $jsonCatalogContent.Models) { + $modelName = $model.Alias + $systemId = $model.Product - $DownloadUrl = $Item.URL - $ReleaseDate = $Item.ReleaseDate - $ReleaseDate = Get-Date $ReleaseDate -Format "yy.MM.dd" + foreach ($item in $model.DriverPacks) { + if ($item.OSVer -eq 'Win10') { continue } - $HashMD5 = $Item.Hash - $NewName = "Panasonic $ModelName [$ReleaseDate]" + $downloadUrl = $item.URL + $releaseDate = Get-Date $item.ReleaseDate -Format 'yy.MM.dd' - $ObjectProperties = [Ordered]@{ - CatalogVersion = $CatalogVersion - ReleaseDate = $ReleaseDate - Name = $NewName - Manufacturer = 'Panasonic' - Model = $ModelName - SystemId = $SystemId - FileName = $DownloadUrl | Split-Path -Leaf - Url = $DownloadUrl - OperatingSystem = 'Windows 11' - OSArchitecture = 'amd64' - OSVersion = $Item.OSRelease - HashMD5 = $HashMD5 - } - New-Object -TypeName PSObject -Property $ObjectProperties + $objectProperties = [Ordered]@{ + CatalogVersion = $catalogVersion + ReleaseDate = $releaseDate + Name = "Panasonic $modelName [$releaseDate]" + Manufacturer = 'Panasonic' + Model = $modelName + SystemId = $systemId + FileName = $downloadUrl | Split-Path -Leaf + Url = $downloadUrl + OperatingSystem = 'Windows 11' + OSArchitecture = 'amd64' + OSVersion = $item.OSRelease + HashMD5 = $item.Hash } + New-Object -TypeName PSObject -Property $objectProperties } - #================================================= - # Cleanup Catalog - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Filtering to latest driver packs per model" - $Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object Model | ForEach-Object {$_.Group | Select-Object -First 1} - $Results = $Results | Sort-Object Model, OSVersion -Descending | Group-Object HashMD5 | ForEach-Object {$_.Group | Select-Object -First 1} - #================================================= - # Sort Results - #================================================= - $Results = $Results | Sort-Object Model - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($Results.Count) Windows 11 driver packs" - $Results } - end { - #================================================= - if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { - $Results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-panasonic.json" -Encoding utf8 - } - if (Test-Path $tempCatalogPath) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" - Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue - } - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - #================================================= + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Filtering to latest driver packs per model" + $results = $results | Sort-Object Model, OSVersion -Descending | Group-Object Model | ForEach-Object { $_.Group | Select-Object -First 1 } + $results = $results | Sort-Object Model, OSVersion -Descending | Group-Object HashMD5 | ForEach-Object { $_.Group | Select-Object -First 1 } + $results = $results | Sort-Object Model + if ($VerbosePreference -eq 'Continue' -or $DebugPreference -eq 'Continue') { + $results | ConvertTo-Json -Depth 10 | Out-File -FilePath "$env:Temp\osdcloud-driverpack-panasonic.json" -Encoding utf8 } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($results.Count) Windows 11 driver packs" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + $results } diff --git a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogSurface.ps1 b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogSurface.ps1 index b0ab383..a7d3d23 100644 --- a/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogSurface.ps1 +++ b/OSDCloud/private/core-driverpack/Get-OSDCoreDriverPackCatalogSurface.ps1 @@ -1,431 +1,52 @@ function Get-OSDCoreDriverPackCatalogSurface { <# .SYNOPSIS - Retrieves the Microsoft Surface driver pack catalog, enriching entries from live download pages. + Gets the Microsoft Surface driver pack catalog bundled with the module. .DESCRIPTION - Loads the bundled surface.json catalog as the offline base. For entries that include an - UpdatePage URL, the function scrapes the corresponding Microsoft download page to find the - newest available MSI and updates FileName, Url, and ReleaseDate accordingly. - Results are cached in $env:TEMP so subsequent calls within the same session skip network - requests. Falls back to base JSON values when a page cannot be reached. + Reads the Surface driver pack catalog JSON from the module and returns the catalog + objects. This function does not perform live UpdatePage checks or update catalog + content. Use Update-OSDCoreDriverPackCatalogSurface to refresh the module catalog. .PARAMETER LocalDriverPackCatalog - Path to the local fallback Surface catalog JSON file. - - .PARAMETER Force - Forces bypass of the temp cache and rebuilds the enriched catalog from the - local Surface catalog. - - .PARAMETER LocalOnly - Uses only local catalog values and skips connectivity probing and all live - UpdatePage checks. + Path to the local Surface catalog JSON file bundled with the module. .EXAMPLE Get-OSDCoreDriverPackCatalogSurface - Returns all Surface driver pack entries, with live URLs where available. - - .EXAMPLE - Get-OSDCoreDriverPackCatalogSurface -Verbose - - Returns all Surface driver pack entries with verbose progress output. - - .EXAMPLE - Get-OSDCoreDriverPackCatalogSurface -Force - - Bypasses the temp cache and rebuilds the enriched catalog. - - .EXAMPLE - Get-OSDCoreDriverPackCatalogSurface -LocalOnly - - Processes only local catalog values without any live network checks. + Gets the Surface driver pack catalog from the module. .OUTPUTS PSCustomObject[] - Objects with CatalogVersion, ReleaseDate, Name, Manufacturer, Model, SystemId, FileName, - Url, OperatingSystem, OSArchitecture, and HashMD5 properties. + Objects with CatalogVersion, ReleaseDate, Name, Manufacturer, Model, SystemId, + FileName, Url, OperatingSystem, OSArchitecture, HashMD5, and UpdatePage properties. .NOTES - Base catalog: core/driverpacks/surface.json (bundled with the module) - Temp cache: $env:TEMP\osdcloud-driverpack-surface.json + The module catalog is stored in core\driverpacks\surface.json. #> [CmdletBinding()] param ( [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] - [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\surface.json'), - - [Parameter(Mandatory = $false)] - [switch]$Force, - - [Parameter(Mandatory = $false)] - [switch]$LocalOnly + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\surface.json') ) - begin { - $Error.Clear() - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - #================================================= - # Paths - $tempCatalogPath = "$env:TEMP\osdcloud-driverpack-surface.json" - #================================================= - # Load from temp cache if available - $useCache = $false - if ((-not $Force) -and (Test-Path $tempCatalogPath)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $tempCatalogPath" - $JsonCatalogContent = Get-Content -Path $tempCatalogPath -Raw -Encoding UTF8 | ConvertFrom-Json - $useCache = $true - } - else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Indexing $LocalDriverPackCatalog" - $JsonCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw -Encoding UTF8 | ConvertFrom-Json - } - - if (-not $JsonCatalogContent) { - $errorRecord = [System.Management.Automation.ErrorRecord]::new( - [System.Exception]::new("Failed to load Surface driver pack catalog"), - 'CatalogLoadFailed', - [System.Management.Automation.ErrorCategory]::InvalidData, - $LocalDriverPackCatalog - ) - $PSCmdlet.ThrowTerminatingError($errorRecord) - } + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Indexing $LocalDriverPackCatalog" + + $jsonCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw -Encoding UTF8 -ErrorAction Stop | ConvertFrom-Json + if (-not $jsonCatalogContent) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to load Surface driver pack catalog content'), + 'CatalogLoadFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $LocalDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) } - process { - #================================================= - # Return cached results immediately - #================================================= - if ($useCache) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Returning $($JsonCatalogContent.Count) entries from cache" - $JsonCatalogContent - return - } - - #================================================= - # Build enriched catalog from base JSON - #================================================= - $processStopwatch = [System.Diagnostics.Stopwatch]::StartNew() - $CatalogVersion = Get-Date -Format yy.MM.dd - $userAgent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' - $msiPattern = 'https://download\.microsoft\.com/download/[^"''<>\s]+\.msi' - $datePattern = 'Date Published[^:]*:[^\d]*(\d{1,2}/\d{1,2}/\d{4})' - $parallelThrottle = 4 - $updatePageCache = @{} - $urlReachabilityCache = @{} - $networkCalls = 0 - $fallbackCalls = 0 - $cacheHits = 0 - $reachabilityChecks = 0 - $reachabilityMisses = 0 - $isOnline = $true - $skipLiveUpdates = [bool]$LocalOnly - - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building Surface driver pack catalog (CatalogVersion: $CatalogVersion)" - - # If a device OSDProduct is known, limit live UpdatePage checks to the matching entry only - $osdProduct = if ($global:OSDCoreDevice -and $global:OSDCoreDevice.OSDProduct) { $global:OSDCoreDevice.OSDProduct } else { $null } - $escapedOsdProduct = if ($osdProduct) { [regex]::Escape($osdProduct) } else { $null } - if ($osdProduct) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDProduct filter active: only fetching live data for SystemId matching '$osdProduct'" - } - - # Determine online/offline state from the first catalog URL that does not require UpdatePage scraping. - $connectivityProbeUrl = ( - $JsonCatalogContent | - Where-Object { $_.Url -and (-not $_.UpdatePage) } | - Select-Object -First 1 - ).Url - - if ($LocalOnly) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LocalOnly requested; skipping connectivity probe and live updates" - } - elseif ($connectivityProbeUrl) { - try { - $probe = Invoke-WebRequest -Uri $connectivityProbeUrl -Method Head -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -TimeoutSec 10 -ErrorAction Stop - $isOnline = ($probe.StatusCode -ge 200 -and $probe.StatusCode -lt 400) - } - catch { - try { - $probe = Invoke-WebRequest -Uri $connectivityProbeUrl -Method Get -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -TimeoutSec 10 -ErrorAction Stop - $isOnline = ($probe.StatusCode -ge 200 -and $probe.StatusCode -lt 400) - } - catch { - $isOnline = $false - } - } - } - - if (-not $isOnline) { - $skipLiveUpdates = $true - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Offline detected from connectivity probe; skipping all live updates and using local catalog values" - } - - # Probe existing target URLs first; only scrape UpdatePage when the current URL is unreachable. - $uniqueUpdatePages = @() - if (-not $skipLiveUpdates) { - $targetItems = @( - $JsonCatalogContent | Where-Object { - $_.UpdatePage -and ((-not $escapedOsdProduct) -or ($_.SystemId -match $escapedOsdProduct)) - } - ) - $itemsNeedingUpdate = @( - foreach ($item in $targetItems) { - $targetUrl = $item.Url - $isReachable = $false - - if (-not [string]::IsNullOrWhiteSpace($targetUrl)) { - if ($urlReachabilityCache.ContainsKey($targetUrl)) { - $isReachable = [bool]$urlReachabilityCache[$targetUrl] - } - else { - $reachabilityChecks++ - try { - $probe = Invoke-WebRequest -Uri $targetUrl -Method Head -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -TimeoutSec 10 -ErrorAction Stop - $isReachable = ($probe.StatusCode -ge 200 -and $probe.StatusCode -lt 400) - } - catch { - try { - $probe = Invoke-WebRequest -Uri $targetUrl -Method Get -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -TimeoutSec 10 -ErrorAction Stop - $isReachable = ($probe.StatusCode -ge 200 -and $probe.StatusCode -lt 400) - } - catch { - $isReachable = $false - } - } - - $urlReachabilityCache[$targetUrl] = $isReachable - } - } - - if (-not $isReachable) { - $reachabilityMisses++ - $item - } - } - ) - - $uniqueUpdatePages = @($itemsNeedingUpdate.UpdatePage | Sort-Object -Unique) - } - - if ($uniqueUpdatePages.Count -gt 0) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Resolving $($uniqueUpdatePages.Count) unique UpdatePage URLs" - - if ($PSVersionTable.PSVersion.Major -ge 7) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using parallel UpdatePage resolution (ThrottleLimit: $parallelThrottle)" - $resolvedPages = $uniqueUpdatePages | ForEach-Object -Parallel { - $updatePage = $_ - $result = [ordered]@{ - UpdatePage = $updatePage - Error = $null - FileName = $null - Url = $null - ReleaseDate = $null - UsedFallback = $false - } - - try { - $response = Invoke-WebRequest -Uri $updatePage -UseBasicParsing -UserAgent $using:userAgent -MaximumRedirection 5 -ErrorAction Stop - $html = $response.Content - - $allMsi = @( - [regex]::Matches($html, $using:msiPattern) | - ForEach-Object { $_.Value } | - Select-Object -Unique - ) - - if ($allMsi.Count -eq 0 -and $updatePage -match '[?&]id=(\d+)') { - $confirmUri = "https://www.microsoft.com/en-us/download/confirmation.aspx?id=$($Matches[1])" - $result.UsedFallback = $true - $response = Invoke-WebRequest -Uri $confirmUri -UseBasicParsing -UserAgent $using:userAgent -MaximumRedirection 5 -ErrorAction Stop - $html = $response.Content - $allMsi = @( - [regex]::Matches($html, $using:msiPattern) | - ForEach-Object { $_.Value } | - Select-Object -Unique - ) - } - - if ($allMsi.Count -gt 0) { - $win11Uris = @($allMsi | Where-Object { $_ -match 'Win11' }) - $candidates = if ($win11Uris.Count -gt 0) { $win11Uris } else { $allMsi } - $bestUri = $candidates | - Sort-Object { - if ($_ -match '_(\d{5})_') { [int]$Matches[1] } else { 0 } - } -Descending | - Select-Object -First 1 - - $newDate = $null - $now = [datetime]::UtcNow - foreach ($m in [regex]::Matches($html, $using:datePattern)) { - try { - $parsed = [datetime]::ParseExact($m.Groups[1].Value, 'M/d/yyyy', $null) - if ($parsed.Year -ge 2015 -and $parsed -le $now.AddMonths(3)) { - $newDate = $parsed.ToString('yy.MM.dd') - break - } - } - catch { } - } - - $result.FileName = $bestUri -replace '.+/', '' - $result.Url = $bestUri - $result.ReleaseDate = $newDate - } - else { - $result.Error = 'No MSI links found' - } - } - catch { - $result.Error = $_.Exception.Message - } - - [PSCustomObject]$result - } -ThrottleLimit $parallelThrottle - - foreach ($resolved in $resolvedPages) { - if (-not $resolved) { continue } - $networkCalls++ - if ($resolved.UsedFallback) { $fallbackCalls++ } - $updatePageCache[$resolved.UpdatePage] = @{ - Error = $resolved.Error - FileName = $resolved.FileName - Url = $resolved.Url - ReleaseDate = $resolved.ReleaseDate - } - } - } - else { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] PowerShell < 7 detected, using sequential UpdatePage resolution" - foreach ($updatePage in $uniqueUpdatePages) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading $updatePage" - $networkCalls++ - try { - $response = Invoke-WebRequest -Uri $updatePage -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -ErrorAction Stop - $html = $response.Content - - $allMsi = @( - [regex]::Matches($html, $msiPattern) | - ForEach-Object { $_.Value } | - Select-Object -Unique - ) - - if ($allMsi.Count -eq 0 -and $updatePage -match '[?&]id=(\d+)') { - $confirmUri = "https://www.microsoft.com/en-us/download/confirmation.aspx?id=$($Matches[1])" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading $confirmUri" - $fallbackCalls++ - $networkCalls++ - $response = Invoke-WebRequest -Uri $confirmUri -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -ErrorAction Stop - $html = $response.Content - $allMsi = @( - [regex]::Matches($html, $msiPattern) | - ForEach-Object { $_.Value } | - Select-Object -Unique - ) - } - - if ($allMsi.Count -gt 0) { - $win11Uris = @($allMsi | Where-Object { $_ -match 'Win11' }) - $candidates = if ($win11Uris.Count -gt 0) { $win11Uris } else { $allMsi } - $bestUri = $candidates | - Sort-Object { - if ($_ -match '_(\d{5})_') { [int]$Matches[1] } else { 0 } - } -Descending | - Select-Object -First 1 - - $newDate = $null - $now = [datetime]::UtcNow - foreach ($m in [regex]::Matches($html, $datePattern)) { - try { - $parsed = [datetime]::ParseExact($m.Groups[1].Value, 'M/d/yyyy', $null) - if ($parsed.Year -ge 2015 -and $parsed -le $now.AddMonths(3)) { - $newDate = $parsed.ToString('yy.MM.dd') - break - } - } - catch { } - } - - $updatePageCache[$updatePage] = @{ - Error = $null - FileName = ($bestUri -replace '.+/', '') - Url = $bestUri - ReleaseDate = $newDate - } - } - else { - $updatePageCache[$updatePage] = @{ Error = 'No MSI links found' } - } - } - catch { - $updatePageCache[$updatePage] = @{ Error = $_.Exception.Message } - } - } - } - } - - $Results = foreach ($item in $JsonCatalogContent) { - $releaseDate = $item.ReleaseDate - $fileName = $item.FileName - $url = $item.Url - - $isTargetDevice = (-not $escapedOsdProduct) -or ($item.SystemId -match $escapedOsdProduct) - - if ($item.UpdatePage -and $isTargetDevice) { - $updatePage = $item.UpdatePage - - if ($updatePageCache.ContainsKey($updatePage)) { - $cacheHits++ - $cached = $updatePageCache[$updatePage] - if (-not $cached.Error) { - $fileName = $cached.FileName - $url = $cached.Url - if ($cached.ReleaseDate) { - $releaseDate = $cached.ReleaseDate - } - } - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Cache hit for $($item.Model) -> $fileName" - } - else { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No pre-resolved cache entry for $($item.Model), using base values" - } - } - - # Rebuild the Name bracket date with current releaseDate - $baseName = $item.Name -replace '\s*\[.*?\]$', '' - $displayName = "$baseName [$releaseDate]" - - $objectProperties = [Ordered]@{ - CatalogVersion = $CatalogVersion - ReleaseDate = $releaseDate - Name = $displayName - Manufacturer = $item.Manufacturer - Model = $item.Model - SystemId = $item.SystemId - FileName = $fileName - Url = $url - OperatingSystem = $item.OperatingSystem - OSArchitecture = $item.OSArchitecture - HashMD5 = $item.HashMD5 - UpdatePage = $item.UpdatePage - } - [PSCustomObject]$objectProperties - } - - #================================================= - # Save enriched results to temp cache - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Saving $($Results.Count) entries to $tempCatalogPath" - $Results | ConvertTo-Json -Depth 10 | Out-File -FilePath $tempCatalogPath -Encoding utf8 -Force - - $processStopwatch.Stop() - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Performance: ReachabilityChecks=$reachabilityChecks, ReachabilityMisses=$reachabilityMisses, UpdatePages=$($uniqueUpdatePages.Count), CacheHits=$cacheHits, NetworkCalls=$networkCalls, FallbackCalls=$fallbackCalls, ElapsedMs=$($processStopwatch.ElapsedMilliseconds)" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($Results.Count) Surface driver packs" - $Results - } - - end { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $(@($jsonCatalogContent).Count) Surface driver packs" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + $jsonCatalogContent } diff --git a/OSDCloud/private/core-driverpack/Initialize-ModuleCoreDriverPacks.ps1 b/OSDCloud/private/core-driverpack/Initialize-ModuleCoreDriverPacks.ps1 new file mode 100644 index 0000000..fcc0971 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Initialize-ModuleCoreDriverPacks.ps1 @@ -0,0 +1,106 @@ +function Initialize-ModuleCoreDriverPacks { + <# + .SYNOPSIS + Retrieves driver pack information for the specified manufacturer and operating system architecture. + + .DESCRIPTION + Gets driver pack catalogs based on the device manufacturer and OS architecture. For AMD64 architecture, + manufacturer-specific catalogs are loaded. For ARM64 and other architectures, the default catalog is returned. + Supports Dell, HP, Lenovo, Microsoft (Surface), and generic devices. + + .PARAMETER OSDManufacturer + The device manufacturer name. Defaults to the value from $global:OSDCoreDevice.OSDManufacturer. + Supported values: Dell, HP, Lenovo, Microsoft, or any other value will use the Default catalog. + + .PARAMETER ProcessorArchitecture + The operating system architecture. Defaults to the value from $global:OSDCoreDevice.ProcessorArchitecture. + Typically 'amd64' or 'arm64'. + + .PARAMETER OSDProduct + The device product value. Defaults to the value from $global:OSDCoreDevice.OSDProduct. + Used to scope Microsoft Surface catalog updates to the current device. + + .OUTPUTS + PSCustomObject + Array of driver pack objects containing driver information for the specified manufacturer and architecture. + + .EXAMPLE + PS> Initialize-ModuleCoreDriverPacks + Returns driver packs for the current device's manufacturer and architecture. + + .EXAMPLE + PS> Initialize-ModuleCoreDriverPacks -OSDManufacturer 'Dell' -ProcessorArchitecture 'amd64' + Returns driver packs for Dell devices with AMD64 architecture. + + .NOTES + Requires manufacturer-specific cmdlets (Get-OSDCoreDriverPackCatalogDell, Get-OSDCoreDriverPackCatalogHP, etc.) to be available. + #> + [CmdletBinding()] + param ( + [System.String]$OSDManufacturer = $global:OSDCoreDevice.OSDManufacturer, + + [System.String]$ProcessorArchitecture = $global:OSDCoreDevice.ProcessorArchitecture, + + [System.String]$OSDProduct = $global:OSDCoreDevice.OSDProduct + ) + #================================================= + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($MyInvocation.MyCommand.Name)] $OSDManufacturer $ProcessorArchitecture" + #================================================= + [System.String]$GenericDriverPackJson = Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\generic.json' + + $shouldUpdateDriverPackCatalog = $global:OSDCoreLicense.IsRegistered -eq $true + + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] shouldUpdateDriverPackCatalog is '$shouldUpdateDriverPackCatalog'." + + if ($shouldUpdateDriverPackCatalog) { + $updateDriverPackCatalog = switch ($OSDManufacturer) { + 'Dell' { { Update-OSDCoreDriverPackCatalogDell -Confirm:$false } } + 'HP' { { Update-OSDCoreDriverPackCatalogHP -Confirm:$false } } + 'Lenovo' { { Update-OSDCoreDriverPackCatalogLenovo -Confirm:$false } } + 'Microsoft' { { Update-OSDCoreDriverPackCatalogSurface -OSDProduct $OSDProduct -Confirm:$false } } + 'Panasonic' { { Update-OSDCoreDriverPackCatalogPanasonic -Confirm:$false } } + default { $null } + } + + if ($updateDriverPackCatalog) { + try { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Updating driver pack catalog for $OSDManufacturer." + & $updateDriverPackCatalog + } + catch { + Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to update driver pack catalog for $OSDManufacturer. Using bundled catalog. $($_.Exception.Message)" + } + } + else { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No driver pack catalog updater is available for $OSDManufacturer." + } + } + else { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Driver pack catalog update skipped because OSDCoreLicense.IsRegistered is not true." + } + + # Load Generic driver pack catalog for fallback + $GenericCatalog = Get-Content -Path $GenericDriverPackJson -Raw | ConvertFrom-Json + + if ($ProcessorArchitecture -eq 'amd64') { + $DriverPackValues = switch ($OSDManufacturer) { + 'Dell' { Get-OSDCoreDriverPackCatalogDell } + 'HP' { Get-OSDCoreDriverPackCatalogHP } + 'Lenovo' { Get-OSDCoreDriverPackCatalogLenovo } + 'Microsoft' { Get-OSDCoreDriverPackCatalogSurface } + 'Panasonic' { Get-OSDCoreDriverPackCatalogPanasonic } + default { $GenericCatalog } + } + } + else { + $DriverPackValues = switch ($OSDManufacturer) { + 'Microsoft' { Get-OSDCoreDriverPackCatalogSurface } + default { $GenericCatalog } + } + } + + #$DriverPackValues | Where-Object { $_.OSArchitecture -eq $ProcessorArchitecture } + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: ModuleCoreDriverPacks" + $global:ModuleCoreDriverPacks = $DriverPackValues | Where-Object { $_.OSArchitecture -eq $ProcessorArchitecture } + $global:ModuleCoreDriverPacks | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'ModuleCoreDriverPacks.xml') -Force +} diff --git a/OSDCloud/private/core-driverpack/Test-OSDCoreDriverPackCloudObject.ps1 b/OSDCloud/private/core-driverpack/Test-OSDCoreDriverPackCloudObject.ps1 new file mode 100644 index 0000000..a835013 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Test-OSDCoreDriverPackCloudObject.ps1 @@ -0,0 +1,175 @@ +function Test-OSDCoreDriverPackCloudObject { + <# + .SYNOPSIS + Tests whether an OSDCore driver pack object is available online and ready to downloaded. + + .DESCRIPTION + Reads the Url property from the supplied driver pack object, or from + $global:OSDCoreDriverPackCloudObject when no object is supplied, and returns + $true when a live TCP connection and HTTP HEAD request can reach it. Returns $false when the object + is missing, the Url property is empty, or the URL test fails. HTTP and HTTPS + are both tested for host-only web URLs so systems with an invalid date can still + detect basic network reachability over HTTP. Specific absolute file URLs are + tested exactly as supplied. + + .PARAMETER DriverPackCloudObject + Driver pack object containing a Url property to test. + + .EXAMPLE + Test-OSDCoreDriverPackCloudObject + Tests the Url property on $global:OSDCoreDriverPackCloudObject. + + .EXAMPLE + Test-OSDCoreDriverPackCloudObject -DriverPackCloudObject $global:OSDCoreDriverPackCloudObject + Tests the Url property on the supplied driver pack object. + + .LINK + https://github.com/OSDeploy/OSD/tree/master/docs + + .NOTES + Author: David Segura - Recast Software + 2026-07-19 - Initial private helper created + 2026-07-20 - Added live TCP validation before HTTP HEAD to avoid cached success responses + #> + [CmdletBinding()] + [OutputType([System.Boolean])] + param ( + [Parameter(ValueFromPipeline)] + [psobject] + $DriverPackCloudObject = $global:OSDCoreDriverPackCloudObject + ) + + process { + # The caller may pass an object explicitly or rely on the global OSDCore driver pack selection. + if ($null -eq $DriverPackCloudObject) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject is not set." + return $false + } + + # A missing URL means there is nothing useful to test, so return the Boolean failure state. + $DriverPackCloudObjectUrl = [string]$DriverPackCloudObject.Url + if ([string]::IsNullOrWhiteSpace($DriverPackCloudObjectUrl)) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject Url is not set." + return $false + } + + try { + # Build the exact set of URLs to probe before making any web requests. + $DriverPackCloudObjectUri = [System.Uri]$DriverPackCloudObjectUrl + $IsSpecificAbsoluteUrl = $DriverPackCloudObjectUri.IsAbsoluteUri -and -not [string]::IsNullOrWhiteSpace($DriverPackCloudObjectUri.AbsolutePath) -and $DriverPackCloudObjectUri.AbsolutePath -ne '/' + if ($DriverPackCloudObjectUri.IsAbsoluteUri -and ($DriverPackCloudObjectUri.Scheme -notin @('http', 'https') -or $IsSpecificAbsoluteUrl)) { + # Non-web absolute URIs and specific file URLs are tested as provided. + $RequestUris = @($DriverPackCloudObjectUri) + } + else { + if ($DriverPackCloudObjectUri.IsAbsoluteUri) { + # Host-only web URLs are checked over HTTPS first, then HTTP as a fallback for bad system time. + $UriBuilder = New-Object System.UriBuilder $DriverPackCloudObjectUri + $UriBuilder.Scheme = 'https' + $UriBuilder.Port = -1 + $HttpsUri = $UriBuilder.Uri + + $UriBuilder.Scheme = 'http' + $UriBuilder.Port = -1 + $HttpUri = $UriBuilder.Uri + } + else { + # Bare URLs are expanded to both HTTPS and HTTP targets. + $HttpsUri = [System.Uri]::new("https://$($DriverPackCloudObjectUri.OriginalString)") + $HttpUri = [System.Uri]::new("http://$($DriverPackCloudObjectUri.OriginalString)") + } + + $RequestUris = @($HttpsUri, $HttpUri) + } + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject Url is not valid: $DriverPackCloudObjectUrl" + return $false + } + + $InvokeWebRequestCommand = Get-Command Invoke-WebRequest + $Results = foreach ($RequestUri in $RequestUris) { + if ($RequestUri.Scheme -in @('http', 'https')) { + $RequestPort = $RequestUri.Port + if ($RequestUri.IsDefaultPort) { + if ($RequestUri.Scheme -eq 'https') { + $RequestPort = 443 + } + else { + $RequestPort = 80 + } + } + + $TcpClient = New-Object System.Net.Sockets.TcpClient + try { + $ConnectTask = $TcpClient.ConnectAsync($RequestUri.DnsSafeHost, $RequestPort) + if (-not $ConnectTask.Wait(15000) -or -not $TcpClient.Connected) { + throw "TCP connection failed." + } + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject TCP FAIL: $RequestUri" + [pscustomobject]@{ + Uri = $RequestUri + Success = $false + } + continue + } + finally { + $TcpClient.Close() + } + } + + # Use HEAD to validate reachability without downloading the driver pack payload. + $Params = @{ + Method = 'Head' + Uri = $RequestUri + Headers = @{'Cache-Control'='no-cache, no-store'; 'Pragma'='no-cache'} + ErrorAction = 'Stop' + } + + # Keep the request compatible across Windows PowerShell and newer PowerShell versions. + if ($InvokeWebRequestCommand.Parameters.ContainsKey('UseBasicParsing')) { + $Params['UseBasicParsing'] = $true + } + if ($InvokeWebRequestCommand.Parameters.ContainsKey('TimeoutSec')) { + $Params['TimeoutSec'] = 15 + } + if ($InvokeWebRequestCommand.Parameters.ContainsKey('DisableKeepAlive')) { + $Params['DisableKeepAlive'] = $true + } + + $PreviousCachePolicy = [System.Net.WebRequest]::DefaultCachePolicy + try { + [System.Net.WebRequest]::DefaultCachePolicy = New-Object System.Net.Cache.RequestCachePolicy ([System.Net.Cache.RequestCacheLevel]::NoCacheNoStore) + Invoke-WebRequest @Params | Out-Null + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject URL OK: $RequestUri" + [pscustomobject]@{ + Uri = $RequestUri + Success = $true + } + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreDriverPackCloudObject URL FAIL: $RequestUri" + [pscustomobject]@{ + Uri = $RequestUri + Success = $false + } + } + finally { + [System.Net.WebRequest]::DefaultCachePolicy = $PreviousCachePolicy + } + } + + # If only HTTP succeeds, the network may be reachable but HTTPS can fail because the clock is wrong. + $HttpsResult = $Results | Where-Object { $_.Uri.Scheme -eq 'https' } | Select-Object -First 1 + $HttpResult = $Results | Where-Object { $_.Uri.Scheme -eq 'http' } | Select-Object -First 1 + + if ($HttpsResult -and $HttpResult -and -not $HttpsResult.Success -and $HttpResult.Success) { + Write-Warning "HTTPS connection failed for $($HttpsResult.Uri), but HTTP connection succeeded for $($HttpResult.Uri). Check the system date and time." + } + + # Return true when any attempted URL succeeds. + [bool]($Results | Where-Object { $_.Success } | Select-Object -First 1) + } +} diff --git a/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogDell.ps1 b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogDell.ps1 new file mode 100644 index 0000000..06f3462 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogDell.ps1 @@ -0,0 +1,119 @@ +function Update-OSDCoreDriverPackCatalogDell { + <# + .SYNOPSIS + Updates the Dell driver pack catalog bundled with the module. + + .DESCRIPTION + Downloads Dell DriverPackCatalog.cab, extracts DriverPackCatalog.xml, validates + the extracted XML, and replaces the local module Dell catalog file. + + .PARAMETER LocalDriverPackCatalog + Path to the local Dell catalog XML file to update. + + .PARAMETER OemDriverPackCatalog + URL to the online Dell DriverPack catalog CAB file. + + .PARAMETER PassThru + Returns parsed Dell driver pack catalog objects after updating the local catalog. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogDell + + Updates the Dell driver pack catalog bundled with the module. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogDell -PassThru + + Updates the Dell catalog and returns parsed Windows 11 driver pack objects. + + .OUTPUTS + None by default. PSCustomObject[] when PassThru is specified. + + .NOTES + Catalog is downloaded from https://downloads.dell.com/catalog/DriverPackCatalog.cab. + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param ( + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [System.String]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\dell.xml'), + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [System.String]$OemDriverPackCatalog = 'https://downloads.dell.com/catalog/DriverPackCatalog.cab', + + [Parameter(Mandatory = $false)] + [switch]$PassThru + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + + $tempCatalogPackagePath = Join-Path -Path $env:TEMP -ChildPath 'DriverPackCatalog.cab' + $tempCatalogPath = Join-Path -Path $env:TEMP -ChildPath 'osdcloud-driverpack-dell.xml' + + foreach ($tempPath in @($tempCatalogPackagePath, $tempCatalogPath)) { + if (Test-Path -LiteralPath $tempPath) { + Remove-Item -LiteralPath $tempPath -Force -ErrorAction SilentlyContinue + } + } + + try { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] Recast: OSDCloud is updating the Dell DriverPack catalog." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloading $OemDriverPackCatalog" + $null = Invoke-WebRequest -Uri $OemDriverPackCatalog -OutFile $tempCatalogPackagePath -ErrorAction Stop + + if (-not (Test-Path $tempCatalogPackagePath)) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to download Dell DriverPack catalog CAB'), + 'CatalogDownloadFailed', + [System.Management.Automation.ErrorCategory]::ResourceUnavailable, + $OemDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Extracting $tempCatalogPath" + $expandResult = & expand.exe $tempCatalogPackagePath $tempCatalogPath 2>&1 + if ($LASTEXITCODE -ne 0 -or -not (Test-Path $tempCatalogPath)) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new("Failed to extract Dell DriverPack catalog: $expandResult"), + 'CatalogExtractFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPackagePath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + [xml]$xmlCatalogContent = Get-Content -Path $tempCatalogPath -Raw -ErrorAction Stop + if (-not $xmlCatalogContent.DriverPackManifest.DriverPackage) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Extracted Dell DriverPack catalog XML is invalid'), + 'CatalogValidationFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + if ($PSCmdlet.ShouldProcess($LocalDriverPackCatalog, 'Update Dell driver pack catalog')) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Updating $LocalDriverPackCatalog" + Copy-Item -Path $tempCatalogPath -Destination $LocalDriverPackCatalog -Force + } + + if ($PassThru.IsPresent) { + Get-OSDCoreDriverPackCatalogDell -LocalDriverPackCatalog $LocalDriverPackCatalog + } + } + finally { + if (Test-Path $tempCatalogPackagePath) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary CAB file" + Remove-Item -Path $tempCatalogPackagePath -Force -ErrorAction SilentlyContinue + } + if (Test-Path $tempCatalogPath) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" + Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + } +} diff --git a/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogHP.ps1 b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogHP.ps1 new file mode 100644 index 0000000..8055c72 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogHP.ps1 @@ -0,0 +1,131 @@ +function Update-OSDCoreDriverPackCatalogHP { + <# + .SYNOPSIS + Updates the HP driver pack catalog bundled with the module. + + .DESCRIPTION + Downloads HPClientDriverPackCatalog.cab, validates and extracts the XML catalog, + validates the extracted XML, and replaces the local module HP catalog file. + + .PARAMETER LocalDriverPackCatalog + Path to the local HP catalog XML file to update. + + .PARAMETER OemDriverPackCatalog + URL to the online HP Client Driver Pack Catalog CAB file. + + .PARAMETER PassThru + Returns parsed HP driver pack catalog objects after updating the local catalog. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogHP + + Updates the HP driver pack catalog bundled with the module. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogHP -PassThru + + Updates the HP catalog and returns parsed Windows 11 driver pack objects. + + .OUTPUTS + None by default. PSCustomObject[] when PassThru is specified. + + .NOTES + Catalog is downloaded from https://hpia.hpcloud.hp.com/downloads/driverpackcatalog/HPClientDriverPackCatalog.cab. + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param ( + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\hp.xml'), + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$OemDriverPackCatalog = 'https://hpia.hpcloud.hp.com/downloads/driverpackcatalog/HPClientDriverPackCatalog.cab', + + [Parameter(Mandatory = $false)] + [switch]$PassThru + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + + $tempCatalogPackagePath = Join-Path -Path $env:TEMP -ChildPath 'HPClientDriverPackCatalog.cab' + $tempCatalogPath = Join-Path -Path $env:TEMP -ChildPath 'osdcloud-driverpack-hp.xml' + + foreach ($tempPath in @($tempCatalogPackagePath, $tempCatalogPath)) { + if (Test-Path -LiteralPath $tempPath) { + Remove-Item -LiteralPath $tempPath -Force -ErrorAction SilentlyContinue + } + } + + try { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] Recast: OSDCloud is updating the HP DriverPack catalog." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloading $OemDriverPackCatalog" + $null = Invoke-WebRequest -Uri $OemDriverPackCatalog -OutFile $tempCatalogPackagePath -ErrorAction Stop + + if (-not (Test-Path $tempCatalogPackagePath)) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to download HP DriverPack catalog CAB'), + 'CatalogDownloadFailed', + [System.Management.Automation.ErrorCategory]::ResourceUnavailable, + $OemDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Validating $tempCatalogPackagePath" + $cabTest = try { & expand.exe -D $tempCatalogPackagePath 2>&1 } catch { $null } + if ($LASTEXITCODE -ne 0) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new("HP DriverPack catalog CAB validation failed: $cabTest"), + 'CatalogPackageValidationFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPackagePath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Extracting $tempCatalogPath" + $expandResult = & expand.exe $tempCatalogPackagePath $tempCatalogPath 2>&1 + if ($LASTEXITCODE -ne 0 -or -not (Test-Path $tempCatalogPath)) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new("Failed to extract HP DriverPack catalog: $expandResult"), + 'CatalogExtractFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPackagePath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + [xml]$xmlCatalogContent = Get-Content -Path $tempCatalogPath -Raw -ErrorAction Stop + if (-not $xmlCatalogContent.NewDataSet.HPClientDriverPackCatalog) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Extracted HP DriverPack catalog XML is invalid'), + 'CatalogValidationFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + if ($PSCmdlet.ShouldProcess($LocalDriverPackCatalog, 'Update HP driver pack catalog')) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Updating $LocalDriverPackCatalog" + Copy-Item -Path $tempCatalogPath -Destination $LocalDriverPackCatalog -Force + } + + if ($PassThru.IsPresent) { + Get-OSDCoreDriverPackCatalogHP -LocalDriverPackCatalog $LocalDriverPackCatalog + } + } + finally { + if (Test-Path $tempCatalogPackagePath) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary CAB file" + Remove-Item -Path $tempCatalogPackagePath -Force -ErrorAction SilentlyContinue + } + if (Test-Path $tempCatalogPath) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" + Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + } +} diff --git a/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogLenovo.ps1 b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogLenovo.ps1 new file mode 100644 index 0000000..8e61250 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogLenovo.ps1 @@ -0,0 +1,84 @@ +function Update-OSDCoreDriverPackCatalogLenovo { + <# + .SYNOPSIS + Updates the Lenovo driver pack catalog bundled with the module. + + .DESCRIPTION + Downloads Lenovo's SCCM driver pack catalog XML, validates the XML, and replaces + the local module Lenovo catalog file. + + .PARAMETER LocalDriverPackCatalog + Path to the local Lenovo catalog XML file to update. + + .PARAMETER OemDriverPackCatalog + URL to the online Lenovo driver pack catalog XML file. + + .PARAMETER PassThru + Returns parsed Lenovo driver pack catalog objects after updating the local catalog. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogLenovo + + Updates the Lenovo driver pack catalog bundled with the module. + + .OUTPUTS + None by default. PSCustomObject[] when PassThru is specified. + + .NOTES + Catalog is downloaded from https://download.lenovo.com/cdrt/td/catalogv2.xml. + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param ( + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\lenovo.xml'), + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$OemDriverPackCatalog = 'https://download.lenovo.com/cdrt/td/catalogv2.xml', + + [Parameter(Mandatory = $false)] + [switch]$PassThru + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + + $tempCatalogPath = Join-Path -Path $env:TEMP -ChildPath 'osdcloud-driverpack-lenovo.xml' + if (Test-Path -LiteralPath $tempCatalogPath) { + Remove-Item -LiteralPath $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + + try { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] Recast: OSDCloud is updating the Lenovo DriverPack catalog." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloading $OemDriverPackCatalog" + $null = Invoke-WebRequest -Uri $OemDriverPackCatalog -OutFile $tempCatalogPath -UseBasicParsing -ErrorAction Stop + + [xml]$xmlCatalogContent = Get-Content -Path $tempCatalogPath -Raw -ErrorAction Stop + if (-not $xmlCatalogContent.ModelList.Model) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Downloaded Lenovo DriverPack catalog XML is invalid'), + 'CatalogValidationFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + if ($PSCmdlet.ShouldProcess($LocalDriverPackCatalog, 'Update Lenovo driver pack catalog')) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Updating $LocalDriverPackCatalog" + Copy-Item -Path $tempCatalogPath -Destination $LocalDriverPackCatalog -Force + } + + if ($PassThru.IsPresent) { + Get-OSDCoreDriverPackCatalogLenovo -LocalDriverPackCatalog $LocalDriverPackCatalog + } + } + finally { + if (Test-Path $tempCatalogPath) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" + Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + } +} diff --git a/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogPanasonic.ps1 b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogPanasonic.ps1 new file mode 100644 index 0000000..d5daf88 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogPanasonic.ps1 @@ -0,0 +1,84 @@ +function Update-OSDCoreDriverPackCatalogPanasonic { + <# + .SYNOPSIS + Updates the Panasonic driver pack catalog bundled with the module. + + .DESCRIPTION + Downloads Panasonic's driver pack catalog JSON, validates the JSON, and replaces + the local module Panasonic catalog file. + + .PARAMETER LocalDriverPackCatalog + Path to the local Panasonic catalog JSON file to update. + + .PARAMETER OemDriverPackCatalog + URL to the online Panasonic driver pack catalog JSON file. + + .PARAMETER PassThru + Returns parsed Panasonic driver pack catalog objects after updating the local catalog. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogPanasonic + + Updates the Panasonic driver pack catalog bundled with the module. + + .OUTPUTS + None by default. PSCustomObject[] when PassThru is specified. + + .NOTES + Catalog is downloaded from https://pna-b2b-storage-mkt.s3.amazonaws.com/computer/software/apps/Panasonic.json. + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param ( + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\panasonic.json'), + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$OemDriverPackCatalog = 'https://pna-b2b-storage-mkt.s3.amazonaws.com/computer/software/apps/Panasonic.json', + + [Parameter(Mandatory = $false)] + [switch]$PassThru + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + + $tempCatalogPath = Join-Path -Path $env:TEMP -ChildPath 'osdcloud-driverpack-panasonic.json' + if (Test-Path -LiteralPath $tempCatalogPath) { + Remove-Item -LiteralPath $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + + try { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] Recast: OSDCloud is updating the Panasonic DriverPack catalog." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloading $OemDriverPackCatalog" + $null = Invoke-WebRequest -Uri $OemDriverPackCatalog -OutFile $tempCatalogPath -UseBasicParsing -ErrorAction Stop + + $jsonCatalogContent = Get-Content -Path $tempCatalogPath -Raw -ErrorAction Stop | ConvertFrom-Json + if (-not $jsonCatalogContent.Models) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Downloaded Panasonic DriverPack catalog JSON is invalid'), + 'CatalogValidationFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + if ($PSCmdlet.ShouldProcess($LocalDriverPackCatalog, 'Update Panasonic driver pack catalog')) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Updating $LocalDriverPackCatalog" + Copy-Item -Path $tempCatalogPath -Destination $LocalDriverPackCatalog -Force + } + + if ($PassThru.IsPresent) { + Get-OSDCoreDriverPackCatalogPanasonic -LocalDriverPackCatalog $LocalDriverPackCatalog + } + } + finally { + if (Test-Path $tempCatalogPath) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" + Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + } +} diff --git a/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogSurface.ps1 b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogSurface.ps1 new file mode 100644 index 0000000..7b74fe9 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCatalogSurface.ps1 @@ -0,0 +1,275 @@ +function Update-OSDCoreDriverPackCatalogSurface { + <# + .SYNOPSIS + Updates the Microsoft Surface driver pack catalog bundled with the module. + + .DESCRIPTION + Reads the bundled Surface catalog JSON, resolves live Microsoft download pages for + entries with UpdatePage values, enriches FileName, Url, and ReleaseDate where live + values are found, and replaces the local module Surface catalog file. + + .PARAMETER LocalDriverPackCatalog + Path to the local Surface catalog JSON file to update. + + .PARAMETER OSDProduct + Limits live catalog updates to entries whose SystemId matches this device product value. + + .PARAMETER PassThru + Returns Surface driver pack catalog objects after updating the local catalog. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogSurface + + Updates the Surface driver pack catalog bundled with the module. + + .EXAMPLE + Update-OSDCoreDriverPackCatalogSurface -PassThru + + Updates the Surface catalog and returns catalog objects. + + .OUTPUTS + None by default. PSCustomObject[] when PassThru is specified. + + .NOTES + Base catalog: core\driverpacks\surface.json. + #> + [CmdletBinding(SupportsShouldProcess = $true)] + param ( + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string]$LocalDriverPackCatalog = (Join-Path $($MyInvocation.MyCommand.Module.ModuleBase) 'core\driverpacks\surface.json'), + + [Parameter(Mandatory = $false)] + [string]$OSDProduct, + + [Parameter(Mandatory = $false)] + [switch]$PassThru + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + + $tempCatalogPath = Join-Path -Path $env:TEMP -ChildPath 'osdcloud-driverpack-surface.json' + if (Test-Path -LiteralPath $tempCatalogPath) { + Remove-Item -LiteralPath $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + + $userAgent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36' + $msiPattern = 'https://download\.microsoft\.com/download/[^"''<>\s]+\.msi' + $datePatterns = @( + '"detailsSection_file_date"\s*:\s*"(\d{1,2}/\d{1,2}/\d{4})"', + '"datePublished"\s*:\s*"(\d{1,2}/\d{1,2}/\d{4})', + '(?is)Date Published.{0,500}?(\d{1,2}/\d{1,2}/\d{4})' + ) + $updatePageCache = @{} + $networkCalls = 0 + $fallbackCalls = 0 + + try { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Indexing $LocalDriverPackCatalog" + $jsonCatalogContent = Get-Content -Path $LocalDriverPackCatalog -Raw -Encoding UTF8 -ErrorAction Stop | ConvertFrom-Json + if (-not $jsonCatalogContent) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Failed to load Surface driver pack catalog content'), + 'CatalogLoadFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $LocalDriverPackCatalog + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + $catalogVersion = Get-Date -Format yy.MM.dd + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Building Surface driver pack catalog (CatalogVersion: $catalogVersion)" + + $matchesOSDProduct = { + param ( + [Parameter(Mandatory = $true)] + $Item + ) + + if ([string]::IsNullOrWhiteSpace($OSDProduct)) { + return $true + } + + foreach ($systemId in @($Item.SystemId)) { + if ([string]::Equals([string]$systemId, $OSDProduct, [System.StringComparison]::OrdinalIgnoreCase)) { + return $true + } + } + + return $false + } + + $targetCatalogContent = @(if ([string]::IsNullOrWhiteSpace($OSDProduct)) { + $jsonCatalogContent + } + else { + $jsonCatalogContent | Where-Object { & $matchesOSDProduct -Item $_ } + }) + + if ([string]::IsNullOrWhiteSpace($OSDProduct)) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Updating all Surface driver pack entries." + } + else { + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] Recast: OSDCloud is updating the Surface DriverPack catalog for $OSDProduct." + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Updating Surface driver pack entries matching OSDProduct '$OSDProduct'. Matched $($targetCatalogContent.Count) entries." + if ($targetCatalogContent.Count -eq 0) { + # Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No Surface driver pack catalog entries match OSDProduct '$OSDProduct'. Skipping live update checks." + } + } + + $uniqueUpdatePages = @($targetCatalogContent.UpdatePage | Where-Object { -not [string]::IsNullOrWhiteSpace($_) } | Sort-Object -Unique) + if ($uniqueUpdatePages.Count -gt 0) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Resolving $($uniqueUpdatePages.Count) unique UpdatePage URLs" + } + + foreach ($updatePage in $uniqueUpdatePages) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Refreshing DriverPacks at $updatePage" + $networkCalls++ + try { + $response = Invoke-WebRequest -Uri $updatePage -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -ErrorAction Stop + $html = $response.Content + + $allMsi = @( + [regex]::Matches($html, $msiPattern) | + ForEach-Object { $_.Value } | + Select-Object -Unique + ) + + if ($allMsi.Count -eq 0 -and $updatePage -match '[?&]id=(\d+)') { + $confirmUri = "https://www.microsoft.com/en-us/download/confirmation.aspx?id=$($Matches[1])" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloading $confirmUri" + $fallbackCalls++ + $networkCalls++ + $response = Invoke-WebRequest -Uri $confirmUri -UseBasicParsing -UserAgent $userAgent -MaximumRedirection 5 -ErrorAction Stop + $html = $response.Content + $allMsi = @( + [regex]::Matches($html, $msiPattern) | + ForEach-Object { $_.Value } | + Select-Object -Unique + ) + } + + if ($allMsi.Count -gt 0) { + $win11Uris = @($allMsi | Where-Object { $_ -match 'Win11' }) + $candidates = if ($win11Uris.Count -gt 0) { $win11Uris } else { $allMsi } + $bestUri = $candidates | + Sort-Object { + if ($_ -match '_(\d{5})_') { [int]$Matches[1] } else { 0 } + } -Descending | + Select-Object -First 1 + + $newDate = $null + $now = [datetime]::UtcNow + foreach ($datePattern in $datePatterns) { + foreach ($match in [regex]::Matches($html, $datePattern)) { + try { + $parsed = [datetime]::ParseExact($match.Groups[1].Value, 'M/d/yyyy', $null) + if ($parsed.Year -ge 2015 -and $parsed -le $now.AddMonths(3)) { + $newDate = $parsed.ToString('yy.MM.dd') + break + } + } + catch { } + } + + if ($newDate) { + break + } + } + + $updatePageCache[$updatePage] = @{ + Error = $null + FileName = ($bestUri -replace '.+/', '') + Url = $bestUri + ReleaseDate = $newDate + } + } + else { + $updatePageCache[$updatePage] = @{ Error = 'No MSI links found' } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No MSI links found for $updatePage" + } + } + catch { + $updatePageCache[$updatePage] = @{ Error = $_.Exception.Message } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Failed to resolve $updatePage`: $($_.Exception.Message)" + } + } + + $results = foreach ($item in $jsonCatalogContent) { + $isUpdateTarget = & $matchesOSDProduct -Item $item + $itemCatalogVersion = $item.CatalogVersion + $releaseDate = $item.ReleaseDate + $fileName = $item.FileName + $url = $item.Url + + if ($isUpdateTarget) { + $itemCatalogVersion = $catalogVersion + } + + if ($isUpdateTarget -and $item.UpdatePage -and $updatePageCache.ContainsKey($item.UpdatePage)) { + $cached = $updatePageCache[$item.UpdatePage] + if (-not $cached.Error) { + $fileName = $cached.FileName + $url = $cached.Url + if ($cached.ReleaseDate) { + $releaseDate = $cached.ReleaseDate + } + } + } + + $displayName = $item.Name + if ($isUpdateTarget) { + $baseName = $item.Name -replace '\s*\[.*?\]$', '' + $displayName = "$baseName [$releaseDate]" + } + + $objectProperties = [Ordered]@{ + CatalogVersion = $itemCatalogVersion + ReleaseDate = $releaseDate + Name = $displayName + Manufacturer = $item.Manufacturer + Model = $item.Model + SystemId = $item.SystemId + FileName = $fileName + Url = $url + OperatingSystem = $item.OperatingSystem + OSArchitecture = $item.OSArchitecture + HashMD5 = $item.HashMD5 + UpdatePage = $item.UpdatePage + } + [PSCustomObject]$objectProperties + } + + $results | ConvertTo-Json -Depth 10 | Out-File -FilePath $tempCatalogPath -Encoding utf8 -Force + $updatedCatalogContent = Get-Content -Path $tempCatalogPath -Raw -Encoding UTF8 -ErrorAction Stop | ConvertFrom-Json + if (-not $updatedCatalogContent) { + $errorRecord = [System.Management.Automation.ErrorRecord]::new( + [System.Exception]::new('Generated Surface driver pack catalog JSON is invalid'), + 'CatalogValidationFailed', + [System.Management.Automation.ErrorCategory]::InvalidData, + $tempCatalogPath + ) + $PSCmdlet.ThrowTerminatingError($errorRecord) + } + + if ($PSCmdlet.ShouldProcess($LocalDriverPackCatalog, 'Update Surface driver pack catalog')) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Updating $LocalDriverPackCatalog" + Copy-Item -Path $tempCatalogPath -Destination $LocalDriverPackCatalog -Force + } + + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Performance: UpdatePages=$($uniqueUpdatePages.Count), NetworkCalls=$networkCalls, FallbackCalls=$fallbackCalls" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Found $($results.Count) Surface driver packs" + + if ($PassThru.IsPresent) { + Get-OSDCoreDriverPackCatalogSurface -LocalDriverPackCatalog $LocalDriverPackCatalog + } + } + finally { + if (Test-Path $tempCatalogPath) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary catalog file" + Remove-Item -Path $tempCatalogPath -Force -ErrorAction SilentlyContinue + } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + } +} diff --git a/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCloudObjectSurface.ps1 b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCloudObjectSurface.ps1 new file mode 100644 index 0000000..4114be4 --- /dev/null +++ b/OSDCloud/private/core-driverpack/Update-OSDCoreDriverPackCloudObjectSurface.ps1 @@ -0,0 +1,60 @@ +function Update-OSDCoreDriverPackCloudObjectSurface { + <# + .SYNOPSIS + Gets the latest Microsoft Surface driver pack object for a device product. + + .DESCRIPTION + Updates the bundled Microsoft Surface driver pack catalog entry matching the + specified OSDProduct, then returns the refreshed driver pack catalog object. + SystemId values are compared using an exact, case-insensitive match. + + .PARAMETER OSDProduct + Surface System SKU or SystemId used to select the driver pack catalog entry. + + .EXAMPLE + Update-OSDCoreDriverPackCloudObjectSurface -OSDProduct 'Surface_Pro_9_2038' + + Updates and returns the matching Surface driver pack catalog object. + + .OUTPUTS + PSCustomObject. The refreshed Surface driver pack catalog object when a match + is found. Otherwise, no object is returned. + + .NOTES + Internal helper for refreshing selected Surface driver pack metadata. + #> + [CmdletBinding()] + [OutputType([System.Management.Automation.PSObject])] + param ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $OSDProduct + ) + #================================================= + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + #================================================= + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Updating Surface DriverPackCloudObject for OSDProduct '$OSDProduct'." + $surfaceDriverPacks = Update-OSDCoreDriverPackCatalogSurface -OSDProduct $OSDProduct -PassThru -Confirm:$false + + $driverPackCloudObject = $surfaceDriverPacks | Where-Object { + $systemIdMatch = $false + foreach ($systemId in @($_.SystemId)) { + if ([System.String]::Equals([System.String]$systemId, $OSDProduct, [System.StringComparison]::OrdinalIgnoreCase)) { + $systemIdMatch = $true + break + } + } + $systemIdMatch + } | Select-Object -First 1 + + if ($driverPackCloudObject) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Refreshed Surface DriverPackCloudObject: $($driverPackCloudObject.Name)" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" + return $driverPackCloudObject + } + + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No Surface DriverPackCloudObject matched OSDProduct '$OSDProduct'." + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" +} diff --git a/OSDCloud/private/core-license/Get-OSDCoreLicense.ps1 b/OSDCloud/private/core-license/Get-OSDCoreLicense.ps1 new file mode 100644 index 0000000..ac45fa3 --- /dev/null +++ b/OSDCloud/private/core-license/Get-OSDCoreLicense.ps1 @@ -0,0 +1,268 @@ +function Get-OSDCoreLicense { + <# + .SYNOPSIS + Returns a single Recast Core license object. + + .DESCRIPTION + Reads .license2 files from the Recast Software license directory, parses the + JSON payload, validates expected fields, removes duplicates, and returns one + selected license object. + Selection precedence is: + 1) PreferredEmail exact match (when provided) + 2) Any non-empty email that is not support@recastsoftware.com + 3) support@recastsoftware.com fallback + 4) Empty or null email + Expired licenses are still eligible for selection. + + .PARAMETER Path + The directory path to search for .license2 files. + + .PARAMETER PreferredEmail + Optional preferred email value used to prioritize license selection when + multiple license files exist. + Comparison is case-insensitive. + + .OUTPUTS + PSCustomObject. Returns one selected license object, or $null when no + license files are available. + + .EXAMPLE + Get-OSDCoreLicense + Returns a selected validated license object from ProgramData\Recast Software\Licenses. + + .EXAMPLE + Get-OSDCoreLicense -Path 'D:\Licenses' + Returns a selected validated license object from a custom directory. + + .EXAMPLE + Get-OSDCoreLicense -PreferredEmail 'david@segura.org' + Prefers a license with the specified email when available. + + .LINK + https://github.com/OSDeploy/OSD/tree/master/docs + + .NOTES + Author: David Segura - Recast Software + 2026-07-17 - Initial help block created + 2026-07-17 - Added content parsing, validation, and de-duplication + 2026-07-17 - Added single-object selection with email preference and support fallback + #> + [CmdletBinding()] + param ( + [Parameter()] + [string]$Path = (Join-Path -Path $env:ProgramData -ChildPath 'Recast Software\Licenses'), + + [Parameter()] + [string]$PreferredEmail + ) + + if (-not (Test-Path -Path $Path -PathType Container)) { + try { + $null = New-Item -Path $Path -ItemType Directory -Force -ErrorAction Stop + } + catch { + Write-Verbose "Unable to create license path: $Path. Error: $($_.Exception.Message)" + return $null + } + } + + Write-Verbose "Starting license discovery in path: $Path" + + if (-not (Test-Path -Path $Path -PathType Container)) { + Write-Verbose "License path not found: $Path" + return $null + } + + # Gather candidate license files newest-first so tie-breaking remains deterministic. + $LicenseFiles = Get-ChildItem -Path $Path -Filter '*.license2' -File -ErrorAction Ignore | + Sort-Object -Property LastWriteTime -Descending + Write-Verbose "Discovered $(@($LicenseFiles).Count) license file(s)" + + if (-not $LicenseFiles) { + Write-Verbose 'No license files found' + return $null + } + + # Parse each file into candidate entries and track seen identities for deduplication. + $ParsedResults = New-Object System.Collections.Generic.List[object] + $Seen = @{} + + foreach ($LicenseFile in $LicenseFiles) { + $RawContent = $null + $Payload = $null + + try { + Write-Verbose "Reading license file: $($LicenseFile.FullName)" + $RawContent = Get-Content -Path $LicenseFile.FullName -Raw -ErrorAction Stop + $Payload = $RawContent | ConvertFrom-Json -ErrorAction Stop + Write-Verbose "Parsed $(@($Payload).Count) payload entr$(if (@($Payload).Count -eq 1) {'y'} else {'ies'}) from $($LicenseFile.Name)" + } + catch { + Write-Verbose "Skipping unreadable license file: $($LicenseFile.FullName). Error: $($_.Exception.Message)" + continue + } + + foreach ($Entry in @($Payload)) { + # Validate required schema fields and normalize commonly used values. + $ValidationErrors = New-Object System.Collections.Generic.List[string] + $LicenseGuid = $null + $ExpirationDate = $null + $ActivationExpirationDate = $null + + if (-not ($Entry.PSObject.Properties.Name -contains 'Data')) { + $ValidationErrors.Add('Missing Data object') + } + + if (-not ($Entry.PSObject.Properties.Name -contains 'Signature') -or [string]::IsNullOrWhiteSpace([string]$Entry.Signature)) { + $ValidationErrors.Add('Missing Signature') + } + + if ($Entry.Data) { + if (-not ($Entry.Data.PSObject.Properties.Name -contains 'LicenseGuid') -or [string]::IsNullOrWhiteSpace([string]$Entry.Data.LicenseGuid)) { + $ValidationErrors.Add('Missing Data.LicenseGuid') + } + else { + try { + $LicenseGuid = [guid]([string]$Entry.Data.LicenseGuid) + } + catch { + $ValidationErrors.Add('Invalid Data.LicenseGuid format') + } + } + + if (-not ($Entry.Data.PSObject.Properties.Name -contains 'AuthorizedPluginCommands') -or -not @($Entry.Data.AuthorizedPluginCommands)) { + $ValidationErrors.Add('Missing or empty Data.AuthorizedPluginCommands') + } + } + + if (($Entry.PSObject.Properties.Name -contains 'Expiration') -and -not [string]::IsNullOrWhiteSpace([string]$Entry.Expiration)) { + try { + $ExpirationDate = [datetime]([string]$Entry.Expiration) + } + catch { + $ValidationErrors.Add('Invalid Expiration date format') + } + } + + if (($Entry.PSObject.Properties.Name -contains 'ActivationExpiration') -and -not [string]::IsNullOrWhiteSpace([string]$Entry.ActivationExpiration)) { + try { + $ActivationExpirationDate = [datetime]([string]$Entry.ActivationExpiration) + } + catch { + $ValidationErrors.Add('Invalid ActivationExpiration date format') + } + } + + $SignatureHash = $null + if ($Entry.PSObject.Properties.Name -contains 'Signature' -and -not [string]::IsNullOrWhiteSpace([string]$Entry.Signature)) { + $HashProvider = [System.Security.Cryptography.SHA256]::Create() + try { + $Bytes = [System.Text.Encoding]::UTF8.GetBytes([string]$Entry.Signature) + $SignatureHash = [System.BitConverter]::ToString($HashProvider.ComputeHash($Bytes)).Replace('-', '').ToLowerInvariant() + } + finally { + $HashProvider.Dispose() + } + } + + $DedupKey = $null + if ($LicenseGuid) { + $DedupKey = "guid:$($LicenseGuid.ToString().ToLowerInvariant())" + } + elseif ($SignatureHash) { + $DedupKey = "signature:$SignatureHash" + } + else { + $DedupKey = "file:$($LicenseFile.FullName.ToLowerInvariant())" + } + + if ($Seen.ContainsKey($DedupKey)) { + Write-Verbose "Skipping duplicate license: $($LicenseFile.FullName)" + continue + } + + # Mark identity as seen and materialize a normalized candidate object. + $Seen[$DedupKey] = $true + + $ParsedResults.Add([pscustomobject]@{ + FileName = $LicenseFile.Name + FullName = $LicenseFile.FullName + LastWriteTime = $LicenseFile.LastWriteTime + LicenseGuid = if ($LicenseGuid) { $LicenseGuid.ToString() } else { $null } + Organization = $Entry.Data.Organization + FirstName = $Entry.Data.FirstName + LastName = $Entry.Data.LastName + Email = $Entry.Data.Email + LicenseType = $Entry.Data.LicenseType + DeviceCount = $Entry.Data.DeviceCount + UserCount = $Entry.Data.UserCount + Expiration = $ExpirationDate + ActivationExpiration = $ActivationExpirationDate + AuthorizedPluginCommandCount = @($Entry.Data.AuthorizedPluginCommands).Count + SignatureHash = $SignatureHash + IsValid = ($ValidationErrors.Count -eq 0) + ValidationErrors = @($ValidationErrors) + Data = $Entry.Data + }) + } + } + + if (-not $ParsedResults) { + Write-Verbose 'No valid parseable license candidates were produced' + return $null + } + Write-Verbose "Candidate count after de-duplication: $($ParsedResults.Count)" + + $PreferredEmailNormalized = $null + if (-not [string]::IsNullOrWhiteSpace($PreferredEmail)) { + $PreferredEmailNormalized = $PreferredEmail.Trim().ToLowerInvariant() + Write-Verbose "PreferredEmail provided: $PreferredEmailNormalized" + } + else { + Write-Verbose 'PreferredEmail not provided; using default selection precedence' + } + + $SupportFallbackEmail = 'support@recastsoftware.com' + + # Rank candidates by email precedence, then by newest timestamp, then file name. + $SelectedLicense = $ParsedResults | + Sort-Object -Property @( + @{ + Expression = { + $EmailValue = $null + if (-not [string]::IsNullOrWhiteSpace([string]$_.Email)) { + $EmailValue = ([string]$_.Email).Trim().ToLowerInvariant() + } + + if ($PreferredEmailNormalized -and $EmailValue -eq $PreferredEmailNormalized) { + 0 + } + elseif ($EmailValue -and $EmailValue -ne $SupportFallbackEmail) { + 1 + } + elseif ($EmailValue -eq $SupportFallbackEmail) { + 2 + } + else { + 3 + } + } + Ascending = $true + }, + @{ + Expression = { $_.LastWriteTime } + Descending = $true + }, + @{ + Expression = { $_.FileName } + Ascending = $true + } + ) | + Select-Object -First 1 + + if ($SelectedLicense) { + Write-Verbose "Selected license file: $($SelectedLicense.FileName) (Email: $($SelectedLicense.Email); LicenseGuid: $($SelectedLicense.LicenseGuid))" + } + + $SelectedLicense +} diff --git a/OSDCloud/private/core-license/Initialize-OSDCoreLicense.ps1 b/OSDCloud/private/core-license/Initialize-OSDCoreLicense.ps1 new file mode 100644 index 0000000..5dcf750 --- /dev/null +++ b/OSDCloud/private/core-license/Initialize-OSDCoreLicense.ps1 @@ -0,0 +1,41 @@ +function Initialize-OSDCoreLicense { + <# + .SYNOPSIS + Initializes the OSDCore license state. + + .DESCRIPTION + Retrieves the selected Recast Core license and stores it in + $global:OSDCoreLicense. The IsRegistered property is true when the + selected license has an email address; otherwise it is false. + + .OUTPUTS + None. This function updates $global:OSDCoreLicense. + + .EXAMPLE + Initialize-OSDCoreLicense + + Retrieves the current license and updates $global:OSDCoreLicense. + + .NOTES + Depends on Get-OSDCoreLicense being available in the session. + #> + [CmdletBinding()] + param () + + $Error.Clear() + $license = Get-OSDCoreLicense + $classWin32ComputerSystemProduct = Get-CimInstance -ClassName Win32_ComputerSystemProduct + $deviceUUID = [System.String]$classWin32ComputerSystemProduct.UUID + $EndpointSHA = $null + if (-not [string]::IsNullOrWhiteSpace($deviceUUID)) { + $EndpointSHA = [System.BitConverter]::ToString([System.Security.Cryptography.SHA256]::Create().ComputeHash([System.Text.Encoding]::UTF8.GetBytes($deviceUUID))).Replace("-", "") + } + + $global:OSDCoreLicense = [pscustomobject]@{ + EndpointSHA = [System.String]$EndpointSHA + IsRegistered = -not [string]::IsNullOrWhiteSpace([string]$license.Email) + License = $license + } + + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Ready: OSDCoreLicense (IsRegistered: $($global:OSDCoreLicense.IsRegistered))" +} diff --git a/OSDCloud/private/core-license/Show-OSDCoreLicenseHelp.ps1 b/OSDCloud/private/core-license/Show-OSDCoreLicenseHelp.ps1 new file mode 100644 index 0000000..30e065c --- /dev/null +++ b/OSDCloud/private/core-license/Show-OSDCoreLicenseHelp.ps1 @@ -0,0 +1,70 @@ +function Show-OSDCoreLicenseHelp { + <# + .SYNOPSIS + Displays instructions for setting the Recast Core license for OSDCloud. + + .DESCRIPTION + Provides a concise, step-by-step guide to download, install, and verify the + Right Click Tools Community Edition license used by OSDeploy and OSDCloud. + + .PARAMETER LicensePath + The directory path where .license2 files should be stored when not using + a full Right Click Tools Community Edition installation. + + .EXAMPLE + Show-OSDCoreLicenseHelp + Displays setup steps for ProgramData\Recast Software\Licenses. + + .EXAMPLE + Show-OSDCoreLicenseHelp -LicensePath 'D:\Licenses' + Displays setup steps and checks a custom license directory. + + .LINK + https://www.osdeploy.com/osdeploy-pc/community-registration + + .LINK + https://portal.recastsoftware.com/ + + .NOTES + Author: David Segura - Recast Software + 2026-07-22 - Initial help block created + 2026-07-22 - Added OSDCloud Recast Core license setup guidance + 2026-08-26 - Updated Community License installation and verification guidance + #> + [CmdletBinding()] + param ( + [Parameter()] + [string]$LicensePath = (Join-Path -Path $env:ProgramData -ChildPath 'Recast Software\Licenses') + ) + + Write-Host -ForegroundColor DarkYellow "No usable .license2 license was found in $LicensePath" + Write-Host '' + Write-Host -ForegroundColor DarkCyan 'Recast Community License for OSD | OSDCloud | OSDeploy' + Write-Host -ForegroundColor DarkGray 'Registration is optional, but some features require a valid Community License.' + Write-Host -ForegroundColor DarkGray 'Follow these steps to download, install, and verify the license.' + Write-Host '' + + Write-Host -ForegroundColor DarkYellow '1. Open the Recast Software Community Portal and create an account or sign in:' + Write-Host ' https://portal.recastsoftware.com/' + Write-Host '' + + Write-Host -ForegroundColor DarkYellow '2. Download the license ZIP for Right Click Tools Community Edition.' + Write-Host ' Extract the ZIP and locate the file with the .license2 extension.' + Write-Host '' + + Write-Host -ForegroundColor DarkYellow '3. Open PowerShell 7 as an administrator and copy the license file to:' + Write-Host " $LicensePath" + Write-Host ' Keep the .license2 extension unchanged.' + Write-Host '' + Write-Host ' $LicenseFile = ''C:\Path\To\CommunityLicense.license2''' + Write-Host " New-Item -Path '$LicensePath' -ItemType Directory -Force | Out-Null" + Write-Host " Copy-Item -LiteralPath `$LicenseFile -Destination '$LicensePath' -Force" + Write-Host '' + + Write-Host -ForegroundColor DarkYellow '4. Verify that OSDeploy can discover the license file:' + Write-Host " Get-ChildItem -Path '$LicensePath' -Filter '*.license2' -File" + Write-Host '' + Write-Host -ForegroundColor DarkGray 'Detailed instructions:' + Write-Host ' https://www.osdeploy.com/osdeploy-pc/community-registration' + Write-Host '' +} diff --git a/OSDCloud/private/core-license/Test-OSDeployLicenseGate.ps1 b/OSDCloud/private/core-license/Test-OSDeployLicenseGate.ps1 new file mode 100644 index 0000000..a127ebd --- /dev/null +++ b/OSDCloud/private/core-license/Test-OSDeployLicenseGate.ps1 @@ -0,0 +1,56 @@ +function Test-OSDeployLicenseGate { + <# + .SYNOPSIS + Tests whether an Update-OSDeploy command should proceed under license gating. + + .DESCRIPTION + Returns $true when the caller should continue execution and $false when the + command should stop because no valid OSDeploy license is available. + + The gate bypasses license validation only when the immediate caller of the + Update-OSDeploy function is Invoke-OSDeployHydration. This supports the + hydration workflow exception. + + On license failure, the function invokes Show-OSDeployLicense so the user + receives registration and installation guidance, then returns $false. + + .PARAMETER CommandName + Name of the command currently being gated. + + .EXAMPLE + if (-not (Test-OSDeployLicenseGate -CommandName $MyInvocation.MyCommand.Name)) { + return + } + + .OUTPUTS + System.Boolean. Returns $true when command execution may continue; otherwise + returns $false. + + .NOTES + Author: David Segura + Company: Recast Software + Version: 1.0.0 + Date: 2026-09-01 + #> + [OutputType([bool])] + param ( + [Parameter(Mandatory)] + [string]$CommandName + ) + + $callStack = Get-PSCallStack + $immediateCaller = $callStack | Select-Object -Skip 2 -First 1 + if ($immediateCaller -and $immediateCaller.Command -eq 'Invoke-OSDeployHydration') { + Write-Verbose "[$(Get-Date -Format s)] [$CommandName] License gate bypassed: immediate caller is Invoke-OSDeployHydration." + return $true + } + + $license = Get-OSDCoreLicense + if ($license -and $license.IsValid) { + return $true + } + + Write-Warning "[$(Get-Date -Format s)] [$CommandName] A valid Recast Software Community License is required for this command." + Show-OSDeployLicense | Out-Null + return $false +} diff --git a/OSDCloud/private/core-operatingsystem/Get-OSDCloudCoreOperatingSystems.ps1 b/OSDCloud/private/core-operatingsystem/Get-OSDCloudCoreOperatingSystems.ps1 index 1524b05..be3dafd 100644 --- a/OSDCloud/private/core-operatingsystem/Get-OSDCloudCoreOperatingSystems.ps1 +++ b/OSDCloud/private/core-operatingsystem/Get-OSDCloudCoreOperatingSystems.ps1 @@ -4,7 +4,7 @@ function Get-OSDCloudCoreOperatingSystems { Gets parsed operating system records for OSDCloud selection workflows. .DESCRIPTION - Converts raw module catalog records from Get-ModuleCoreOperatingSystems into + Converts raw module catalog records from Initialize-ModuleCoreOperatingSystems into normalized OSDCloud operating system objects. The function maps build numbers to known Windows releases, derives build versions, normalizes architecture, identifies activation channel, and emits sorted records with media metadata @@ -48,104 +48,111 @@ function Get-OSDCloudCoreOperatingSystems { $records = @() $mctRecords = @() - $mctRecords = Get-ModuleCoreOperatingSystems + Initialize-ModuleCoreOperatingSystems + if (-not ($global:ModuleCoreOperatingSystems)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to load Module Core Operating Systems." + } + $mctRecords = $global:ModuleCoreOperatingSystems if (-not $mctRecords) { return $records } foreach ($node in ($mctRecords | Sort-Object FileName, LanguageCode, Architecture)) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Processing $($node.FileName)" + # Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Processing $($node.FileName)" if ([string]::IsNullOrWhiteSpace($node.FileName) -or $node.FileName.Length -lt 5) { continue } - #================================================= - # OSBuild - # Get the OSBuild from the FileName - $OSBuild = $node.FileName.Substring(0, 5) - #================================================= - # OperatingSystem / OSName / OSVersion - # 19045 = Windows 10 22H2 - # 22000 = Windows 11 21H2 - # 22621 = Windows 11 22H2 - # 22631 = Windows 11 23H2 - # 26100 = Windows 11 24H2 - # 26200 = Windows 11 25H2 - # 28000 = Windows 11 26H1 - switch ($OSBuild) { - '19045' { $OperatingSystem = 'Windows 10 22H2'; $OSName = 'Windows 10'; $OSVersion = '22H2' } - '22000' { $OperatingSystem = 'Windows 11 21H2'; $OSName = 'Windows 11'; $OSVersion = '21H2' } - '22621' { $OperatingSystem = 'Windows 11 22H2'; $OSName = 'Windows 11'; $OSVersion = '22H2' } - '22631' { $OperatingSystem = 'Windows 11 23H2'; $OSName = 'Windows 11'; $OSVersion = '23H2' } - '26100' { $OperatingSystem = 'Windows 11 24H2'; $OSName = 'Windows 11'; $OSVersion = '24H2' } - '26200' { $OperatingSystem = 'Windows 11 25H2'; $OSName = 'Windows 11'; $OSVersion = '25H2' } - '28000' { $OperatingSystem = 'Windows 11 26H1'; $OSName = 'Windows 11'; $OSVersion = '26H1' } - default { continue } - } - #================================================= - # OSBuildVersion - # Combination of . - # Extract from FileName - #================================================= - $fileNameParts = $node.FileName -split '\.' - if ($fileNameParts.Count -lt 2) { - continue - } - $OSBuildVersion = "$($fileNameParts[0]).$($fileNameParts[1])" - #================================================= - # OSArchitecture - # Avoids confusion between x64 releases (amd64/arm64) - #================================================= - if ($node.Architecture -match 'x64') { - $OSArchitecture = 'amd64' - } elseif ($node.Architecture -match 'arm64') { - $OSArchitecture = 'arm64' - } else { - $OSArchitecture = 'x86' - continue - } - #================================================= - # OSActivation - #================================================= - if ($node.FileName -match 'clientconsumer_ret') { - $OSActivation = 'Retail' - } - elseif ($node.FileName -match 'CLIENTBUSINESS_VOL') { - $OSActivation = 'Volume' - } - else { - $OSActivation = 'Unknown' - continue - } - #================================================= - # Id - #================================================= - $Id = "$OperatingSystem $OSArchitecture $OSActivation $($node.LanguageCode) $OSBuildVersion" - #================================================= - # ObjectProperties - #================================================= - $records += [pscustomobject]@{ - Id = $Id - OperatingSystem = $OperatingSystem - OSName = $OSName - OSVersion = $OSVersion - OSArchitecture = $OSArchitecture - OSActivation = $OSActivation - OSLanguageCode = $node.LanguageCode - OSLanguage = $node.Language - OSBuild = $OSBuild - OSBuildVersion = $OSBuildVersion - # Architecture = $node.Architecture - Size = $node.Size - Sha1 = $node.Sha1 - Sha256 = $node.Sha256 - FileName = $node.FileName - FilePath = $node.FilePath - # IsRetailOnly = $node.IsRetailOnly - } + #================================================= + # OSBuild + # Get the OSBuild from the FileName + $OSBuild = $node.FileName.Substring(0, 5) + #================================================= + # OperatingSystem / OSName / OSVersion + # 19045 = Windows 10 22H2 + # 22000 = Windows 11 21H2 + # 22621 = Windows 11 22H2 + # 22631 = Windows 11 23H2 + # 26100 = Windows 11 24H2 + # 26200 = Windows 11 25H2 + # 28000 = Windows 11 26H1 + switch ($OSBuild) { + '19045' { $OperatingSystem = 'Windows 10 22H2'; $OSName = 'Windows 10'; $OSVersion = '22H2' } + '22000' { $OperatingSystem = 'Windows 11 21H2'; $OSName = 'Windows 11'; $OSVersion = '21H2' } + '22621' { $OperatingSystem = 'Windows 11 22H2'; $OSName = 'Windows 11'; $OSVersion = '22H2' } + '22631' { $OperatingSystem = 'Windows 11 23H2'; $OSName = 'Windows 11'; $OSVersion = '23H2' } + '26100' { $OperatingSystem = 'Windows 11 24H2'; $OSName = 'Windows 11'; $OSVersion = '24H2' } + '26200' { $OperatingSystem = 'Windows 11 25H2'; $OSName = 'Windows 11'; $OSVersion = '25H2' } + '28000' { $OperatingSystem = 'Windows 11 26H1'; $OSName = 'Windows 11'; $OSVersion = '26H1' } + default { continue } + } + #================================================= + # OSBuildVersion + # Combination of . + # Extract from FileName + #================================================= + $fileNameParts = $node.FileName -split '\.' + if ($fileNameParts.Count -lt 2) { + continue + } + $OSBuildVersion = "$($fileNameParts[0]).$($fileNameParts[1])" + #================================================= + # OSArchitecture + # Avoids confusion between x64 releases (amd64/arm64) + #================================================= + if ($node.Architecture -match 'x64') { + $OSArchitecture = 'amd64' + } + elseif ($node.Architecture -match 'arm64') { + $OSArchitecture = 'arm64' + } + else { + $OSArchitecture = 'x86' + continue + } + #================================================= + # OSActivation + #================================================= + if ($node.FileName -match 'clientconsumer_ret') { + $OSActivation = 'Retail' + } + elseif ($node.FileName -match 'CLIENTBUSINESS_VOL') { + $OSActivation = 'Volume' + } + else { + $OSActivation = 'Unknown' + continue + } + #================================================= + # Id + #================================================= + $Id = "$OperatingSystem $OSArchitecture $OSActivation $($node.LanguageCode) $OSBuildVersion" + #================================================= + # ObjectProperties + #================================================= + $records += [pscustomobject]@{ + Id = $Id + OperatingSystem = $OperatingSystem + OSName = $OSName + OSVersion = $OSVersion + OSArchitecture = $OSArchitecture + OSActivation = $OSActivation + OSLanguageCode = $node.LanguageCode + OSLanguage = $node.Language + OSBuild = $OSBuild + OSBuildVersion = $OSBuildVersion + # Architecture = $node.Architecture + Size = $node.Size + Sha1 = $node.Sha1 + Sha256 = $node.Sha256 + FileName = $node.FileName + FilePath = $node.FilePath + # IsRetailOnly = $node.IsRetailOnly + } } $records = $records | Sort-Object -Property FileName -Unique $records = $records | Sort-Object -Property @{Expression = { $_.OperatingSystem }; Descending = $true }, OSArchitecture, OSActivation, OSLanguageCode + $records | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'OSDCloudCoreOperatingSystems.xml') -Force return $records } diff --git a/OSDCloud/private/core-operatingsystem/Get-OSDCoreOperatingSystemCacheObject.ps1 b/OSDCloud/private/core-operatingsystem/Get-OSDCoreOperatingSystemCacheObject.ps1 new file mode 100644 index 0000000..9e010b0 --- /dev/null +++ b/OSDCloud/private/core-operatingsystem/Get-OSDCoreOperatingSystemCacheObject.ps1 @@ -0,0 +1,64 @@ +function Get-OSDCoreOperatingSystemCacheObject { + <# + .SYNOPSIS + Gets the cached operating system content object for the selected OSDCore operating system. + + .DESCRIPTION + Searches OSDCore cache content for the first ESD or WIM entry that matches the + selected operating system object's FileName. Returns the matching cache content object when + found, or $null when the operating system object, cache content, or matching cache item is missing. + + .PARAMETER OperatingSystemCloudObject + Operating system object containing the FileName property to match. Defaults to $global:OSDCoreOperatingSystemCloudObject. + + .PARAMETER CacheContent + Cache content inventory to search. Defaults to $global:OSDCoreCache. + + .EXAMPLE + Get-OSDCoreOperatingSystemCacheObject + Returns the USB cache content object for $global:OSDCoreOperatingSystemCloudObject when it exists. + + .EXAMPLE + if (Get-OSDCoreOperatingSystemCacheObject) { 'Operating system cache content exists.' } + Tests whether the selected operating system payload exists in the USB cache inventory. + + .LINK + https://github.com/OSDeploy/OSD/tree/master/docs + + .NOTES + Author: David Segura - Recast Software + 2026-07-19 - Initial private helper created + #> + [CmdletBinding()] + [OutputType([System.Management.Automation.PSObject])] + param + ( + [Parameter(ValueFromPipeline)] + [psobject] + $OperatingSystemCloudObject = $global:OSDCoreOperatingSystemCloudObject, + + [Parameter()] + [psobject[]] + $CacheContent = $global:OSDCoreCache + ) + + process { + if ($null -eq $OperatingSystemCloudObject) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject is not set." + return $null + } + + $OperatingSystemFileName = [string]$OperatingSystemCloudObject.FileName + if ([string]::IsNullOrWhiteSpace($OperatingSystemFileName)) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject FileName is not set." + return $null + } + + if (-not $CacheContent) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreCache is not set." + return $null + } + + $CacheContent | Where-Object { $_.Type -in @('ESD', 'WIM') -and $_.Name -eq $OperatingSystemFileName } | Select-Object -First 1 + } +} diff --git a/OSDCloud/private/core-operatingsystem/Get-OSDCoreOperatingSystems.ps1 b/OSDCloud/private/core-operatingsystem/Get-OSDCoreOperatingSystems.ps1 index e81e8e8..abb7f1c 100644 --- a/OSDCloud/private/core-operatingsystem/Get-OSDCoreOperatingSystems.ps1 +++ b/OSDCloud/private/core-operatingsystem/Get-OSDCoreOperatingSystems.ps1 @@ -4,7 +4,7 @@ function Get-OSDCoreOperatingSystems { Gets parsed OSD core operating system catalog entries. .DESCRIPTION - Imports normalized raw catalog records from Get-ModuleCoreOperatingSystems and + Imports normalized raw catalog records from Initialize-ModuleCoreOperatingSystems and transforms them into OSD core operating system objects used by selection and deployment workflows. The function derives build identity, Windows family and release, normalized architecture, activation channel, and compatibility flags, @@ -49,100 +49,106 @@ function Get-OSDCoreOperatingSystems { $records = @() $mctRecords = @() - $mctRecords = Get-ModuleCoreOperatingSystems + Initialize-ModuleCoreOperatingSystems + if (-not ($global:ModuleCoreOperatingSystems)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to load Module Core Operating Systems." + } + $mctRecords = $global:ModuleCoreOperatingSystems if (-not $mctRecords) { return $records } foreach ($node in ($mctRecords | Sort-Object FileName, LanguageCode, Architecture)) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Processing $($node.FileName)" + # Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Processing $($node.FileName)" if ([string]::IsNullOrWhiteSpace($node.FileName) -or $node.FileName.Length -lt 5) { continue } - #================================================= - # OSBuild - # Get the OSBuild from the FileName - $OSBuild = $node.FileName.Substring(0, 5) - #================================================= - # OperatingSystem / OSName / OSVersion - # 19045 = Windows 10 22H2 - # 22000 = Windows 11 21H2 - # 22621 = Windows 11 22H2 - # 22631 = Windows 11 23H2 - # 26100 = Windows 11 24H2 - # 26200 = Windows 11 25H2 - # 28000 = Windows 11 26H1 - switch ($OSBuild) { - '19045' { $OSName = 'Windows 10'; $OSVersion = '22H2' } - '22000' { $OSName = 'Windows 11'; $OSVersion = '21H2' } - '22621' { $OSName = 'Windows 11'; $OSVersion = '22H2' } - '22631' { $OSName = 'Windows 11'; $OSVersion = '23H2' } - '26100' { $OSName = 'Windows 11'; $OSVersion = '24H2' } - '26200' { $OSName = 'Windows 11'; $OSVersion = '25H2' } - '28000' { $OSName = 'Windows 11'; $OSVersion = '26H1' } - default { continue } - } - #================================================= - # OSBuildVersion - # Combination of . - # Extract from FileName - #================================================= - $fileNameParts = $node.FileName -split '\.' - if ($fileNameParts.Count -lt 2) { - continue - } - $OSBuildVersion = "$($fileNameParts[0]).$($fileNameParts[1])" - #================================================= - # OSArchitecture - # Avoids confusion between x64 releases (amd64/arm64) - #================================================= - if ($node.Architecture -match 'x64') { - $OSArchitecture = 'amd64' - } elseif ($node.Architecture -match 'arm64') { - $OSArchitecture = 'arm64' - } else { - $OSArchitecture = 'x86' - continue - } - #================================================= - # OSActivation - #================================================= - if ($node.FileName -match 'clientconsumer_ret') { - $OSActivation = 'Retail' - } - elseif ($node.FileName -match 'CLIENTBUSINESS_VOL') { - $OSActivation = 'Volume' - } - else { - $OSActivation = 'Unknown' - continue - } - #================================================= - # Win10 / Win11 - #================================================= - if ($OSName -eq 'Windows 10') { - $Win10 = $true - $Win11 = $false - } - elseif ($OSName -eq 'Windows 11') { - $Win10 = $false - $Win11 = $true - } - else { - $Win10 = $false - $Win11 = $false - } - #================================================= - # OSD Module Properties - #================================================= - # DisplayName should be in the format "Win11-25H2-amd64" - $DisplayName = "$OSName $OSVersion $OSArchitecture $($node.LanguageCode) $OSActivation $OSBuildVersion" - #================================================= - # ObjectProperties - #================================================= - <# + #================================================= + # OSBuild + # Get the OSBuild from the FileName + $OSBuild = $node.FileName.Substring(0, 5) + #================================================= + # OperatingSystem / OSName / OSVersion + # 19045 = Windows 10 22H2 + # 22000 = Windows 11 21H2 + # 22621 = Windows 11 22H2 + # 22631 = Windows 11 23H2 + # 26100 = Windows 11 24H2 + # 26200 = Windows 11 25H2 + # 28000 = Windows 11 26H1 + switch ($OSBuild) { + '19045' { $OSName = 'Windows 10'; $OSVersion = '22H2' } + '22000' { $OSName = 'Windows 11'; $OSVersion = '21H2' } + '22621' { $OSName = 'Windows 11'; $OSVersion = '22H2' } + '22631' { $OSName = 'Windows 11'; $OSVersion = '23H2' } + '26100' { $OSName = 'Windows 11'; $OSVersion = '24H2' } + '26200' { $OSName = 'Windows 11'; $OSVersion = '25H2' } + '28000' { $OSName = 'Windows 11'; $OSVersion = '26H1' } + default { continue } + } + #================================================= + # OSBuildVersion + # Combination of . + # Extract from FileName + #================================================= + $fileNameParts = $node.FileName -split '\.' + if ($fileNameParts.Count -lt 2) { + continue + } + $OSBuildVersion = "$($fileNameParts[0]).$($fileNameParts[1])" + #================================================= + # OSArchitecture + # Avoids confusion between x64 releases (amd64/arm64) + #================================================= + if ($node.Architecture -match 'x64') { + $OSArchitecture = 'amd64' + } + elseif ($node.Architecture -match 'arm64') { + $OSArchitecture = 'arm64' + } + else { + $OSArchitecture = 'x86' + continue + } + #================================================= + # OSActivation + #================================================= + if ($node.FileName -match 'clientconsumer_ret') { + $OSActivation = 'Retail' + } + elseif ($node.FileName -match 'CLIENTBUSINESS_VOL') { + $OSActivation = 'Volume' + } + else { + $OSActivation = 'Unknown' + continue + } + #================================================= + # Win10 / Win11 + #================================================= + if ($OSName -eq 'Windows 10') { + $Win10 = $true + $Win11 = $false + } + elseif ($OSName -eq 'Windows 11') { + $Win10 = $false + $Win11 = $true + } + else { + $Win10 = $false + $Win11 = $false + } + #================================================= + # OSD Module Properties + #================================================= + # DisplayName should be in the format "Win11-25H2-amd64" + $DisplayName = "$OSName $OSVersion $OSArchitecture $($node.LanguageCode) $OSActivation $OSBuildVersion" + #================================================= + # ObjectProperties + #================================================= + <# Status : ReleaseDate : 2023-12-04 Name : Windows 10 22H2 x64 ar-sa Retail 19045.3803 @@ -163,28 +169,29 @@ function Get-OSDCoreOperatingSystems { #> $records += [pscustomobject]@{ - Status = $null - ReleaseDate = $null - Name = $DisplayName - Version = $OSName - ReleaseID = $OSVersion - Architecture = $OSArchitecture - Language = $node.LanguageCode - Activation = $OSActivation - Build = $OSBuildVersion - FileName = $node.FileName - ImageIndex = $node.ImageIndex - ImageName = $node.ImageName - Url = $node.FilePath - SHA1 = $node.Sha1 - SHA256 = $node.Sha256 - UpdateID = $node.UpdateID - Win10 = $Win10 - Win11 = $Win11 + Status = $null + ReleaseDate = $null + Name = $DisplayName + Version = $OSName + ReleaseID = $OSVersion + Architecture = $OSArchitecture + Language = $node.LanguageCode + Activation = $OSActivation + Build = $OSBuildVersion + FileName = $node.FileName + ImageIndex = $node.ImageIndex + ImageName = $node.ImageName + Url = $node.FilePath + SHA1 = $node.Sha1 + SHA256 = $node.Sha256 + UpdateID = $node.UpdateID + Win10 = $Win10 + Win11 = $Win11 } } $records = $records | Sort-Object -Property Url -Unique $records = $records | Sort-Object -Property Name + $records | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'OSDCoreOperatingSystems.xml') -Force return $records } diff --git a/OSDCloud/private/core-operatingsystem/Get-ModuleCoreOperatingSystems.ps1 b/OSDCloud/private/core-operatingsystem/Initialize-ModuleCoreOperatingSystems.ps1 similarity index 73% rename from OSDCloud/private/core-operatingsystem/Get-ModuleCoreOperatingSystems.ps1 rename to OSDCloud/private/core-operatingsystem/Initialize-ModuleCoreOperatingSystems.ps1 index d6acf73..2ba0219 100644 --- a/OSDCloud/private/core-operatingsystem/Get-ModuleCoreOperatingSystems.ps1 +++ b/OSDCloud/private/core-operatingsystem/Initialize-ModuleCoreOperatingSystems.ps1 @@ -1,4 +1,4 @@ -function Get-ModuleCoreOperatingSystems { +function Initialize-ModuleCoreOperatingSystems { <# .SYNOPSIS Gets normalized module core operating system catalog records. @@ -11,12 +11,12 @@ function Get-ModuleCoreOperatingSystems { by hash availability. .EXAMPLE - Get-ModuleCoreOperatingSystems + Initialize-ModuleCoreOperatingSystems Returns all normalized catalog records discovered in the module core operating systems cache. .EXAMPLE - Get-ModuleCoreOperatingSystems | Where-Object { $_.LanguageCode -eq 'en-us' } + Initialize-ModuleCoreOperatingSystems | Where-Object { $_.LanguageCode -eq 'en-us' } Returns only catalog records for en-us language media. @@ -39,7 +39,9 @@ function Get-ModuleCoreOperatingSystems { [CmdletBinding()] [OutputType([pscustomobject[]])] param () - + #================================================= + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($MyInvocation.MyCommand.Name)]" + #================================================= $ErrorActionPreference = 'Stop' $records = @() $mctRecords = @() @@ -105,17 +107,22 @@ function Get-ModuleCoreOperatingSystems { } $mctRecords = $mctRecords | - Group-Object -Property FilePath, FileName, LanguageCode, Architecture | - ForEach-Object { - $_.Group | - Sort-Object -Property @{ Expression = { [string]::IsNullOrWhiteSpace($_.Sha256) }; Ascending = $true }, @{ Expression = { [string]::IsNullOrWhiteSpace($_.Sha1) }; Ascending = $true } | - Select-Object -First 1 - } | - Sort-Object -Property FilePath, FileName, LanguageCode, Architecture + Group-Object -Property FilePath, FileName, LanguageCode, Architecture | + ForEach-Object { + $_.Group | + Sort-Object -Property @{ Expression = { [string]::IsNullOrWhiteSpace($_.Sha256) }; Ascending = $true }, @{ Expression = { [string]::IsNullOrWhiteSpace($_.Sha1) }; Ascending = $true } | + Select-Object -First 1 + } | + Sort-Object -Property FilePath, FileName, LanguageCode, Architecture if (-not $mctRecords) { - return $records + $global:ModuleCoreOperatingSystems = $records + # return $records } - - return $mctRecords + else { + # return $mctRecords + $global:ModuleCoreOperatingSystems = $mctRecords + } + $global:ModuleCoreOperatingSystems | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'ModuleCoreOperatingSystems.xml') -Force + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ready: ModuleCoreOperatingSystems" } diff --git a/OSDCloud/private/core-operatingsystem/Set-OSDCoreOperatingSystemCloudObject.ps1 b/OSDCloud/private/core-operatingsystem/Set-OSDCoreOperatingSystemCloudObject.ps1 index 100f6c4..d1ed00a 100644 --- a/OSDCloud/private/core-operatingsystem/Set-OSDCoreOperatingSystemCloudObject.ps1 +++ b/OSDCloud/private/core-operatingsystem/Set-OSDCoreOperatingSystemCloudObject.ps1 @@ -25,8 +25,8 @@ function Set-OSDCoreOperatingSystemCloudObject { Operating system family/version label used for catalog selection. .PARAMETER RefreshCatalog - Reloads $global:OSDCoreOperatingSystems from Get-OSDCoreOperatingSystems - before filtering. + Reloads $global:OSDCoreOperatingSystems from the current module's operating + system catalog provider before filtering. .EXAMPLE Set-OSDCoreOperatingSystemCloudObject -OSArchitecture amd64 -OSReleaseID 25H2 -OSLanguageCode en-us @@ -60,12 +60,12 @@ function Set-OSDCoreOperatingSystemCloudObject { param ( [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] - [ValidateSet('Retail','Volume')] + [ValidateSet('Retail', 'Volume')] [string]$OSActivation = 'Retail', [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] - [ValidateSet('amd64','arm64')] + [ValidateSet('amd64', 'arm64', 'x64')] [string]$OSArchitecture = $env:PROCESSOR_ARCHITECTURE, [Parameter(Mandatory = $false)] @@ -83,39 +83,143 @@ function Set-OSDCoreOperatingSystemCloudObject { [Parameter(Mandatory = $false)] [switch]$RefreshCatalog ) + <# OSD PowerShell Module + PS C:\Users\david> $OSDCoreOperatingSystemCloudObject + + Status : + ReleaseDate : + Name : Windows 11 25H2 amd64 en-us Retail 26200.8873 + Version : Windows 11 + ReleaseID : 25H2 + Architecture : amd64 + Language : en-us + Activation : Retail + Build : 26200.8873 + FileName : 26200.8873.260710-2020.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + ImageIndex : + ImageName : + Url : http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0f68e999-6e25-4ae7-92db-23cbb3a723a9/26200.8873.260710-2020.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + SHA1 : + SHA256 : e4c251a99eeade29aa5d462047bcb257d640cd2c98dfb7a2305f45876d1790c1 + UpdateID : + Win10 : False + Win11 : True + #> + <# OSDCloud PowerShell Module + PS C:\Users\david> $OSDCoreOperatingSystemCloudObject + + Id : Windows 11 25H2 amd64 Retail en-us 26200.8873 + OperatingSystem : Windows 11 25H2 + OSName : Windows 11 + OSVersion : 25H2 + OSArchitecture : amd64 + OSActivation : Retail + OSLanguageCode : en-us + OSLanguage : English (United States) + OSBuild : 26200 + OSBuildVersion : 26200.8873 + Size : 6050059595 + Sha1 : + Sha256 : e4c251a99eeade29aa5d462047bcb257d640cd2c98dfb7a2305f45876d1790c1 + FileName : 26200.8873.260710-2020.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + FilePath : http://dl.delivery.mp.microsoft.com/filestreamingservice/files/0f68e999-6e25-4ae7-92db-23cbb3a723a9/26200.8873.260710-2020.25h2_ge_release_svc_refresh_CLIENTCONSUMER_RET_x64FRE_en-us.esd + #> - $normalizedArchitecture = $OSArchitecture.ToLowerInvariant() + $Error.Clear() + $ModuleName = $($MyInvocation.MyCommand.Module.Name) + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Starting operating system cloud object selection" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Input filters: Activation='$OSActivation', Architecture='$OSArchitecture', Language='$OSLanguageCode', ReleaseID='$OSReleaseID', Version='$OSVersion', RefreshCatalog='$($RefreshCatalog.IsPresent)'" + + $normalizedArchitecture = switch ($OSArchitecture.ToLowerInvariant()) { + 'amd64' { 'amd64' } + 'x64' { 'amd64' } + 'arm64' { 'arm64' } + } $normalizedLanguageCode = $OSLanguageCode.ToLowerInvariant() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Normalized filters: Architecture='$normalizedArchitecture', Language='$normalizedLanguageCode'" - if ($RefreshCatalog -or -not $global:OSDCoreOperatingSystems) { - $global:OSDCoreOperatingSystems = Get-OSDCoreOperatingSystems | Where-Object { $_.Architecture -match $OSArchitecture } + $catalogProvider = $null + $catalogShape = $null + if ($ModuleName -eq 'OSD') { + $catalogProvider = 'Get-OSDCoreOperatingSystems' + $catalogShape = 'OSD' + } + elseif ($ModuleName -eq 'OSDCloud') { + $catalogProvider = 'Get-OSDCloudCoreOperatingSystems' + $catalogShape = 'OSDCloud' + } + elseif (Get-Command -Name 'Get-OSDCloudCoreOperatingSystems' -ErrorAction Ignore) { + $catalogProvider = 'Get-OSDCloudCoreOperatingSystems' + $catalogShape = 'OSDCloud' + } + elseif (Get-Command -Name 'Get-OSDCoreOperatingSystems' -ErrorAction Ignore) { + $catalogProvider = 'Get-OSDCoreOperatingSystems' + $catalogShape = 'OSD' + } + else { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to load core operating systems provider command." + } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using operating systems provider '$catalogProvider' for '$catalogShape' object shape" + + $existingCatalogShape = $null + if ($global:OSDCoreOperatingSystems) { + $firstCachedOperatingSystem = @($global:OSDCoreOperatingSystems | Select-Object -First 1)[0] + if ($firstCachedOperatingSystem.PSObject.Properties.Name -contains 'OSArchitecture') { + $existingCatalogShape = 'OSDCloud' + } + elseif ($firstCachedOperatingSystem.PSObject.Properties.Name -contains 'Architecture') { + $existingCatalogShape = 'OSD' + } + } + $refreshOperatingSystems = $RefreshCatalog -or -not $global:OSDCoreOperatingSystems -or (($existingCatalogShape) -and ($existingCatalogShape -ne $catalogShape)) + + if ($refreshOperatingSystems) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Refreshing cached operating systems from $catalogProvider" + $global:OSDCoreOperatingSystems = & $catalogProvider | + Where-Object { ($_.Architecture -eq $normalizedArchitecture) -or ($_.OSArchitecture -eq $normalizedArchitecture) } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Cached operating systems after architecture prefilter: $(@($global:OSDCoreOperatingSystems).Count)" + } + else { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using existing cached operating systems: $(@($global:OSDCoreOperatingSystems).Count)" } if (-not $global:OSDCoreOperatingSystems) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No operating systems are available after loading cache" throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to load Operating Systems" } - $matches = $global:OSDCoreOperatingSystems | - Where-Object { $_.Activation -eq $OSActivation } | - Where-Object { $_.Architecture -match $normalizedArchitecture } | - Where-Object { $_.Language.ToLowerInvariant() -eq $normalizedLanguageCode } | - Where-Object { $_.ReleaseID -eq $OSReleaseID } | - Where-Object { $_.Version -eq $OSVersion } - - $global:OSDCoreOperatingSystemCloudObject = $matches | - Sort-Object -Property @{ Expression = { - try { - [version]($_.Build -replace '[^0-9\.]', '') - } - catch { - [version]'0.0' - } - }; Descending = $true } | - Select-Object -First 1 + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Applying catalog filters to cached operating systems" + $filteredOperatingSystems = $global:OSDCoreOperatingSystems | + Where-Object { ($_.Activation -eq $OSActivation) -or ($_.OSActivation -eq $OSActivation) } | + Where-Object { ($_.Architecture -eq $normalizedArchitecture) -or ($_.OSArchitecture -eq $normalizedArchitecture) } | + Where-Object { ($_.Language -eq $normalizedLanguageCode) -or ($_.OSLanguageCode -eq $normalizedLanguageCode) } | + Where-Object { ($_.ReleaseID -eq $OSReleaseID) -or ($_.OSVersion -eq $OSReleaseID) } | + Where-Object { ($_.Version -eq $OSVersion) -or ($_.OSName -eq $OSVersion) } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Matching operating systems found: $(@($filteredOperatingSystems).Count)" + + $global:OSDCoreOperatingSystemCloudObject = $filteredOperatingSystems | + Sort-Object -Property @{ Expression = { + try { + $buildVersion = if ($_.Build) { $_.Build } else { $_.OSBuildVersion } + [version]([string]$buildVersion -replace '[^0-9\.]', '') + } + catch { + [version]'0.0' + } + }; Descending = $true + } | + Select-Object -First 1 if (-not $global:OSDCoreOperatingSystemCloudObject) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No matching operating system object was selected after sorting" throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to find a matching operating system object for OSReleaseID '$OSReleaseID', OSArchitecture '$normalizedArchitecture', Activation '$OSActivation', Language '$normalizedLanguageCode', and OSVersion '$OSVersion'." } + $selectedOperatingSystemName = if ($global:OSDCoreOperatingSystemCloudObject.Id) { $global:OSDCoreOperatingSystemCloudObject.Id } else { $global:OSDCoreOperatingSystemCloudObject.Name } + $selectedOperatingSystemBuild = if ($global:OSDCoreOperatingSystemCloudObject.OSBuildVersion) { $global:OSDCoreOperatingSystemCloudObject.OSBuildVersion } else { $global:OSDCoreOperatingSystemCloudObject.Build } + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Selected operating system object: Name='$selectedOperatingSystemName', Build='$selectedOperatingSystemBuild', FileName='$($global:OSDCoreOperatingSystemCloudObject.FileName)'" + + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Operating system cloud object selection completed successfully" + $global:OSDCoreOperatingSystemCloudObject | Export-Clixml -Path (Join-Path -Path $env:TEMP -ChildPath 'OSDCoreOperatingSystemCloudObject.xml') -Force return $global:OSDCoreOperatingSystemCloudObject } diff --git a/OSDCloud/private/core-operatingsystem/Test-OperatingSystemCloudObject.ps1 b/OSDCloud/private/core-operatingsystem/Test-OperatingSystemCloudObject.ps1 new file mode 100644 index 0000000..2044f9c --- /dev/null +++ b/OSDCloud/private/core-operatingsystem/Test-OperatingSystemCloudObject.ps1 @@ -0,0 +1,191 @@ +function Test-OperatingSystemCloudObject { + <# + .SYNOPSIS + Tests whether an OSDCore operating system object is available online and ready to downloaded. + + .DESCRIPTION + Reads the operating system download URL from the supplied object, or from + $global:OSDCoreOperatingSystemCloudObject when no object is supplied, and returns + $true when a live TCP connection and HTTP HEAD request can reach it. The function + supports both module-native shapes: OSDCloud objects use FilePath and OSD objects + use Url. Returns $false when the object is missing, the resolved URL property is + empty, or the URL test fails. HTTP and HTTPS are both tested for host-only web + URLs so systems with an invalid date can still detect basic network reachability + over HTTP. Specific absolute file URLs are tested exactly as supplied. + + .PARAMETER OperatingSystemCloudObject + Operating system object containing the download URL to test. OSDCloud uses + FilePath and OSD uses Url. + + .EXAMPLE + Test-OperatingSystemCloudObject + Tests the resolved FilePath/Url property on + $global:OSDCoreOperatingSystemCloudObject. + + .EXAMPLE + Test-OperatingSystemCloudObject -OperatingSystemCloudObject $global:OSDCoreOperatingSystemCloudObject + Tests the resolved FilePath/Url property on the supplied operating system + object. + + .LINK + https://github.com/OSDeploy/OSD/tree/master/docs + + .NOTES + Author: David Segura - Recast Software + 2026-07-19 - Initial private helper created + 2026-07-19 - Removed Test-WebConnection dependency + 2026-07-19 - Preserved supplied scheme for specific file URLs + 2026-07-20 - Added live TCP validation before HTTP HEAD to avoid cached success responses + 2026-08-06 - Added OSDCloud FilePath fallback for cross-module compatibility + #> + [CmdletBinding()] + [OutputType([System.Boolean])] + param ( + [Parameter(ValueFromPipeline)] + [psobject] + $OperatingSystemCloudObject = $global:OSDCoreOperatingSystemCloudObject + ) + + process { + $Error.Clear() + + # The caller may pass an object explicitly or rely on the global OSDCore selection. + if ($null -eq $OperatingSystemCloudObject) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject is not set." + return $false + } + + # Resolve the module-native URL property: OSDCloud uses FilePath and OSD uses Url. + if (-not [string]::IsNullOrWhiteSpace([string]$OperatingSystemCloudObject.FilePath)) { + $OperatingSystemCloudObjectUrl = [string]$OperatingSystemCloudObject.FilePath + } + else { + $OperatingSystemCloudObjectUrl = [string]$OperatingSystemCloudObject.Url + } + + # A missing URL means there is nothing useful to test, so return the Boolean failure state. + if ([string]::IsNullOrWhiteSpace($OperatingSystemCloudObjectUrl)) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject FilePath/Url is not set." + return $false + } + + try { + # Build the exact set of URLs to probe before making any web requests. + $OperatingSystemCloudObjectUri = [System.Uri]$OperatingSystemCloudObjectUrl + $IsSpecificAbsoluteUrl = $OperatingSystemCloudObjectUri.IsAbsoluteUri -and -not [string]::IsNullOrWhiteSpace($OperatingSystemCloudObjectUri.AbsolutePath) -and $OperatingSystemCloudObjectUri.AbsolutePath -ne '/' + if ($OperatingSystemCloudObjectUri.IsAbsoluteUri -and ($OperatingSystemCloudObjectUri.Scheme -notin @('http','https') -or $IsSpecificAbsoluteUrl)) { + # Non-web absolute URIs and specific file URLs are tested as provided. + $RequestUris = @($OperatingSystemCloudObjectUri) + } + else { + if ($OperatingSystemCloudObjectUri.IsAbsoluteUri) { + # Host-only web URLs are checked over HTTPS first, then HTTP as a fallback for bad system time. + $UriBuilder = New-Object System.UriBuilder $OperatingSystemCloudObjectUri + $UriBuilder.Scheme = 'https' + $UriBuilder.Port = -1 + $HttpsUri = $UriBuilder.Uri + + $UriBuilder.Scheme = 'http' + $UriBuilder.Port = -1 + $HttpUri = $UriBuilder.Uri + } + else { + # Bare URLs are expanded to both HTTPS and HTTP targets. + $HttpsUri = [System.Uri]::new("https://$($OperatingSystemCloudObjectUri.OriginalString)") + $HttpUri = [System.Uri]::new("http://$($OperatingSystemCloudObjectUri.OriginalString)") + } + + $RequestUris = @($HttpsUri, $HttpUri) + } + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject Url is not valid: $OperatingSystemCloudObjectUrl" + return $false + } + + $InvokeWebRequestCommand = Get-Command Invoke-WebRequest + $Results = foreach ($RequestUri in $RequestUris) { + if ($RequestUri.Scheme -in @('http','https')) { + $RequestPort = $RequestUri.Port + if ($RequestUri.IsDefaultPort) { + if ($RequestUri.Scheme -eq 'https') { + $RequestPort = 443 + } + else { + $RequestPort = 80 + } + } + + $TcpClient = New-Object System.Net.Sockets.TcpClient + try { + $ConnectTask = $TcpClient.ConnectAsync($RequestUri.DnsSafeHost, $RequestPort) + if (-not $ConnectTask.Wait(15000) -or -not $TcpClient.Connected) { + throw 'TCP connection failed.' + } + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject TCP FAIL: $RequestUri" + [pscustomobject]@{ + Uri = $RequestUri + Success = $false + } + continue + } + finally { + $TcpClient.Close() + } + } + + # Use HEAD to validate reachability without downloading the operating system payload. + $Params = @{ + Method = 'Head' + Uri = $RequestUri + Headers = @{'Cache-Control'='no-cache, no-store'; 'Pragma'='no-cache'} + ErrorAction = 'Stop' + } + + # Keep the request compatible across Windows PowerShell and newer PowerShell versions. + if ($InvokeWebRequestCommand.Parameters.ContainsKey('UseBasicParsing')) { + $Params['UseBasicParsing'] = $true + } + if ($InvokeWebRequestCommand.Parameters.ContainsKey('TimeoutSec')) { + $Params['TimeoutSec'] = 15 + } + if ($InvokeWebRequestCommand.Parameters.ContainsKey('DisableKeepAlive')) { + $Params['DisableKeepAlive'] = $true + } + + $PreviousCachePolicy = [System.Net.WebRequest]::DefaultCachePolicy + try { + [System.Net.WebRequest]::DefaultCachePolicy = New-Object System.Net.Cache.RequestCachePolicy ([System.Net.Cache.RequestCacheLevel]::NoCacheNoStore) + Invoke-WebRequest @Params | Out-Null + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject URL OK: $RequestUri" + [pscustomobject]@{ + Uri = $RequestUri + Success = $true + } + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCoreOperatingSystemCloudObject URL FAIL: $RequestUri" + [pscustomobject]@{ + Uri = $RequestUri + Success = $false + } + } + finally { + [System.Net.WebRequest]::DefaultCachePolicy = $PreviousCachePolicy + } + } + + # If only HTTP succeeds, the network may be reachable but HTTPS can fail because the clock is wrong. + $HttpsResult = $Results | Where-Object {$_.Uri.Scheme -eq 'https'} | Select-Object -First 1 + $HttpResult = $Results | Where-Object {$_.Uri.Scheme -eq 'http'} | Select-Object -First 1 + + if ($HttpsResult -and $HttpResult -and -not $HttpsResult.Success -and $HttpResult.Success) { + Write-Warning "HTTPS connection failed for $($HttpsResult.Uri), but HTTP connection succeeded for $($HttpResult.Uri). Check the system date and time." + } + + # Return true when any attempted URL succeeds. + [bool]($Results | Where-Object {$_.Success} | Select-Object -First 1) + } +} diff --git a/OSDCloud/private/core/Convert-KeyboardLayoutToLanguageCode.ps1 b/OSDCloud/private/core/Convert-KeyboardLayoutToLanguageCode.ps1 new file mode 100644 index 0000000..c46d93a --- /dev/null +++ b/OSDCloud/private/core/Convert-KeyboardLayoutToLanguageCode.ps1 @@ -0,0 +1,140 @@ +function Convert-KeyboardLayoutToLanguageCode { + <# + .SYNOPSIS + Converts a Windows keyboard layout value to a language/culture code. + + .DESCRIPTION + Resolves the culture tag (for example, en-US or fr-FR) from a keyboard + layout hexadecimal string such as 00000409. If no keyboard layout is + provided, the function attempts to detect the current layout from + Win32_Keyboard. When conversion fails, a fallback language code is returned. + + .PARAMETER KeyboardLayout + Keyboard layout hexadecimal value (KLID), for example 00000409 or + 00010409. The function uses the trailing 4 hex characters as the LCID. + + .PARAMETER FallbackLanguageCode + Language code to return when keyboard layout detection or conversion fails. + Default is en-US. + + .PARAMETER LowerCase + Returns the language code in lowercase (for example en-us). + + .EXAMPLE + Convert-KeyboardLayoutToLanguageCode + Detects the active keyboard layout from Win32_Keyboard and returns the + resolved language code. + + .EXAMPLE + Convert-KeyboardLayoutToLanguageCode -KeyboardLayout '0000040C' + Returns fr-FR. + + .EXAMPLE + Convert-KeyboardLayoutToLanguageCode -KeyboardLayout '00000409' -LowerCase + Returns en-us. + + .LINK + https://github.com/OSDeploy/OSD/tree/master/docs + + .LINK + https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/windows-language-pack-default-values + + .NOTES + Author: David Segura - Recast Software + 2026-07-14 - Initial help block created + 2026-07-14 - Added keyboard layout to language code conversion with fallback behavior + #> + [CmdletBinding()] + param ( + [Parameter(Mandatory = $false, ValueFromPipeline = $true, ValueFromPipelineByPropertyName = $true)] + [Alias('Layout', 'KLID')] + [string] + $KeyboardLayout, + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [string] + $FallbackLanguageCode = 'en-US', + + [Parameter(Mandatory = $false)] + [switch] + $LowerCase + ) + + process { + $allowedLanguageCodes = @( + 'ar-sa', 'bg-bg', 'cs-cz', 'da-dk', 'de-de', 'el-gr', + 'en-gb', 'en-us', 'es-es', 'es-mx', 'et-ee', 'fi-fi', + 'fr-ca', 'fr-fr', 'he-il', 'hr-hr', 'hu-hu', 'it-it', + 'ja-jp', 'ko-kr', 'lt-lt', 'lv-lv', 'nb-no', 'nl-nl', + 'pl-pl', 'pt-br', 'pt-pt', 'ro-ro', 'ru-ru', 'sk-sk', + 'sl-si', 'sr-latn-rs', 'sv-se', 'th-th', 'tr-tr', + 'uk-ua', 'zh-cn', 'zh-tw' + ) + + $resolvedFallbackLanguageCode = if ($allowedLanguageCodes -contains $FallbackLanguageCode.ToLowerInvariant()) { + $FallbackLanguageCode + } + else { + 'en-US' + } + + $layoutToResolve = $KeyboardLayout + + if ([string]::IsNullOrWhiteSpace($layoutToResolve)) { + try { + $layoutToResolve = [string](Get-CimInstance -ClassName Win32_Keyboard -ErrorAction Stop | Select-Object -ExpandProperty Layout -First 1) + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Detected keyboard layout: $layoutToResolve" + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to detect keyboard layout from Win32_Keyboard. Returning fallback language code: $resolvedFallbackLanguageCode" + if ($LowerCase) { + return $resolvedFallbackLanguageCode.ToLowerInvariant() + } + return $resolvedFallbackLanguageCode + } + } + + $normalizedLayout = ($layoutToResolve -replace '^0x', '').Trim() + + if ([string]::IsNullOrWhiteSpace($normalizedLayout) -or $normalizedLayout.Length -lt 4 -or $normalizedLayout -notmatch '^[0-9a-fA-F]+$') { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Keyboard layout '$layoutToResolve' is not a valid hex layout. Returning fallback language code: $resolvedFallbackLanguageCode" + if ($LowerCase) { + return $resolvedFallbackLanguageCode.ToLowerInvariant() + } + return $resolvedFallbackLanguageCode + } + + $languageIdHex = $normalizedLayout.Substring($normalizedLayout.Length - 4) + + try { + $languageId = [Convert]::ToInt32($languageIdHex, 16) + $cultureName = [System.Globalization.CultureInfo]::GetCultureInfo($languageId).Name + + if ([string]::IsNullOrWhiteSpace($cultureName)) { + throw "No culture name resolved for LCID $languageIdHex" + } + + if ($allowedLanguageCodes -notcontains $cultureName.ToLowerInvariant()) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Resolved language code '$cultureName' is not in the supported set. Returning fallback language code: $resolvedFallbackLanguageCode" + if ($LowerCase) { + return $resolvedFallbackLanguageCode.ToLowerInvariant() + } + return $resolvedFallbackLanguageCode + } + + if ($LowerCase) { + return $cultureName.ToLowerInvariant() + } + + return $cultureName + } + catch { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to convert keyboard layout '$layoutToResolve' (LCID: $languageIdHex). Returning fallback language code: $resolvedFallbackLanguageCode" + if ($LowerCase) { + return $resolvedFallbackLanguageCode.ToLowerInvariant() + } + return $resolvedFallbackLanguageCode + } + } +} diff --git a/OSDCloud/private/core/Get-DeploymentDiskObject.ps1 b/OSDCloud/private/core/Get-DeploymentDiskObject.ps1 index 35c6599..a2cfdfb 100644 --- a/OSDCloud/private/core/Get-DeploymentDiskObject.ps1 +++ b/OSDCloud/private/core/Get-DeploymentDiskObject.ps1 @@ -105,8 +105,8 @@ function Get-DeploymentDiskObject { ) #================================================= # Test Get-PhysicalDisk and throw if not available - if (-not (Get-Command -Name 'Get-PhysicalDisk' -ErrorAction SilentlyContinue)) { - Throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Get-DeploymentDiskObject requires 'Get-PhysicalDisk' which is not available on this system" + if (-not (Get-Command -Name 'Get-PhysicalDisk' -ErrorAction Ignore)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Get-DeploymentDiskObject requires 'Get-PhysicalDisk' which is not available on this system" } #================================================= # Get Variables @@ -144,7 +144,7 @@ function Get-DeploymentDiskObject { ) $diskObjects = $searcher.Get() } catch { - Throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Failed to enumerate disks using MSFT_Disk via .NET: $($_.Exception.Message)" + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Failed to enumerate disks using MSFT_Disk via .NET: $($_.Exception.Message)" } $GetDisk = foreach ($diskObject in $diskObjects) { @@ -219,7 +219,7 @@ function Get-DeploymentDiskObject { #================================================= # if no disks found, throw if ($GetDisk.Count -eq 0) { - Throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No disks were found that could be used for OSDCloud." + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No disks were found that could be used for OSDCloud." } # if more than 1, then need to warn if ($GetDisk.Count -gt 1) { diff --git a/OSDCloud/private/core/Invoke-OSDCloudDownloadFile.ps1 b/OSDCloud/private/core/Invoke-OSDCloudDownloadFile.ps1 index 858fced..1072632 100644 --- a/OSDCloud/private/core/Invoke-OSDCloudDownloadFile.ps1 +++ b/OSDCloud/private/core/Invoke-OSDCloudDownloadFile.ps1 @@ -102,7 +102,7 @@ function Invoke-OSDCloudDownloadFile { elseif (([System.Net.WebRequest]::DefaultWebProxy).Address) { $UseWebClient = $true } - elseif (!(Test-CommandCurlExe)) { + elseif (-not (Get-Command -Name 'curl.exe' -ErrorAction Ignore)) { $UseWebClient = $true } @@ -164,7 +164,7 @@ function Invoke-OSDCloudDownloadFile { if ($localExists -and ((Get-Item $DestinationFullName).Length -lt $remoteLength)) { Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Download is incomplete after $RetryCount retries." - Write-Warning "Could not download $DestinationFullName" + Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Could not download $DestinationFullName" $null } } @@ -175,7 +175,7 @@ function Invoke-OSDCloudDownloadFile { Get-Item $DestinationFullName -Force } else { - Write-Warning "Could not download $DestinationFullName" + Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Could not download $DestinationFullName" $null } #================================================= diff --git a/OSDCloud/private/dev/Initialize-OSDCloudWorkflowSettingsUser.ps1 b/OSDCloud/private/dev/Initialize-OSDCloudWorkflowSettingsUser.ps1 index 7ebec51..a1bb2ad 100644 --- a/OSDCloud/private/dev/Initialize-OSDCloudWorkflowSettingsUser.ps1 +++ b/OSDCloud/private/dev/Initialize-OSDCloudWorkflowSettingsUser.ps1 @@ -57,7 +57,7 @@ function Initialize-OSDCloudWorkflowSettingsUser { break } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $useramd64Path" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $useramd64Path" } $OSDCloudWorkflowSettingsUserFile = $useramd64Path } @@ -67,7 +67,7 @@ function Initialize-OSDCloudWorkflowSettingsUser { break } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $userarm64Path" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $userarm64Path" } $OSDCloudWorkflowSettingsUserFile = $userarm64Path } @@ -90,7 +90,6 @@ function Initialize-OSDCloudWorkflowSettingsUser { Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Initialized OSDCloudWorkflowSettingsUser: $OSDCloudWorkflowSettingsUserFile" $global:OSDCloudWorkflowSettingsUser = $hashtable #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/main/Invoke-OSDCloudDownloadFile.ps1 b/OSDCloud/private/main/Invoke-OSDCloudDownloadFile.ps1 deleted file mode 100644 index 36bdcce..0000000 --- a/OSDCloud/private/main/Invoke-OSDCloudDownloadFile.ps1 +++ /dev/null @@ -1,183 +0,0 @@ -<# -.SYNOPSIS -Downloads a file from the internet and returns a Get-Item Object -.DESCRIPTION -Downloads a file from the internet and returns a Get-Item Object -.LINK -https://github.com/OSDeploy/OSD/tree/master/Docs -#> -function Invoke-OSDCloudDownloadFile { - [CmdletBinding()] - [OutputType([System.IO.FileInfo])] - param - ( - [Parameter(Position = 0, Mandatory, ValueFromPipelineByPropertyName)] - [Alias('FileUri')] - [System.String] - $SourceUrl, - - [Parameter(ValueFromPipelineByPropertyName)] - [Alias('FileName')] - [System.String] - $DestinationName, - - [Alias('Path')] - [System.String] - $DestinationDirectory = (Join-Path $env:TEMP 'OSD'), - - #Overwrite the file if it exists already - #The default action is to skip the download - [System.Management.Automation.SwitchParameter] - $Overwrite, - - [System.Management.Automation.SwitchParameter] - $WebClient - ) - #================================================= - # Values - #================================================= - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] SourceUrl: $SourceUrl" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DestinationName: $DestinationName" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DestinationDirectory: $DestinationDirectory" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Overwrite: $Overwrite" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WebClient: $WebClient" - #================================================= - # DestinationDirectory - #================================================= - if (Test-Path "$DestinationDirectory") { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Directory already exists at $DestinationDirectory" - } - else { - New-Item -Path "$DestinationDirectory" -ItemType Directory -Force -ErrorAction Stop | Out-Null - } - #================================================= - # Test File - #================================================= - $DestinationNewItem = New-Item -Path (Join-Path $DestinationDirectory "$(Get-Random).txt") -ItemType File - - if (Test-Path $DestinationNewItem.FullName) { - $DestinationDirectory = $DestinationNewItem | Select-Object -ExpandProperty Directory - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Destination Directory is writable at $DestinationDirectory" - Remove-Item -Path $DestinationNewItem.FullName -Force | Out-Null - } - else { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to write to Destination Directory" - break - } - #================================================= - # DestinationName - #================================================= - if ($PSBoundParameters['DestinationName']) { - } - else { - $DestinationNameUri = $SourceUrl -as [System.Uri] # Convert to Uri so we can ignore any query string - $DestinationName = $DestinationNameUri.AbsolutePath.Split('/')[-1] - } - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DestinationName: $DestinationName" - #================================================= - # WebFileFullName - #================================================= - $DestinationDirectoryItem = (Get-Item $DestinationDirectory -Force).FullName - $DestinationFullName = Join-Path $DestinationDirectoryItem $DestinationName - #================================================= - # OverWrite - #================================================= - if ((-not ($PSBoundParameters['Overwrite'])) -and (Test-Path $DestinationFullName)) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DestinationFullName already exists" - Get-Item $DestinationFullName -Force - } - else { - #================================================= - # Download - #================================================= - $SourceUrl = [Uri]::EscapeUriString($SourceUrl.Replace('%', '~')).Replace('~', '%') # Substitute and replace '%' to avoid escaping os Azure SAS tokens - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing file at $SourceUrl" - #================================================= - # Test for WebClient Proxy - #================================================= - $UseWebClient = $false - if ($WebClient -eq $true) { - $UseWebClient = $true - } - elseif (([System.Net.WebRequest]::DefaultWebProxy).Address) { - $UseWebClient = $true - } - elseif (-not (Get-Command -Name 'curl.exe' -ErrorAction SilentlyContinue)) { - $UseWebClient = $true - } - - if ($UseWebClient -eq $true) { - [Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls1 - $WebClient = New-Object System.Net.WebClient - $WebClient.DownloadFile($SourceUrl, $DestinationFullName) - $WebClient.Dispose() - } - else { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] cURL Source: $SourceUrl" - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Destination: $DestinationFullName" - - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Requesing HTTP HEAD to get Content-Length and Accept-Ranges header" - $remote = Invoke-WebRequest -UseBasicParsing -Method Head -Uri $SourceUrl - $remoteLength = [Int64]($remote.Headers.'Content-Length' | Select-Object -First 1) - $remoteAcceptsRanges = ($remote.Headers.'Accept-Ranges' | Select-Object -First 1) -eq 'bytes' - - $curlCommandExpression = "& curl.exe --insecure --location --output `"$DestinationFullName`" --url `"$SourceUrl`"" - - if ($host.name -match 'PowerShell ISE Host') { - #PowerShell ISE will display a NativeCommandError, so progress will not be displayed - $Quiet = Invoke-Expression ($curlCommandExpression + ' 2>&1') - } - else { - Invoke-Expression $curlCommandExpression - } - - #================================================= - # Continue interrupted download - #================================================= - if (Test-Path $DestinationFullName) { - $localExists = $true - } - - $RetryDelaySeconds = 1 - $MaxRetryCount = 10 - $RetryCount = 0 - while ( - $localExists ` - -and ((Get-Item $DestinationFullName).Length -lt $remoteLength) ` - -and $remoteAcceptsRanges ` - -and ($RetryCount -lt $MaxRetryCount) - ) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Download is incomplete, remote server accepts ranges, will retry in $RetryDelaySeconds second(s)" - Start-Sleep -Seconds $RetryDelaySeconds - $RetryDelaySeconds *= 2 # retry with exponential backoff - $RetryCount += 1 - $curlCommandExpression = "& curl.exe --insecure --location --continue-at - --output `"$DestinationFullName`" --url `"$SourceUrl`"" - - if ($host.name -match 'PowerShell ISE Host') { - #PowerShell ISE will display a NativeCommandError, so progress will not be displayed - $Quiet = Invoke-Expression ($curlCommandExpression + ' 2>&1') - } - else { - Invoke-Expression $curlCommandExpression - } - } - - if ($localExists -and ((Get-Item $DestinationFullName).Length -lt $remoteLength)) { - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Download is incomplete after $RetryCount retries." - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Could not download $DestinationFullName" - $null - } - } - #================================================= - # Return - #================================================= - if (Test-Path $DestinationFullName) { - Get-Item $DestinationFullName -Force - } - else { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Could not download $DestinationFullName" - $null - } - #================================================= - } -} diff --git a/OSDCloud/private/main/Test-CommandCurlExe.ps1 b/OSDCloud/private/main/Test-CommandCurlExe.ps1 deleted file mode 100644 index 10b232d..0000000 --- a/OSDCloud/private/main/Test-CommandCurlExe.ps1 +++ /dev/null @@ -1,11 +0,0 @@ -function Test-CommandCurlExe { - [CmdletBinding()] - param () - - if (Get-Command 'curl.exe' -ErrorAction SilentlyContinue) { - Return $true - } - else { - Return $false - } -} \ No newline at end of file diff --git a/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogDriver.ps1 b/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogDriver.ps1 index b6c0a96..de2a09d 100644 --- a/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogDriver.ps1 +++ b/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogDriver.ps1 @@ -12,7 +12,7 @@ function Save-MicrosoftUpdateCatalogDriver { ) #================================================= if (!($DestinationDirectory)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Set the DestinationDirectory parameter to download the Drivers" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Set the DestinationDirectory parameter to download the Drivers" } else { if (!(Test-Path $DestinationDirectory)){ @@ -34,7 +34,7 @@ function Save-MicrosoftUpdateCatalogDriver { $SurfaceIDPattern = 'mshw0[0-1]([0-9]){2}' if (-not (Test-MicrosoftUpdateCatalog)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Unable to reach Microsoft Update Catalog, exiting function" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Unable to reach Microsoft Update Catalog, exiting function" return } @@ -128,38 +128,40 @@ function Save-MicrosoftUpdateCatalogDriver { if ($WindowsUpdateDriver.Guid) { Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] $($WindowsUpdateDriver.Title)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] UpdateID: $($WindowsUpdateDriver.Guid)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Last Updated $($WindowsUpdateDriver.LastUpdated) Version $($WindowsUpdateDriver.Version) Size: $($WindowsUpdateDriver.Size)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] UpdateID: $($WindowsUpdateDriver.Guid)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Last Updated $($WindowsUpdateDriver.LastUpdated) Version $($WindowsUpdateDriver.Version) Size: $($WindowsUpdateDriver.Size)" if ($Item.Name -and $Item.PNPClass) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($Item.PNPClass) $($Item.Name)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($Item.PNPClass) $($Item.Name)" } elseif ($Item.Name) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($Item.Name)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($Item.Name)" } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($Item.DeviceID)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($Item.DeviceID)" } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] HardwareID: $FindHardwareID" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] HardwareID: $FindHardwareID" Write-Verbose "[$(Get-Date -format s)] SearchString: $SearchString" if ($DestinationDirectory) { $ExpandedLocalFolder = Join-Path $DestinationDirectory "$($WindowsUpdateDriver.Guid)" if (Test-Path $ExpandedLocalFolder) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Driver already expanded at $ExpandedLocalFolder" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Driver already expanded at $ExpandedLocalFolder" } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading to $DestinationDirectory" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloading to $DestinationDirectory" $WindowsUpdateDriverFile = Save-MicrosoftUpdateCatalogUpdate -Guid $WindowsUpdateDriver.Guid -DestinationDirectory $DestinationDirectory if ($WindowsUpdateDriverFile) { if (-not (Test-Path $ExpandedLocalFolder)) { # Destination folder must exist before expanding the cab file New-Item -Path $ExpandedLocalFolder -ItemType Directory -Force | Out-Null } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Expanding to $ExpandedLocalFolder" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Expanding to $ExpandedLocalFolder" expand.exe "$($WindowsUpdateDriverFile.FullName)" -F:* "$ExpandedLocalFolder" | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing $($WindowsUpdateDriverFile.FullName)" - Remove-Item $($WindowsUpdateDriverFile.FullName) -Force -ErrorAction SilentlyContinue | Out-Null + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing $($WindowsUpdateDriverFile.FullName)" + if (Test-Path -LiteralPath $WindowsUpdateDriverFile.FullName) { + Remove-Item -LiteralPath $WindowsUpdateDriverFile.FullName -Force -ErrorAction SilentlyContinue | Out-Null + } } else { Write-Verbose "[$(Get-Date -format s)] Could not find a Driver for this HardwareID" @@ -234,28 +236,30 @@ function Save-MicrosoftUpdateCatalogDriver { if ($WindowsUpdateDriver.Guid) { Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] $($WindowsUpdateDriver.Title)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] UpdateID: $($WindowsUpdateDriver.Guid)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Last Updated $($WindowsUpdateDriver.LastUpdated) Version $($WindowsUpdateDriver.Version) Size: $($WindowsUpdateDriver.Size)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] HardwareID: $FindHardwareID" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] UpdateID: $($WindowsUpdateDriver.Guid)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Last Updated $($WindowsUpdateDriver.LastUpdated) Version $($WindowsUpdateDriver.Version) Size: $($WindowsUpdateDriver.Size)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] HardwareID: $FindHardwareID" Write-Verbose "[$(Get-Date -format s)] SearchString: $SearchString" if ($DestinationDirectory) { $ExpandedLocalFolder = Join-Path $DestinationDirectory "$($WindowsUpdateDriver.Guid)" if (Test-Path $ExpandedLocalFolder) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Driver already expanded at $ExpandedLocalFolder" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Driver already expanded at $ExpandedLocalFolder" } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloading to $DestinationDirectory" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloading to $DestinationDirectory" $WindowsUpdateDriverFile = Save-MicrosoftUpdateCatalogUpdate -Guid $WindowsUpdateDriver.Guid -DestinationDirectory $DestinationDirectory if ($WindowsUpdateDriverFile) { if (-not (Test-Path $ExpandedLocalFolder)) { # Destination folder must exist before expanding the cab file New-Item -Path $ExpandedLocalFolder -ItemType Directory -Force | Out-Null } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Expanding to $ExpandedLocalFolder" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Expanding to $ExpandedLocalFolder" expand.exe "$($WindowsUpdateDriverFile.FullName)" -F:* "$ExpandedLocalFolder" | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing $($WindowsUpdateDriverFile.FullName)" - Remove-Item $($WindowsUpdateDriverFile.FullName) -Force -ErrorAction SilentlyContinue | Out-Null + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing $($WindowsUpdateDriverFile.FullName)" + if (Test-Path -LiteralPath $WindowsUpdateDriverFile.FullName) { + Remove-Item -LiteralPath $WindowsUpdateDriverFile.FullName -Force -ErrorAction SilentlyContinue | Out-Null + } } else { Write-Verbose "[$(Get-Date -format s)] Could not find a Driver for this HardwareID" @@ -272,4 +276,4 @@ function Save-MicrosoftUpdateCatalogDriver { } } } -} \ No newline at end of file +} diff --git a/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogUpdate.ps1 b/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogUpdate.ps1 index de9c8cd..61ec158 100644 --- a/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogUpdate.ps1 +++ b/OSDCloud/private/microsoft-update-catalog/Save-MicrosoftUpdateCatalogUpdate.ps1 @@ -37,7 +37,7 @@ function Save-MicrosoftUpdateCatalogUpdate { $Update = Get-MSCatalogUpdate -Search "KB4515384" Save-MSCatalogUpdate -Update $Update -Destination C:\Windows\Temp\ -UseBits #> - + param ( [Parameter( Mandatory = $true, @@ -55,7 +55,7 @@ function Save-MicrosoftUpdateCatalogUpdate { if ($Links.Matches.Count -eq 1) { $Link = $Links.Matches[0] - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($Link.Value)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($Link.Value)" $SaveWebFile = Save-WebFile -SourceUrl $Link.Value -DestinationDirectory "$DestinationDirectory" -DestinationName $Link.Value.Split('/')[-1] $SaveWebFile @@ -91,4 +91,4 @@ function Save-MicrosoftUpdateCatalogUpdate { else { Write-Warning "Can not find link for file, nothing was downloaded" } -} \ No newline at end of file +} diff --git a/OSDCloud/private/microsoft-update-catalog/Save-WebFile.ps1 b/OSDCloud/private/microsoft-update-catalog/Save-WebFile.ps1 index c686e24..235825a 100644 --- a/OSDCloud/private/microsoft-update-catalog/Save-WebFile.ps1 +++ b/OSDCloud/private/microsoft-update-catalog/Save-WebFile.ps1 @@ -102,7 +102,7 @@ function Save-WebFile { elseif (([System.Net.WebRequest]::DefaultWebProxy).Address) { $UseWebClient = $true } - elseif (-not (Get-Command -Name 'curl.exe' -ErrorAction SilentlyContinue)) { + elseif (-not (Get-Command -Name 'curl.exe' -ErrorAction Ignore)) { $UseWebClient = $true } diff --git a/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudlogs.ps1 b/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudlogs.ps1 index d4cc1d8..de2b548 100644 --- a/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudlogs.ps1 +++ b/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudlogs.ps1 @@ -1,28 +1,46 @@ +<# +.SYNOPSIS +Starts transcript logging for an OSDCloud workflow task. + +.DESCRIPTION +Creates the OSDCloud workflow log directory under the current temporary path and +starts a PowerShell transcript with a timestamped file name. This step is normally +run near the beginning of an OSDCloud workflow task after the workflow task banner +has been displayed. + +The transcript is written to $env:TEMP\osdcloud-logs, which resolves to the WinPE +temporary path when running from WinPE and to the current Windows temporary path +when the step is allowed to run in a full OS test context. + +.EXAMPLE +step-initialize-osdcloudlogs + +Creates the workflow log directory and starts transcript logging. + +.NOTES +Internal workflow step used by OSDCloud deployment tasks. + +.OUTPUTS +None. This function does not return objects. +#> function step-initialize-osdcloudlogs { [CmdletBinding()] param () #================================================= - # Start the step - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Verbose -Message $Message; Write-Debug -Message $Message - - # Get the configuration of the step - $Step = $global:OSDCloudCurrentStep + $Error.Clear() + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main $LogsPath = "$env:TEMP\osdcloud-logs" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LogsPath: $LogsPath" - # Ensure logs directory exists $null = New-Item -Path $LogsPath -ItemType Directory -Force -ErrorAction SilentlyContinue - # Start transcript logging $TranscriptFullName = Join-Path $LogsPath "transcript-$((Get-Date).ToString('yyyy-MM-dd-HHmmss')).log" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Starting transcript: $TranscriptFullName" if (-not (Start-Transcript -Path $TranscriptFullName -ErrorAction SilentlyContinue)) { Write-Warning "[$(Get-Date -format s)] Failed to start transcript at $TranscriptFullName" } - #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudworkflowtask.ps1 b/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudworkflowtask.ps1 index ac6ad90..c3479ac 100644 --- a/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudworkflowtask.ps1 +++ b/OSDCloud/private/steps/1-initialize/step-initialize-osdcloudworkflowtask.ps1 @@ -1,3 +1,29 @@ +<# +.SYNOPSIS +Displays the startup banner for an OSDCloud workflow task. + +.DESCRIPTION +Writes the selected workflow task name to the host, gives the user five seconds +to cancel with Ctrl+C, and then allows the workflow executor to continue to the +next step. Task JSON files pass the root task name through the WorkflowTaskName +parameter so the banner matches the selected workflow task. + +.PARAMETER WorkflowTaskName +Display name of the workflow task being started. The value should match the name +field at the root of the workflow task JSON file. + +.EXAMPLE +step-initialize-osdcloudworkflowtask -WorkflowTaskName 'OSDCloud' + +Displays the OSDCloud task startup message and waits five seconds before the +workflow continues. + +.NOTES +Internal workflow step used by OSDCloud deployment tasks. + +.OUTPUTS +None. This function does not return objects. +#> function step-initialize-osdcloudworkflowtask { [CmdletBinding()] param ( @@ -5,23 +31,17 @@ function step-initialize-osdcloudworkflowtask { [string]$WorkflowTaskName = "OSDCloud Workflow" ) #================================================= - # Start the step - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Verbose -Message $Message; Write-Debug -Message $Message - - # Get the configuration of the step - $Step = $global:OSDCloudCurrentStep + $Error.Clear() + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main - + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WorkflowTaskName: $WorkflowTaskName" + # Display delay message to user - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Starting $WorkflowTaskName in 5 seconds..." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Starting $WorkflowTaskName in 5 seconds..." Write-Host -ForegroundColor DarkGray "Press Ctrl+C to exit OSDCloud" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Waiting 5 seconds before workflow continues." Start-Sleep -Seconds 5 - - #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/2-test/step-test-targetdisk.ps1 b/OSDCloud/private/steps/2-test/step-test-targetdisk.ps1 index 5f2fd0c..4e967b9 100644 --- a/OSDCloud/private/steps/2-test/step-test-targetdisk.ps1 +++ b/OSDCloud/private/steps/2-test/step-test-targetdisk.ps1 @@ -1,33 +1,47 @@ +<# +.SYNOPSIS +Validates that OSDCloud detected a local deployment disk. + +.DESCRIPTION +Checks $global:OSDCloudWorkflowInvoke.DeploymentDisk before destructive preinstall steps run. +When a fixed local disk is detected, the step writes an informational success +message and allows the workflow to continue. When no fixed local disk is detected, +the step warns that WinPE may require additional storage, SCSI, or RAID drivers, +then waits so the user can cancel the deployment. + +.EXAMPLE +step-test-targetdisk + +Validates that a fixed local disk is available for the workflow. + +.NOTES +Internal workflow step used by OSDCloud deployment tasks. + +.OUTPUTS +None. This function does not return objects. +#> function step-test-targetdisk { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + $Error.Clear() + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main - if ($env:SystemDrive -eq 'X:') { - $global:OSDCloudWorkflowInvoke.GetDiskFixed = Get-DeviceLocalDisk | Where-Object { $_.IsBoot -eq $false } | Sort-Object Number - } - else { - $global:OSDCloudWorkflowInvoke.GetDiskFixed = Get-DeviceLocalDisk | Sort-Object Number - } - + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DeploymentDisk: $($global:OSDCloudWorkflowInvoke.DeploymentDisk | Out-String)" - if ($global:OSDCloudWorkflowInvoke.GetDiskFixed) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Fixed Disk is valid. OK." + if ($global:OSDCloudWorkflowInvoke.DeploymentDisk) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DeploymentDisk was detected. Continuing." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Fixed Disk is valid. OK." } else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DeploymentDisk was not detected. Stopping workflow for user intervention." Write-Warning "[$(Get-Date -format s)] Unable to detect a Fixed Disk." Write-Warning "[$(Get-Date -format s)] WinPE may need additional Disk, SCSI or Raid Drivers." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit } - #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/2-test/step-test-targetdriverpack.ps1 b/OSDCloud/private/steps/2-test/step-test-targetdriverpack.ps1 index 84c3efd..bab59ac 100644 --- a/OSDCloud/private/steps/2-test/step-test-targetdriverpack.ps1 +++ b/OSDCloud/private/steps/2-test/step-test-targetdriverpack.ps1 @@ -1,77 +1,177 @@ +<# +.SYNOPSIS +Validates driver pack availability for an OSDCloud workflow task. + +.DESCRIPTION +Checks the selected driver pack before driver download and injection steps run. +The step treats DriverPackName values of None and Microsoft Update Catalog as +valid bypass states. When a driver pack object is present, it validates that the +object has a Url, then checks whether that URL responds online or whether the +matching driver pack file is already available under OSDCloud\DriverPacks on a +local file system drive. + +When a selected Microsoft Surface driver pack URL is unavailable, the step +refreshes that selected catalog entry and retries the latest URL once before +checking for offline content. + +If the driver pack cannot be validated online or offline, the workflow continues +without a driver pack by clearing the driver pack values in the deployment state +and workflow invocation snapshot. + +.PARAMETER DriverPackName +Name of the selected driver pack. Defaults to +$global:OSDCloudWorkflowInvoke.DriverPackName. + +.PARAMETER DriverPackCloudObject +Driver pack metadata object used for URL and file-name validation. Defaults to +$global:OSDCloudWorkflowInvoke.DriverPackCloudObject. + +.EXAMPLE +step-test-targetdriverpack + +Validates the driver pack configured in the workflow invocation snapshot. + +.NOTES +Internal workflow step used by OSDCloud deployment tasks. + +.OUTPUTS +None. This function does not return objects. +#> function step-test-targetdriverpack { [CmdletBinding()] param ( [System.String] $DriverPackName = $global:OSDCloudWorkflowInvoke.DriverPackName, - $DriverPackObject = $global:OSDCloudWorkflowInvoke.DriverPackObject + $DriverPackCloudObject = $global:OSDCloudWorkflowInvoke.DriverPackCloudObject ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + $Error.Clear() + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName: $DriverPackName" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackCloudObject.Url: $($DriverPackCloudObject.Url)" + # Is DriverPackName set to None? if ($DriverPackName -eq 'None') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPackName is set to None. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName bypass is None." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPackName is set to None. OK." return } #================================================= # Is DriverPackName set to Microsoft Update Catalog? if ($DriverPackName -eq 'Microsoft Update Catalog') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPackName is set to Microsoft Update Catalog. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName bypass is Microsoft Update Catalog." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPackName is set to Microsoft Update Catalog. OK." return } #================================================= # Is there a DriverPack Object? - if (-not ($DriverPackObject)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPackObject is not set. OK." + if (-not ($DriverPackCloudObject)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackCloudObject was not provided." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPackCloudObject is not set. OK." return } #================================================= # Is there a URL? - if (-not $($DriverPackObject.Url)) { - Write-Warning "[$(Get-Date -format s)] DriverPackObject does not have a Url to validate." + if (-not $($DriverPackCloudObject.Url)) { + Write-Warning "[$(Get-Date -format s)] DriverPackCloudObject does not have a Url to validate." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit } #================================================= # Is it reachable online? - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($DriverPackObject.Url)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($DriverPackCloudObject.Url)" try { - $WebRequest = Invoke-WebRequest -Uri $DriverPackObject.Url -UseBasicParsing -Method Head + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing DriverPack URL with HEAD request." + $WebRequest = Invoke-WebRequest -Uri $DriverPackCloudObject.Url -UseBasicParsing -Method Head if ($WebRequest.StatusCode -eq 200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack URL returned a 200 status code. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPack URL is reachable online." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack URL returned a 200 status code. OK." return } } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack URL is not reachable." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack URL is not reachable online and cannot be downloaded." + } + #================================================= + # Refresh a selected Microsoft Surface DriverPack and retry the latest URL + if ($DriverPackCloudObject.Manufacturer -eq 'Microsoft' -and $DriverPackCloudObject.SystemId) { + $surfaceOSDProduct = $DriverPackCloudObject.SystemId | Where-Object { + -not [System.String]::IsNullOrWhiteSpace([System.String]$_) + } | Select-Object -First 1 + + if ($surfaceOSDProduct) { + try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Refreshing selected Surface DriverPack for OSDProduct '$surfaceOSDProduct'." + $refreshedDriverPackCloudObject = Update-OSDCoreDriverPackCloudObjectSurface -OSDProduct $surfaceOSDProduct -ErrorAction Stop + if ($refreshedDriverPackCloudObject) { + $DriverPackCloudObject = $refreshedDriverPackCloudObject + $DriverPackName = $refreshedDriverPackCloudObject.Name + $driverPackCacheObject = Get-OSDCoreDriverPackCacheObject -DriverPackCloudObject $refreshedDriverPackCloudObject + + if ($global:OSDCloudDeploy) { + $global:OSDCloudDeploy.DriverPackCacheObject = $driverPackCacheObject + $global:OSDCloudDeploy.DriverPackCloudObject = $refreshedDriverPackCloudObject + $global:OSDCloudDeploy.DriverPackName = $refreshedDriverPackCloudObject.Name + } + if ($global:OSDCloudWorkflowInvoke) { + $global:OSDCloudWorkflowInvoke.DriverPackCacheObject = $driverPackCacheObject + $global:OSDCloudWorkflowInvoke.DriverPackCloudObject = $refreshedDriverPackCloudObject + $global:OSDCloudWorkflowInvoke.DriverPackName = $refreshedDriverPackCloudObject.Name + } + + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Retrying refreshed DriverPack URL: $($refreshedDriverPackCloudObject.Url)" + try { + $WebRequest = Invoke-WebRequest -Uri $refreshedDriverPackCloudObject.Url -UseBasicParsing -Method Head + if ($WebRequest.StatusCode -eq 200) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Refreshed Surface DriverPack URL is reachable online." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Refreshed DriverPack URL returned a 200 status code. OK." + return + } + } + catch { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Refreshed DriverPack URL is not reachable online." + } + } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No refreshed Surface DriverPack matched OSDProduct '$surfaceOSDProduct'." + } + } + catch { + Write-Warning "[$(Get-Date -format s)] Unable to refresh the selected Surface DriverPack. Using the existing DriverPackCloudObject. $($_.Exception.Message)" + } + } } #================================================= # Does the file exist on a Drive? - $FileName = Split-Path $DriverPackObject.Url -Leaf + $FileName = Split-Path $DriverPackCloudObject.Url -Leaf + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Searching local drives for DriverPack file: $FileName" $MatchingFiles = @() $MatchingFiles = Get-PSDrive -PSProvider FileSystem | ForEach-Object { Get-ChildItem "$($_.Name):\OSDCloud\DriverPacks\" -Include "$FileName" -File -Recurse -Force -ErrorAction Ignore } if ($MatchingFiles) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($MatchingFiles[0].FullName)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack is available offline. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Offline DriverPack matches found: $(@($MatchingFiles).Count)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($MatchingFiles[0].FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack is available offline. OK." return } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack is not available offline." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack is not available offline." } #================================================= # DriverPack does not exist Write-Warning "[$(Get-Date -format s)] Unable to validate if the DriverPack is reachable online or offline." Write-Warning "[$(Get-Date -format s)] OSDCloud will continue without a DriverPack. Clearing variables." - $global:OSDCloudDeploy.DriverPackObject = $null + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Clearing driver pack values from deployment and workflow state." + $global:OSDCloudDeploy.DriverPackCacheObject = $null + $global:OSDCloudDeploy.DriverPackCloudObject = $null $global:OSDCloudDeploy.DriverPackName = 'None' if ($global:OSDCloudWorkflowInvoke) { - $global:OSDCloudWorkflowInvoke.DriverPackObject = $null + $global:OSDCloudWorkflowInvoke.DriverPackCacheObject = $null + $global:OSDCloudWorkflowInvoke.DriverPackCloudObject = $null $global:OSDCloudWorkflowInvoke.DriverPackName = 'None' } Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] Continuing in 5 seconds..." @@ -79,7 +179,6 @@ function step-test-targetdriverpack { Start-Sleep -Seconds 5 #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/2-test/step-test-targetwindowsimage.ps1 b/OSDCloud/private/steps/2-test/step-test-targetwindowsimage.ps1 index b1ca8ab..741043a 100644 --- a/OSDCloud/private/steps/2-test/step-test-targetwindowsimage.ps1 +++ b/OSDCloud/private/steps/2-test/step-test-targetwindowsimage.ps1 @@ -1,3 +1,34 @@ +<# +.SYNOPSIS +Validates Windows image availability for an OSDCloud workflow task. + +.DESCRIPTION +Checks that the selected Windows image can be used before download and install +steps run. The step first accepts an existing local image selected in +$global:OSDCloudWorkflowInvoke.OperatingSystemCacheObject. If no cached image is +available, it validates +$global:OSDCloudWorkflowInvoke.OperatingSystemCloudObject.FilePath by checking +whether the URL responds online or whether the matching image file is already +available under OSDCloud\OS on a local file system drive. + +When the Windows image cannot be validated online or offline, the step waits so +the user can cancel the deployment before exiting. + +.PARAMETER LaunchMethod +Reserved for launch-method specific validation. Defaults to +$global:OSDCloudWorkflowInvoke.LaunchMethod. + +.EXAMPLE +step-test-targetwindowsimage + +Validates the Windows image configured in the workflow invocation snapshot. + +.NOTES +Internal workflow step used by OSDCloud deployment tasks. + +.OUTPUTS +None. This function does not return objects. +#> function step-test-targetwindowsimage { [CmdletBinding()] param ( @@ -5,54 +36,69 @@ function step-test-targetwindowsimage { $LaunchMethod = $global:OSDCloudWorkflowInvoke.LaunchMethod ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + $Error.Clear() + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - # Is there a local image file already selected? - if ($global:OSDCloudDeploy.LocalImageFileInfo) { - $LocalImageFilePath = if ($global:OSDCloudDeploy.LocalImageFileInfo.FullName) { $global:OSDCloudDeploy.LocalImageFileInfo.FullName } else { [string]$global:OSDCloudDeploy.LocalImageFileInfo } - if (Test-Path -LiteralPath $LocalImageFilePath) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $LocalImageFilePath" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem is available offline. OK." + $OperatingSystemCloudObject = $global:OSDCloudWorkflowInvoke.OperatingSystemCloudObject + $OperatingSystemCacheObject = $global:OSDCloudWorkflowInvoke.OperatingSystemCacheObject + $OperatingSystemFilePath = [string]$OperatingSystemCloudObject.FilePath + if ([string]::IsNullOrWhiteSpace($OperatingSystemFilePath)) { + $OperatingSystemFilePath = [string]$OperatingSystemCloudObject.Url + } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LaunchMethod: $LaunchMethod" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OperatingSystemFilePath: $OperatingSystemFilePath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OperatingSystemCacheObject: $OperatingSystemCacheObject" + #================================================= + # Is there a cached image file already selected? + if ($OperatingSystemCacheObject) { + $OperatingSystemCachePath = if ($OperatingSystemCacheObject.FullName) { $OperatingSystemCacheObject.FullName } else { [string]$OperatingSystemCacheObject } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing selected cache path: $OperatingSystemCachePath" + if (Test-Path -LiteralPath $OperatingSystemCachePath) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Cached Windows image was found." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $OperatingSystemCachePath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem is available offline. OK." return } } #================================================= # Is there an Operating System ImageFile URL? - if (-not ($global:OSDCloudWorkflowInvoke.OperatingSystemObject.FilePath)) { - Write-Warning "[$(Get-Date -format s)] OperatingSystemObject does not have a Url to validate." + if ([string]::IsNullOrWhiteSpace($OperatingSystemFilePath)) { + Write-Warning "[$(Get-Date -format s)] OperatingSystemCloudObject does not have a FilePath or Url to validate." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit } #================================================= # Is it reachable online? - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($global:OSDCloudWorkflowInvoke.OperatingSystemObject.FilePath)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $OperatingSystemFilePath" try { - $WebRequest = Invoke-WebRequest -Uri $global:OSDCloudWorkflowInvoke.OperatingSystemObject.FilePath -UseBasicParsing -Method Head + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing OperatingSystem URL with HEAD request." + $WebRequest = Invoke-WebRequest -Uri $OperatingSystemFilePath -UseBasicParsing -Method Head if ($WebRequest.StatusCode -eq 200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem URL returned a 200 status code. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OperatingSystem URL is reachable online." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem URL returned a 200 status code. OK." return } } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem URL is not reachable." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem URL is not reachable online and cannot be downloaded." } #================================================= # Does the file exist on a Drive? - $FileName = Split-Path $global:OSDCloudWorkflowInvoke.OperatingSystemObject.FilePath -Leaf + $FileName = if ($OperatingSystemCloudObject.FileName) { [string]$OperatingSystemCloudObject.FileName } else { Split-Path $OperatingSystemFilePath -Leaf } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Searching local drives for OperatingSystem file: $FileName" $MatchingFiles = @() $MatchingFiles = Get-PSDrive -PSProvider FileSystem | ForEach-Object { Get-ChildItem "$($_.Name):\OSDCloud\OS\" -Include "$FileName" -File -Recurse -Force -ErrorAction Ignore } if ($MatchingFiles) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($MatchingFiles[0].FullName)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem is available offline. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Offline OperatingSystem matches found: $(@($MatchingFiles).Count)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($MatchingFiles[0].FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem is available offline. OK." return } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystem is not available offline." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystem is not available offline." } #================================================= # Can't access the file so need to bail @@ -61,8 +107,7 @@ function step-test-targetwindowsimage { Start-Sleep -Seconds 86400 Exit #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } @@ -71,25 +116,4 @@ function step-test-targetwindowsimage { #TODO This is not working for Core #$null = Install-Module -Name $global:OSDCloudWorkflowInvoke.LaunchMethod -Force -ErrorAction Ignore -WarningAction Ignore } - - if ($global:OSDCloudDeploy.LocalImageFileInfo) { - # Test if the file is on USB (example: check if path starts with a removable drive letter) - if (!(Test-Path $global:OSDCloudDeploy.LocalImageFileInfo)) { - Write-Warning "[$(Get-Date -format s)] OSDCloud failed to find the Operating System Local ImageFile Item" - Write-Warning $($global:OSDCloudDeploy.LocalImageFileInfo) - Write-Warning 'Press Ctrl+C to exit OSDCloud' - Start-Sleep -Seconds 86400 - Exit - } - } - - if ($global:OSDCloudWorkflowInvoke.LocalImageFileDestination) { - if (!(Test-Path $global:OSDCloudWorkflowInvoke.LocalImageFileDestination)) { - Write-Warning "[$(Get-Date -format s)] OSDCloud failed to find the Operating System Local ImageFile Destination" - Write-Warning $($global:OSDCloudWorkflowInvoke.LocalImageFileDestination) - Write-Warning 'Press Ctrl+C to exit OSDCloud' - Start-Sleep -Seconds 86400 - Exit - } - } #> diff --git a/OSDCloud/private/steps/3-preinstall/step-preinstall-cleartargetdisk.ps1 b/OSDCloud/private/steps/3-preinstall/step-preinstall-cleartargetdisk.ps1 index 9daa004..d021aad 100644 --- a/OSDCloud/private/steps/3-preinstall/step-preinstall-cleartargetdisk.ps1 +++ b/OSDCloud/private/steps/3-preinstall/step-preinstall-cleartargetdisk.ps1 @@ -6,26 +6,28 @@ function step-preinstall-cleartargetdisk { $Confirm = $true ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main - if ($global:OSDCloudDeploy.Force -eq $true) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Force was specified. Clear-Disk confirmation prompts are disabled" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Initial Confirm: $Confirm" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Force: $($global:OSDCloudWorkflowInvoke.Force)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LocalDisk count: $(@($global:OSDCoreDevice.LocalDisk).Count)" + + if ($global:OSDCloudWorkflowInvoke.Force -eq $true) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Force is enabled; Clear-Disk confirmation will be disabled." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Force was specified. Clear-Disk confirmation prompts are disabled" $Confirm = $false } # If Confirm is set to false, we need to check if there are multiple disks - if (($Confirm -eq $false) -and ($global:OSDCloudDeploy.Force -ne $true) -and (($global:OSDCloudWorkflowInvoke.GetDiskFixed | Measure-Object).Count -ge 2)) { + if (($Confirm -eq $false) -and ($global:OSDCloudWorkflowInvoke.Force -ne $true) -and (@($global:OSDCoreDevice.LocalDisk).Count -ge 2)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Multiple fixed disks detected without Force; re-enabling confirmation." Write-Warning "[$(Get-Date -format s)] OSDCloud has detected more than 1 Fixed Disk is installed. Clear-Disk with Confirm is required" $Confirm = $true } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Calling Clear-DeviceLocalDisk with Confirm=$Confirm." Clear-DeviceLocalDisk -Force -NoResults -Confirm:$Confirm -ErrorAction Stop - #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/3-preinstall/step-preinstall-enablehighperformance.ps1 b/OSDCloud/private/steps/3-preinstall/step-preinstall-enablehighperformance.ps1 index 6cab71c..7d8c861 100644 --- a/OSDCloud/private/steps/3-preinstall/step-preinstall-enablehighperformance.ps1 +++ b/OSDCloud/private/steps/3-preinstall/step-preinstall-enablehighperformance.ps1 @@ -3,17 +3,21 @@ function step-preinstall-enablehighperformance { param () #================================================= Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - $Step = $global:OSDCloudCurrentStep #================================================= + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] IsOnBattery: $($global:OSDCoreDevice.IsOnBattery)" + if ($global:OSDCoreDevice.IsOnBattery -eq $true) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Device is on battery; skipping high performance power plan." $classWin32Battery = (Get-CimInstance -ClassName Win32_Battery -ErrorAction SilentlyContinue | Select-Object -Property *) if ($classWin32Battery.BatteryStatus -eq 1) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Device has $($classWin32Battery.EstimatedChargeRemaining)% battery remaining" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] BatteryStatus: $($classWin32Battery.BatteryStatus); EstimatedChargeRemaining: $($classWin32Battery.EstimatedChargeRemaining)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Device has $($classWin32Battery.EstimatedChargeRemaining)% battery remaining" } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] High Performance will not be enabled while on battery" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] High Performance will not be enabled while on battery" } else { - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] powercfg.exe -SetActive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] powercfg.exe -SetActive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running powercfg.exe -SetActive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c" powercfg.exe -SetActive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c } #================================================= diff --git a/OSDCloud/private/steps/3-preinstall/step-preinstall-partitiontargetdisk.ps1 b/OSDCloud/private/steps/3-preinstall/step-preinstall-partitiontargetdisk.ps1 index 0e810a0..1261486 100644 --- a/OSDCloud/private/steps/3-preinstall/step-preinstall-partitiontargetdisk.ps1 +++ b/OSDCloud/private/steps/3-preinstall/step-preinstall-partitiontargetdisk.ps1 @@ -11,30 +11,43 @@ function step-preinstall-partitiontargetdisk { $DiskNumber = $global:OSDCloudWorkflowInvoke.DiskPartition.DiskNumber ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DiskNumber: $DiskNumber" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] RecoveryPartitionForce: $RecoveryPartitionForce; RecoveryPartitionSkip: $RecoveryPartitionSkip; IsVM: $IsVM" + # Mental Math $RecoveryPartition = $true - if ($IsVM -eq $true) { $RecoveryPartition = $false } - if ($RecoveryPartitionSkip) { $RecoveryPartition = $false } - if ($RecoveryPartitionForce) { $RecoveryPartition = $true } + if ($IsVM -eq $true) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Virtual machine detected; recovery partition disabled unless forced." + $RecoveryPartition = $false + } + if ($RecoveryPartitionSkip) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] RecoveryPartitionSkip requested; recovery partition disabled." + $RecoveryPartition = $false + } + if ($RecoveryPartitionForce) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] RecoveryPartitionForce requested; recovery partition enabled." + $RecoveryPartition = $true + } if ($RecoveryPartition -eq $false) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Recovery Partition will not be created. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating GPT disk without recovery partition." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Recovery Partition will not be created. OK." New-OSDCloudDisk -PartitionStyle GPT -NoRecoveryPartition -Force -ErrorAction Stop Write-Host "=========================================================================" -ForegroundColor DarkCyan Write-Host "| SYSTEM | MSR | WINDOWS |" -ForegroundColor DarkCyan Write-Host "=========================================================================" -ForegroundColor DarkCyan } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] 2GB Recovery Partition will be created. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating GPT disk with 2000MB recovery partition." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] 2GB Recovery Partition will be created. OK." if ($DiskNumber) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] New-OSDCloudDisk target DiskNumber: $DiskNumber" New-OSDCloudDisk -PartitionStyle GPT -DiskNumber $DiskNumber -SizeRecovery 2000MB -Force -ErrorAction Stop } else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] New-OSDCloudDisk will use its default target disk selection." New-OSDCloudDisk -PartitionStyle GPT -SizeRecovery 2000MB -Force -ErrorAction Stop } Write-Host "=========================================================================" -ForegroundColor DarkCyan @@ -43,16 +56,16 @@ function step-preinstall-partitiontargetdisk { } Start-Sleep -Seconds 5 - # Make sure that there is a PSDrive + # Make sure that there is a PSDrive if (!(Get-PSDrive -Name 'C')) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] PSDrive C was not created after partitioning." Write-Warning "[$(Get-Date -format s)] Failed to create a PSDrive FileSystem at C:\." - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Press Ctrl+C to exit OSDCloud" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Press Ctrl+C to exit OSDCloud" Start-Sleep -Seconds 86400 exit } - #endregion + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] PSDrive C is available after partitioning." #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/3-preinstall/step-preinstall-removeusbdriveletter.ps1 b/OSDCloud/private/steps/3-preinstall/step-preinstall-removeusbdriveletter.ps1 index c7d1eed..76c4068 100644 --- a/OSDCloud/private/steps/3-preinstall/step-preinstall-removeusbdriveletter.ps1 +++ b/OSDCloud/private/steps/3-preinstall/step-preinstall-removeusbdriveletter.ps1 @@ -2,11 +2,8 @@ function step-preinstall-removeusbdriveletter { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main <# https://docs.microsoft.com/en-us/powershell/module/storage/remove-partitionaccesspath Partition Access Paths are being removed from USB Drive Letters @@ -15,10 +12,11 @@ function step-preinstall-removeusbdriveletter { # Store the USB Partitions $global:OSDCloudWorkflowInvoke.USBPartitions = Get-DeviceUSBPartition + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] USB partition count: $(@($global:OSDCloudWorkflowInvoke.USBPartitions).Count)" # Remove USB Drive Letters if ($global:OSDCloudWorkflowInvoke.USBPartitions) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing USB Drive Letters. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing USB Drive Letters. OK." foreach ($Item in $global:OSDCloudWorkflowInvoke.USBPartitions) { $Params = @{ AccessPath = "$($Item.DriveLetter):" @@ -26,12 +24,15 @@ function step-preinstall-removeusbdriveletter { PartitionNumber = $Item.PartitionNumber ErrorAction = 'SilentlyContinue' } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing access path $($Params.AccessPath) from Disk $($Params.DiskNumber), Partition $($Params.PartitionNumber)." Remove-PartitionAccessPath @Params Start-Sleep -Seconds 3 } } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No USB partitions were found." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/3-preinstall/step-preinstall-restoreusbdriveletter.ps1 b/OSDCloud/private/steps/3-preinstall/step-preinstall-restoreusbdriveletter.ps1 index ac25f40..93e886c 100644 --- a/OSDCloud/private/steps/3-preinstall/step-preinstall-restoreusbdriveletter.ps1 +++ b/OSDCloud/private/steps/3-preinstall/step-preinstall-restoreusbdriveletter.ps1 @@ -2,13 +2,12 @@ function step-preinstall-restoreusbdriveletter { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] USB partition count: $(@($global:OSDCloudWorkflowInvoke.USBPartitions).Count)" + if ($global:OSDCloudWorkflowInvoke.USBPartitions) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Restoring USB Drive Letters. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Restoring USB Drive Letters. OK." foreach ($Item in $global:OSDCloudWorkflowInvoke.USBPartitions) { $Params = @{ AssignDriveLetter = $true @@ -16,12 +15,15 @@ function step-preinstall-restoreusbdriveletter { PartitionNumber = $Item.PartitionNumber ErrorAction = 'SilentlyContinue' } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Restoring drive letter on Disk $($Params.DiskNumber), Partition $($Params.PartitionNumber)." Add-PartitionAccessPath @Params Start-Sleep -Seconds 5 } } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No saved USB partitions were found." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/4-install/step-install-bcdboot.ps1 b/OSDCloud/private/steps/4-install/step-install-bcdboot.ps1 index 92453cf..ab00858 100644 --- a/OSDCloud/private/steps/4-install/step-install-bcdboot.ps1 +++ b/OSDCloud/private/steps/4-install/step-install-bcdboot.ps1 @@ -2,31 +2,30 @@ function step-install-bcdboot { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main $LogPath = "C:\Windows\Temp\osdcloud-logs" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSBuild: $($global:OSDCloudWorkflowInvoke.OSBuild); LogPath: $LogPath" # https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/bcdboot-command-line-options-techref-di?view=windows-11 # https://support.microsoft.com/en-us/topic/how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d Push-Location -Path "C:\Windows\System32" - if ($global:OSDCloudDeploy.OSBuild -lt 26200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] C:\Windows\System32\bcdboot.exe C:\Windows /c /v" + if ($global:OSDCloudWorkflowInvoke.OSBuild -lt 26200) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running bcdboot.exe with legacy /v option." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] C:\Windows\System32\bcdboot.exe C:\Windows /c /v" $BCDBootOutput = & C:\Windows\System32\bcdboot.exe C:\Windows /c /v $BCDBootOutput | Out-File -FilePath "$LogPath\bcdboot.txt" -Force } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] C:\Windows\System32\bcdboot.exe C:\Windows /c /bootex" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running bcdboot.exe with /bootex option for newer OS build." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] C:\Windows\System32\bcdboot.exe C:\Windows /c /bootex" $BCDBootOutput = & C:\Windows\System32\bcdboot.exe C:\Windows /c /bootex $BCDBootOutput | Out-File -FilePath "$LogPath\bcdboot.txt" -Force } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] bcdboot output written to $LogPath\bcdboot.txt" Pop-Location - #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/4-install/step-install-downloadwindowsimage.ps1 b/OSDCloud/private/steps/4-install/step-install-downloadwindowsimage.ps1 index 06744c1..fb3c084 100644 --- a/OSDCloud/private/steps/4-install/step-install-downloadwindowsimage.ps1 +++ b/OSDCloud/private/steps/4-install/step-install-downloadwindowsimage.ps1 @@ -1,65 +1,44 @@ function step-install-downloadwindowsimage { [CmdletBinding()] param ( - $OperatingSystemObject = $global:OSDCloudWorkflowInvoke.OperatingSystemObject + $OperatingSystemCloudObject = $global:OSDCloudWorkflowInvoke.OperatingSystemCloudObject ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= # Is there an OperatingSystem Object? - if (-not ($OperatingSystemObject)) { - Write-Warning "[$(Get-Date -format s)] OperatingSystemObject is not set." + if (-not ($OperatingSystemCloudObject)) { + Write-Warning "[$(Get-Date -format s)] OperatingSystemCloudObject is not set." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit } #================================================= + $OperatingSystemFilePath = [string]$OperatingSystemCloudObject.FilePath + if ([string]::IsNullOrWhiteSpace($OperatingSystemFilePath)) { + $OperatingSystemFilePath = [string]$OperatingSystemCloudObject.Url + } + $OperatingSystemFileName = if ($OperatingSystemCloudObject.FileName) { [string]$OperatingSystemCloudObject.FileName } else { Split-Path $OperatingSystemFilePath -Leaf } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OperatingSystemFilePath: $OperatingSystemFilePath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OperatingSystemFileName: $OperatingSystemFileName" + #================================================= # Is there a FilePath? - if (-not ($OperatingSystemObject.FilePath)) { - Write-Warning "[$(Get-Date -format s)] OperatingSystemObject does not have a FilePath to validate." + if ([string]::IsNullOrWhiteSpace($OperatingSystemFilePath)) { + Write-Warning "[$(Get-Date -format s)] OperatingSystemCloudObject does not have a FilePath or Url to validate." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit } #================================================= - # Use selected local image when the frontend provided one. - if ($global:OSDCloudDeploy.LocalImageFileInfo) { - $LocalImageFilePath = if ($global:OSDCloudDeploy.LocalImageFileInfo.FullName) { $global:OSDCloudDeploy.LocalImageFileInfo.FullName } else { [string]$global:OSDCloudDeploy.LocalImageFileInfo } - $LocalImageFileInfo = Get-Item -LiteralPath $LocalImageFilePath -ErrorAction SilentlyContinue - - if ($LocalImageFileInfo.Extension -ieq '.iso') { - $DiskImage = Get-DiskImage -ImagePath $LocalImageFileInfo.FullName -ErrorAction SilentlyContinue - if ($DiskImage -and -not $DiskImage.Attached) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Mounting ISO: $($LocalImageFileInfo.FullName)" - $DiskImage = Mount-DiskImage -ImagePath $LocalImageFileInfo.FullName -PassThru -ErrorAction Stop - } - - $Volume = $DiskImage | Get-Volume -ErrorAction SilentlyContinue | Select-Object -First 1 - if ($Volume -and $Volume.DriveLetter) { - $ImagePath = @( - "$($Volume.DriveLetter):\sources\install.wim" - "$($Volume.DriveLetter):\sources\install.esd" - ) | Where-Object { Test-Path -LiteralPath $_ } | Select-Object -First 1 - - if ($ImagePath) { - $LocalImageFileInfo = Get-Item -LiteralPath $ImagePath - } - } - - if ($LocalImageFileInfo.Extension -ieq '.iso') { - Write-Warning "[$(Get-Date -format s)] Unable to find install.wim or install.esd in the selected ISO." - Write-Warning 'Press Ctrl+C to exit OSDCloud' - Start-Sleep -Seconds 86400 - exit - } - } - - if ($LocalImageFileInfo -and (Test-Path -LiteralPath $LocalImageFileInfo.FullName)) { - $global:OSDCloudWorkflowInvoke.FileInfoWindowsImage = $LocalImageFileInfo + # Use the selected cache object when initialization found an offline image. + if ($global:OSDCloudWorkflowInvoke.OperatingSystemCacheObject) { + $OperatingSystemCachePath = if ($global:OSDCloudWorkflowInvoke.OperatingSystemCacheObject.FullName) { $global:OSDCloudWorkflowInvoke.OperatingSystemCacheObject.FullName } else { [string]$global:OSDCloudWorkflowInvoke.OperatingSystemCacheObject } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing selected OperatingSystem cache path: $OperatingSystemCachePath" + if (Test-Path -LiteralPath $OperatingSystemCachePath) { + $global:OSDCloudWorkflowInvoke.FileInfoWindowsImage = Get-Item -LiteralPath $OperatingSystemCachePath $global:OSDCloudWorkflowInvoke.WindowsImagePath = $global:OSDCloudWorkflowInvoke.FileInfoWindowsImage.FullName - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] WindowsImagePath: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using cached Windows image: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] WindowsImagePath: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" return } } @@ -67,39 +46,51 @@ function step-install-downloadwindowsimage { # Is it reachable online? $IsOnline = $false try { - $WebRequest = Invoke-WebRequest -Uri $OperatingSystemObject.FilePath -UseBasicParsing -Method Head + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing OperatingSystem download URL with HEAD request." + $WebRequest = Invoke-WebRequest -Uri $OperatingSystemFilePath -UseBasicParsing -Method Head if ($WebRequest.StatusCode -eq 200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystemObject FilePath returned a 200 status code. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OperatingSystem download URL is reachable online." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystemCloudObject FilePath returned a 200 status code. OK." $IsOnline = $true } } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystemObject FilePath is not reachable." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystemCloudObject FilePath is not reachable." } #================================================= # Does the file exist on a Drive? $IsOffline = $false - $FileName = $OperatingSystemObject.FileName + $FileName = $OperatingSystemFileName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Searching local drives for OperatingSystem file: $FileName" $MatchingFiles = @() $MatchingFiles = Get-PSDrive -PSProvider FileSystem | ForEach-Object { Get-ChildItem "$($_.Name):\OSDCloud\OS\" -Include "$FileName" -File -Recurse -Force -ErrorAction Ignore } - + if ($MatchingFiles) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystemObject is available offline. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Offline OperatingSystem matches found: $(@($MatchingFiles).Count)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystemCloudObject is available offline. OK." + $FileInfo = $MatchingFiles | Select-Object -First 1 $IsOffline = $true } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OperatingSystemObject is not available offline." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OperatingSystemCloudObject is not available offline." } #================================================= # Nothing to do if it is unavailable online and offline if ($IsOnline -eq $false -and $IsOffline -eq $false) { - Write-Warning "[$(Get-Date -format s)] OperatingSystemObject is not available online or offline." + Write-Warning "[$(Get-Date -format s)] OperatingSystemCloudObject is not available online or offline." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit } + if ($FileInfo) { + $global:OSDCloudWorkflowInvoke.FileInfoWindowsImage = $FileInfo + $global:OSDCloudWorkflowInvoke.WindowsImagePath = $global:OSDCloudWorkflowInvoke.FileInfoWindowsImage.FullName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Using offline Windows image: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] WindowsImagePath: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" + return + } #================================================= # Create Download Directory $DownloadPath = "C:\OSDCloud\OS" @@ -110,35 +101,41 @@ function step-install-downloadwindowsimage { Path = $DownloadPath } if (!(Test-Path $ItemParams.Path -ErrorAction SilentlyContinue)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating download path: $($ItemParams.Path)" New-Item @ItemParams | Out-Null } #================================================= # Is there a USB drive available? $USBDrive = Get-DeviceUSBVolume | Where-Object { ($_.FileSystemLabel -match "OSDCloud|USB-DATA") } | ` Where-Object { $_.SizeGB -ge 16 } | Where-Object { $_.SizeRemainingGB -ge 10 } | Select-Object -First 1 - - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($OperatingSystemObject.FilePath)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] FileName: $FileName" + + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $OperatingSystemFilePath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] FileName: $FileName" if ($USBDrive) { - $USBDownloadPath = "$($USBDrive.DriveLetter):\OSDCloud\OS\$($OperatingSystemObject.OperatingSystem)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DownloadPath: $USBDownloadPath" + $USBDownloadPath = "$($USBDrive.DriveLetter):\OSDCloud\OS\$($OperatingSystemCloudObject.OperatingSystem)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] USB cache drive selected: $($USBDrive.DriveLetter); USBDownloadPath: $USBDownloadPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DownloadPath: $USBDownloadPath" if (-not (Test-Path $USBDownloadPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating USB download path: $USBDownloadPath" $null = New-Item -Path $USBDownloadPath -ItemType Directory -Force } - $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $OperatingSystemObject.FilePath -DestinationDirectory "$USBDownloadPath" -DestinationName $FileName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Downloading Windows image to USB cache." + $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $OperatingSystemFilePath -DestinationDirectory "$USBDownloadPath" -DestinationName $FileName if ($SaveWebFile) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Copy Offline OS to $DownloadPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Copying cached Windows image from $($SaveWebFile.FullName) to $DownloadPath." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Copy Offline OS to $DownloadPath" $null = Copy-Item -Path $SaveWebFile.FullName -Destination $DownloadPath -Force $FileInfo = Get-Item "$DownloadPath\$($SaveWebFile.Name)" } } else { # $SaveWebFile is a FileInfo Object, not a path - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DownloadPath: $DownloadPath" - $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $OperatingSystemObject.FilePath -DestinationDirectory $DownloadPath -ErrorAction Stop + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DownloadPath: $DownloadPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Downloading Windows image directly to $DownloadPath." + $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $OperatingSystemFilePath -DestinationDirectory $DownloadPath -ErrorAction Stop $FileInfo = $SaveWebFile } #================================================= @@ -153,15 +150,17 @@ function step-install-downloadwindowsimage { # Store this as a FileInfo Object $global:OSDCloudWorkflowInvoke.FileInfoWindowsImage = $FileInfo $global:OSDCloudWorkflowInvoke.WindowsImagePath = $global:OSDCloudWorkflowInvoke.FileInfoWindowsImage.FullName - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] WindowsImagePath: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Downloaded Windows image path: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] WindowsImagePath: $($global:OSDCloudWorkflowInvoke.WindowsImagePath)" #================================================= # Check the File Hash - if ($OperatingSystemObject.Sha1) { + if ($OperatingSystemCloudObject.Sha1) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Validating SHA1 hash for $($FileInfo.FullName)." $FileHash = (Get-FileHash -Path $FileInfo.FullName -Algorithm SHA1).Hash - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Verified ESD SHA1: $($OperatingSystemObject.Sha1)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloaded ESD SHA1: $FileHash" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Verified ESD SHA1: $($OperatingSystemCloudObject.Sha1)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloaded ESD SHA1: $FileHash" - if ($OperatingSystemObject.Sha1 -notmatch $FileHash) { + if ($OperatingSystemCloudObject.Sha1 -notmatch $FileHash) { Write-Warning "[$(Get-Date -format s)] Unable to deploy this Operating System." Write-Warning "[$(Get-Date -format s)] Downloaded ESD SHA1 does not match the verified Microsoft ESD SHA1." Write-Warning 'Press Ctrl+C to exit OSDCloud' @@ -171,12 +170,13 @@ function step-install-downloadwindowsimage { Write-Host -ForegroundColor Green "[$(Get-Date -format s)] Downloaded ESD SHA1 matches the verified Microsoft ESD SHA1. OK." } } - if ($OperatingSystemObject.Sha256) { + if ($OperatingSystemCloudObject.Sha256) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Validating SHA256 hash for $($FileInfo.FullName)." $FileHash = (Get-FileHash -Path $FileInfo.FullName -Algorithm SHA256).Hash - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Verified ESD SHA256: $($OperatingSystemObject.Sha256)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Downloaded ESD SHA256: $FileHash" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Verified ESD SHA256: $($OperatingSystemCloudObject.Sha256)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Downloaded ESD SHA256: $FileHash" - if ($OperatingSystemObject.Sha256 -notmatch $FileHash) { + if ($OperatingSystemCloudObject.Sha256 -notmatch $FileHash) { Write-Warning "[$(Get-Date -format s)] Unable to deploy this Operating System." Write-Warning "[$(Get-Date -format s)] Downloaded ESD SHA256 does not match the verified Microsoft ESD SHA256." Write-Warning 'Press Ctrl+C to exit OSDCloud' @@ -187,7 +187,6 @@ function step-install-downloadwindowsimage { } } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/4-install/step-install-expandwindowsimage.ps1 b/OSDCloud/private/steps/4-install/step-install-expandwindowsimage.ps1 index dfd525b..f648e09 100644 --- a/OSDCloud/private/steps/4-install/step-install-expandwindowsimage.ps1 +++ b/OSDCloud/private/steps/4-install/step-install-expandwindowsimage.ps1 @@ -2,12 +2,9 @@ function step-install-expandwindowsimage { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] C:\" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] C:\" #================================================= # Create ScratchDirectory $Params = @{ @@ -17,22 +14,28 @@ function step-install-expandwindowsimage { Path = 'C:\OSDCloud\Temp' } if (-not (Test-Path $Params.Path -ErrorAction SilentlyContinue)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating scratch directory: $($Params.Path)" New-Item @Params | Out-Null } #================================================= # Build the Params - if ($global:OSDCloudDeploy.LocalImageFileDestination.FullName -match '.swm') { + $windowsImagePath = [string]$global:OSDCloudWorkflowInvoke.WindowsImagePath + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WindowsImagePath: $windowsImagePath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WindowsImageIndex: $($global:OSDCloudWorkflowInvoke.WindowsImageIndex)" + if ($windowsImagePath -match '\.swm$') { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Split WIM/SWM image detected. Building Expand-WindowsImage parameters with SplitImageFilePattern." #TODO - Add support for multiple SWM files $Params = @{ ApplyPath = 'C:\' ErrorAction = 'Stop' - ImagePath = $global:OSDCloudDeploy.LocalImageFileDestination.FullName - Name = (Get-WindowsImage -ImagePath $global:OSDCloudDeploy.LocalImageFileDestination.FullName).ImageName + ImagePath = $windowsImagePath + Name = (Get-WindowsImage -ImagePath $windowsImagePath).ImageName ScratchDirectory = 'C:\OSDCloud\Temp' - SplitImageFilePattern = ($global:OSDCloudDeploy.LocalImageFileDestination.FullName).replace('install.swm', 'install*.swm') + SplitImageFilePattern = $windowsImagePath.replace('install.swm', 'install*.swm') } } else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Standard Windows image detected. Building Expand-WindowsImage parameters with ImageIndex." $Params = @{ ApplyPath = 'C:\' ErrorAction = 'Stop' @@ -45,8 +48,9 @@ function step-install-expandwindowsimage { $global:OSDCloudWorkflowInvoke.ParamsExpandWindowsImage = $Params #================================================= # Expand WindowsImage - if ($IsWinPE -eq $true) { + if ($global:OSDCoreDevice.IsWinPE -eq $true) { try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Expand-WindowsImage with parameters: $($Params | Out-String)" Expand-WindowsImage @Params | Out-Null } catch { @@ -57,6 +61,9 @@ function step-install-expandwindowsimage { exit } } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Device is not WinPE; skipping Expand-WindowsImage execution." + } #================================================= # Remove OS after expanding the image $Params = @{ @@ -65,10 +72,10 @@ function step-install-expandwindowsimage { Path = 'C:\OSDCloud\Temp' } if (Test-Path $Params.Path -ErrorAction SilentlyContinue) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing scratch directory: $($Params.Path)" Remove-Item @Params | Out-Null } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/4-install/step-install-getwindowsedition.ps1 b/OSDCloud/private/steps/4-install/step-install-getwindowsedition.ps1 index 698931c..fe3b8f0 100644 --- a/OSDCloud/private/steps/4-install/step-install-getwindowsedition.ps1 +++ b/OSDCloud/private/steps/4-install/step-install-getwindowsedition.ps1 @@ -2,14 +2,14 @@ function step-install-getwindowsedition { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Get-WindowsEdition against offline path C:\." $WindowsEdition = (Get-WindowsEdition -Path 'C:\' -ErrorAction Stop | Out-String).Trim() - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $WindowsEdition" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $WindowsEdition" $global:OSDCloudWorkflowInvoke.WindowsEdition = $WindowsEdition + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WindowsEdition stored in workflow state." } catch { Write-Warning "[$(Get-Date -format s)] Unable to get Windows Edition. OK." @@ -19,7 +19,6 @@ function step-install-getwindowsedition { $Error.Clear() } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/4-install/step-install-getwindowsimageindex.ps1 b/OSDCloud/private/steps/4-install/step-install-getwindowsimageindex.ps1 index 2037a14..078bb32 100644 --- a/OSDCloud/private/steps/4-install/step-install-getwindowsimageindex.ps1 +++ b/OSDCloud/private/steps/4-install/step-install-getwindowsimageindex.ps1 @@ -13,13 +13,9 @@ function step-install-getwindowsimageindex { Contains the FullName of the WindowsImage to be expanded. This variable was created by step-install-downloadwindowsimage - $global:OSDCloudDeploy.OSEditionId + $global:OSDCloudWorkflowInvoke.OSEditionId Contains the EditionId of the WindowsImage to be expanded. - This property may not exist and is created by the Frontend. - - $global:OSDCloudDeploy.LocalImageName - Contains the ImageName of the WindowsImage to be expanded. - This property may not exist and is created by the Frontend. + This property is copied from the pre-deployment state before workflow execution. .OUTPUTS $global:OSDCloudWorkflowInvoke.WindowsImageIndex @@ -33,27 +29,27 @@ function step-install-getwindowsimageindex { [Parameter(Mandatory = $false)] [System.String] - $EditionId = $global:OSDCloudDeploy.OSEditionId, + $EditionId = $global:OSDCloudWorkflowInvoke.OSEditionId, [Parameter(Mandatory = $false)] [System.String] - $ImageName = $global:OSDCloudDeploy.LocalImageName + $ImageName ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Do we have a WindowsImage to test? + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] ImagePath: $ImagePath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] EditionId: $EditionId; ImageName: $ImageName" + + # Do we have a WindowsImage to test? if ($null -eq $ImagePath) { Write-Warning "[$(Get-Date -format s)] WindowsImage does not have an ImagePath." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit } - #endregion #================================================= - #region Does the Path exist? + # Does the Path exist? if (-not (Test-Path $ImagePath)) { Write-Warning "[$(Get-Date -format s)] WindowsImage does not exist at the ImagePath." Write-Warning $ImagePath @@ -61,10 +57,10 @@ function step-install-getwindowsimageindex { Start-Sleep -Seconds 86400 exit } - #endregion #================================================= - #region Does Get-WindowsImage work? + # Does Get-WindowsImage work? try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Get-WindowsImage against $ImagePath." $WindowsImage = Get-WindowsImage -ImagePath $ImagePath -ErrorAction Stop } catch { @@ -74,28 +70,29 @@ function step-install-getwindowsimageindex { Start-Sleep -Seconds 86400 exit } - #endregion #================================================= - #region Is there only one ImageIndex? + # Is there only one ImageIndex? $WindowsImageCount = ($WindowsImage).Count + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WindowsImageCount: $WindowsImageCount" if ($WindowsImageCount -eq 1) { - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDCloud only found a single ImageIndex to expand" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDCloud only found a single ImageIndex to expand" $global:OSDCloudWorkflowInvoke.WindowsImageIndex = 1 + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Single image found; WindowsImageIndex set to 1." return } - #endregion #================================================= - #region Get the ImageIndex of the ImageName + # Get the ImageIndex of the ImageName if ($ImageName) { $ImageIndex = ($WindowsImage | Where-Object { $_.ImageName -eq $ImageName }).ImageIndex $global:OSDCloudWorkflowInvoke.WindowsImageIndex = $ImageIndex + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] ImageName match set WindowsImageIndex to $ImageIndex." return } - #endregion #================================================= - #region Get the ImageIndex of the EditionId + # Get the ImageIndex of the EditionId if ($EditionId) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Searching Windows image indexes for EditionId $EditionId." $MatchingWindowsImage = $WindowsImage | ` ForEach-Object { Get-WindowsImage -ImagePath $ImagePath -Index $_.ImageIndex } | ` Where-Object { $_.EditionId -eq $EditionId } @@ -103,36 +100,36 @@ function step-install-getwindowsimageindex { if ($MatchingWindowsImage -and $MatchingWindowsImage.Count -eq 1) { $global:OSDCloudWorkflowInvoke.WindowsImage = $MatchingWindowsImage $global:OSDCloudWorkflowInvoke.WindowsImageIndex = $MatchingWindowsImage.ImageIndex - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] EditionId $EditionId found at ImageIndex $($global:OSDCloudWorkflowInvoke.WindowsImageIndex)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] EditionId match set WindowsImageIndex to $($global:OSDCloudWorkflowInvoke.WindowsImageIndex)." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] EditionId $EditionId found at ImageIndex $($global:OSDCloudWorkflowInvoke.WindowsImageIndex)" return } } - #endregion #================================================= - #region Unable to determine which ImageIndex to apply, so prompt the user to select the ImageIndex + # Unable to determine which ImageIndex to apply, so prompt the user to select the ImageIndex Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] Select the WindowsImage to expand" $SelectWindowsImage = $WindowsImage | Where-Object { $_.ImageSize -gt 3000000000 } if ($SelectWindowsImage) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Prompting user to select from $(@($SelectWindowsImage).Count) image indexes." $SelectWindowsImage | Select-Object -Property ImageIndex, ImageName | Format-Table | Out-Host - + do { $SelectReadHost = Read-Host -Prompt 'Select an WindowsImage to expand by ImageIndex [Number]' } until (((($SelectReadHost -ge 0) -and ($SelectReadHost -in $SelectWindowsImage.ImageIndex)))) - + $global:OSDCloudWorkflowInvoke.WindowsImageIndex = $SelectReadHost + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] User selected WindowsImageIndex $SelectReadHost." return } - #endregion #================================================= - #region Everything we tried failed, so exit OSDCloud + # Everything we tried failed, so exit OSDCloud Write-Warning "[$(Get-Date -format s)] Unable to determine the ImageIndex to apply." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/4-install/step-install-removewindowsimage.ps1 b/OSDCloud/private/steps/4-install/step-install-removewindowsimage.ps1 index f33eb8b..a45300d 100644 --- a/OSDCloud/private/steps/4-install/step-install-removewindowsimage.ps1 +++ b/OSDCloud/private/steps/4-install/step-install-removewindowsimage.ps1 @@ -2,15 +2,13 @@ function step-install-removewindowsimage { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main if (Test-Path "C:\OSDCloud") { try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing temporary Windows image directory: C:\OSDCloud" Remove-Item -Path "C:\OSDCloud" -Recurse -Force -ErrorAction Stop | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removed C:\OSDCloud" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removed C:\OSDCloud" } catch { Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] Unable to remove C:\OSDCloud" @@ -20,9 +18,10 @@ function step-install-removewindowsimage { $Error.Clear() } } - #endregion + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] C:\OSDCloud was not found. Nothing to remove." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/4-install/step-install-restartosdcloudlogs.ps1 b/OSDCloud/private/steps/4-install/step-install-restartosdcloudlogs.ps1 index 020558b..ac5ac52 100644 --- a/OSDCloud/private/steps/4-install/step-install-restartosdcloudlogs.ps1 +++ b/OSDCloud/private/steps/4-install/step-install-restartosdcloudlogs.ps1 @@ -2,12 +2,10 @@ function step-install-restartosdcloudlogs { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main $LogsPath = "C:\Windows\Temp\osdcloud-logs" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LogsPath: $LogsPath" $Params = @{ Path = $LogsPath @@ -17,16 +15,17 @@ function step-install-restartosdcloudlogs { } if (-not (Test-Path $Params.Path)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating logs path: $($Params.Path)" New-Item @Params | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Moving WinPE transcript logs into offline Windows log path." $null = robocopy "X:\Windows\Temp\osdcloud-logs" "$LogsPath" transcript.log /e /move /ndl /nfl /r:0 /w:0 $TranscriptFullName = Join-Path $LogsPath "transcript-$((Get-Date).ToString('yyyy-MM-dd-HHmmss')).log" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Restarting transcript: $TranscriptFullName" $null = Start-Transcript -Path $TranscriptFullName -ErrorAction SilentlyContinue - #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Disk.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Disk.ps1 index ee40f86..ebb5594 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Disk.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Disk.ps1 @@ -7,7 +7,7 @@ to the running Windows installation. It uses DISM (Deployment Image Servicing and Management) to inject drivers with the Add-WindowsDriver cmdlet. Drivers are applied to the C:\ drive and are logged for troubleshooting purposes. - + This is part of the OSDCloud deployment workflow and runs during the driver injection phase. .NOTES @@ -20,7 +20,7 @@ .EXAMPLE step-Add-WindowsDriver-Disk - + Adds all drivers from the OSDCloud drivers directory to the system. .OUTPUTS @@ -30,22 +30,27 @@ function step-Add-WindowsDriver-Disk { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" + #================================================= $Step = $global:OSDCloudCurrentStep #================================================= $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-drivers-disk" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; LogPath: $LogPath" if (Test-Path -Path $DriverPath) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver from disk driver path." Add-WindowsDriver -Path "C:\" -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-disk.log" -ErrorAction SilentlyContinue } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath was not found. Skipping disk driver injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverFolder.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverFolder.ps1 index f4d67cf..168b588 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverFolder.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverFolder.ps1 @@ -10,11 +10,9 @@ selected removable media changes drive letters, the step re-resolves each saved driver folder by scanning current file system drives for the same relative path. .PARAMETER DriverFolderPath -Path(s) to folders that contain driver INF files and subfolders. When omitted, values -are read from $global:OSDCloudWorkflowInvoke.DriverFolderPaths and then -$global:OSDCloudWorkflowInvoke.DriverFolderPath for backward compatibility. Legacy -absolute paths are re-resolved by their OSDCloud\Drivers relative suffix when the -original drive letter is no longer valid. +Path(s) to folders that contain driver INF files and subfolders. Absolute paths are +re-resolved by their OSDCloud\Drivers relative suffix when the original drive letter +is no longer valid. .EXAMPLE step-Add-WindowsDriver-DriverFolder -DriverFolderPath 'D:\DriverPack' @@ -28,7 +26,7 @@ function step-Add-WindowsDriver-DriverFolder { [CmdletBinding()] param ( [System.String[]] - $DriverFolderPath = @($global:OSDCloudWorkflowInvoke.DriverFolderPaths) + $DriverFolderPath ) #================================================= $startMessage = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" @@ -39,6 +37,7 @@ function step-Add-WindowsDriver-DriverFolder { $offlinePath = 'C:\' $dismLogPath = Join-Path -Path $logPath -ChildPath 'dism-add-windowsdriver-driverfolder.log' $volumeMetadataCache = @{} + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverFolderPath count: $(@($DriverFolderPath).Count); LogPath: $logPath; OfflinePath: $offlinePath" function Get-DriveRootFromPath { param( @@ -154,11 +153,13 @@ function step-Add-WindowsDriver-DriverFolder { ) if (-not $candidatePaths -or $candidatePaths.Count -eq 0) { + Write-Verbose "[$(Get-Date -format s)] No current drives contain relative driver folder path $relativePath" Write-Warning "[$(Get-Date -format s)] DriverFolderPath was not found: $originalPath" return $null } if ($candidatePaths.Count -eq 1) { + Write-Verbose "[$(Get-Date -format s)] Resolved driver folder candidate: $($candidatePaths[0])" return $candidatePaths[0] } @@ -186,12 +187,6 @@ function step-Add-WindowsDriver-DriverFolder { return $null } - if (-not $DriverFolderPath -or $DriverFolderPath.Count -eq 0) { - if (-not [string]::IsNullOrWhiteSpace([string]$global:OSDCloudWorkflowInvoke.DriverFolderPath)) { - $DriverFolderPath = @([string]$global:OSDCloudWorkflowInvoke.DriverFolderPath) - } - } - $validDriverFolderPaths = @($DriverFolderPath | Where-Object { -not [string]::IsNullOrWhiteSpace([string]$_) } | Select-Object -Unique) @@ -202,11 +197,6 @@ function step-Add-WindowsDriver-DriverFolder { } $selectionLookup = @{} - foreach ($selection in @($global:OSDCloudWorkflowInvoke.DriverFolderSelections)) { - if ($selection -and -not [string]::IsNullOrWhiteSpace([string]$selection.Path)) { - $selectionLookup[[string]$selection.Path] = $selection - } - } $driverFolderSelections = @($validDriverFolderPaths | ForEach-Object { $driverPath = [string]$_ @@ -246,6 +236,7 @@ function step-Add-WindowsDriver-DriverFolder { } if (-not (Test-Path -LiteralPath $logPath)) { + Write-Verbose "[$(Get-Date -format s)] Creating driver folder DISM log path: $logPath" New-Item -ItemType Directory -Path $logPath -Force | Out-Null } diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverPack.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverPack.ps1 index 303aaa2..0615ecb 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverPack.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-DriverPack.ps1 @@ -2,22 +2,26 @@ function step-Add-WindowsDriver-DriverPack { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-driverpack-expand" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; LogPath: $LogPath" if (Test-Path -Path $DriverPath) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver from expanded driver pack path." Add-WindowsDriver -Path "C:\" -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-driverpack.log" -ErrorAction SilentlyContinue | Out-Null } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath was not found. Skipping driver pack injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Firmware.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Firmware.ps1 index 1e049ad..c35b400 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Firmware.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Firmware.ps1 @@ -2,27 +2,32 @@ function step-Add-WindowsDriver-Firmware { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - if ($global:OSDCloudDeploy.SkipFirmwareUpdate -eq $true) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Firmware update steps were disabled by -SkipFirmwareUpdate. Skip." + $Step = $global:OSDCloudCurrentStep + if ($global:OSDCloudWorkflowInvoke.SkipFirmwareUpdate -eq $true) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] SkipFirmwareUpdate is true." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Firmware update steps were disabled by -SkipFirmwareUpdate. Skip." return } $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-drivers-firmware" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; LogPath: $LogPath" if (Test-Path -Path $DriverPath) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver from firmware driver path." Add-WindowsDriver -Path "C:\" -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-firmware.log" -ErrorAction SilentlyContinue } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath was not found. Skipping firmware driver injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-MSUpdate.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-MSUpdate.ps1 index 5e603b5..ffc4f79 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-MSUpdate.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-MSUpdate.ps1 @@ -2,22 +2,26 @@ function step-Add-WindowsDriver-MSUpdate { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-drivers-msupdate" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; LogPath: $LogPath" if (Test-Path -Path $DriverPath) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver from Microsoft Update driver path." Add-WindowsDriver -Path "C:\" -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-msupdate.log" -ErrorAction SilentlyContinue } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath was not found. Skipping Microsoft Update driver injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Net.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Net.ps1 index 580bbf7..3dfeb9c 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Net.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Net.ps1 @@ -2,22 +2,26 @@ function step-Add-WindowsDriver-Net { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-drivers-net" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; LogPath: $LogPath" if (Test-Path -Path $DriverPath) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver from network driver path." Add-WindowsDriver -Path "C:\" -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-net.log" -ErrorAction SilentlyContinue } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath was not found. Skipping network driver injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OSDFolder.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OSDFolder.ps1 index b8c5898..0803b1a 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OSDFolder.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OSDFolder.ps1 @@ -2,9 +2,7 @@ function step-Add-WindowsDriver-OSDFolder { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= $LogPath = "C:\Windows\Temp\osdcloud-logs" $OfflinePath = "C:\" @@ -12,25 +10,32 @@ function step-Add-WindowsDriver-OSDFolder { $osdManufacturer = $global:OSDCoreDevice.OSDManufacturer $osdModel = $global:OSDCoreDevice.OSDModel $osdProduct = $global:OSDCoreDevice.OSDProduct + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDManufacturer: $osdManufacturer; OSDModel: $osdModel; OSDProduct: $osdProduct" if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } $drives = Get-PSDrive -PSProvider FileSystem + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] File system drive count: $(@($drives).Count)" $expandRoot = "C:\Windows\Temp\osdcloud-osdfolder-expand" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] ExpandRoot: $expandRoot" foreach ($drive in $drives) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Searching drive $($drive.Name): for OSD folder driver matches." #region OSDManufacturer — name starts with OSDManufacturer value if (-not [string]::IsNullOrWhiteSpace($osdManufacturer)) { $parentPath = "$($drive.Name):\OSDCloud\DriverPacks\OSDManufacturer" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Checking OSDManufacturer parent path: $parentPath" if (Test-Path -Path $parentPath) { # Folder $matchedDirs = Get-ChildItem -Path $parentPath -Directory -ErrorAction SilentlyContinue | Where-Object { $_.Name -like "$osdManufacturer*" } foreach ($dir in $matchedDirs) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDManufacturer folder match: $($dir.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDManufacturer folder match: $($dir.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for OSDManufacturer folder match." Add-WindowsDriver -Path $OfflinePath -Driver $dir.FullName -Recurse -ForceUnsigned ` -LogPath "$LogPath\dism-add-windowsdriver-osdfolder.log" ` -ErrorAction SilentlyContinue | Out-Null @@ -40,18 +45,23 @@ function step-Add-WindowsDriver-OSDFolder { Where-Object { $_.BaseName -like "$osdManufacturer*" } foreach ($zip in $matchedZips) { $expandPath = Join-Path -Path $expandRoot -ChildPath $zip.BaseName - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDManufacturer zip match: $($zip.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDManufacturer zip match: $($zip.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Expanding OSDManufacturer zip to $expandPath" Expand-Archive -Path $zip.FullName -DestinationPath $expandPath -Force + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for expanded OSDManufacturer zip." Add-WindowsDriver -Path $OfflinePath -Driver $expandPath -Recurse -ForceUnsigned ` -LogPath "$LogPath\dism-add-windowsdriver-osdfolder.log" ` -ErrorAction SilentlyContinue | Out-Null - Remove-Item -Path $expandPath -Recurse -Force -ErrorAction SilentlyContinue + if (Test-Path -LiteralPath $expandPath) { + Remove-Item -LiteralPath $expandPath -Recurse -Force -ErrorAction SilentlyContinue + } } # PS1 $matchedScripts = Get-ChildItem -Path $parentPath -File -Filter "*.ps1" -ErrorAction SilentlyContinue | Where-Object { $_.BaseName -like "$osdManufacturer*" } foreach ($script in $matchedScripts) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDManufacturer ps1 match: $($script.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDManufacturer ps1 match: $($script.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Invoking OSDManufacturer script match: $($script.FullName)" & $script.FullName } } @@ -61,12 +71,14 @@ function step-Add-WindowsDriver-OSDFolder { #region OSDModel — name contains OSDModel value if (-not [string]::IsNullOrWhiteSpace($osdModel)) { $parentPath = "$($drive.Name):\OSDCloud\DriverPacks\OSDModel" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Checking OSDModel parent path: $parentPath" if (Test-Path -Path $parentPath) { # Folder $matchedDirs = Get-ChildItem -Path $parentPath -Directory -ErrorAction SilentlyContinue | Where-Object { $_.Name -like "*$osdModel*" } foreach ($dir in $matchedDirs) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDModel folder match: $($dir.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDModel folder match: $($dir.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for OSDModel folder match." Add-WindowsDriver -Path $OfflinePath -Driver $dir.FullName -Recurse -ForceUnsigned ` -LogPath "$LogPath\dism-add-windowsdriver-osdfolder.log" ` -ErrorAction SilentlyContinue | Out-Null @@ -76,18 +88,23 @@ function step-Add-WindowsDriver-OSDFolder { Where-Object { $_.BaseName -like "*$osdModel*" } foreach ($zip in $matchedZips) { $expandPath = Join-Path -Path $expandRoot -ChildPath $zip.BaseName - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDModel zip match: $($zip.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDModel zip match: $($zip.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Expanding OSDModel zip to $expandPath" Expand-Archive -Path $zip.FullName -DestinationPath $expandPath -Force + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for expanded OSDModel zip." Add-WindowsDriver -Path $OfflinePath -Driver $expandPath -Recurse -ForceUnsigned ` -LogPath "$LogPath\dism-add-windowsdriver-osdfolder.log" ` -ErrorAction SilentlyContinue | Out-Null - Remove-Item -Path $expandPath -Recurse -Force -ErrorAction SilentlyContinue + if (Test-Path -LiteralPath $expandPath) { + Remove-Item -LiteralPath $expandPath -Recurse -Force -ErrorAction SilentlyContinue + } } # PS1 $matchedScripts = Get-ChildItem -Path $parentPath -File -Filter "*.ps1" -ErrorAction SilentlyContinue | Where-Object { $_.BaseName -like "*$osdModel*" } foreach ($script in $matchedScripts) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDModel ps1 match: $($script.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDModel ps1 match: $($script.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Invoking OSDModel script match: $($script.FullName)" & $script.FullName } } @@ -97,12 +114,14 @@ function step-Add-WindowsDriver-OSDFolder { #region OSDProduct — name contains OSDProduct value if (-not [string]::IsNullOrWhiteSpace($osdProduct)) { $parentPath = "$($drive.Name):\OSDCloud\DriverPacks\OSDProduct" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Checking OSDProduct parent path: $parentPath" if (Test-Path -Path $parentPath) { # Folder $matchedDirs = Get-ChildItem -Path $parentPath -Directory -ErrorAction SilentlyContinue | Where-Object { $_.Name -like "*$osdProduct*" } foreach ($dir in $matchedDirs) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDProduct folder match: $($dir.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDProduct folder match: $($dir.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for OSDProduct folder match." Add-WindowsDriver -Path $OfflinePath -Driver $dir.FullName -Recurse -ForceUnsigned ` -LogPath "$LogPath\dism-add-windowsdriver-osdfolder.log" ` -ErrorAction SilentlyContinue | Out-Null @@ -112,18 +131,23 @@ function step-Add-WindowsDriver-OSDFolder { Where-Object { $_.BaseName -like "*$osdProduct*" } foreach ($zip in $matchedZips) { $expandPath = Join-Path -Path $expandRoot -ChildPath $zip.BaseName - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDProduct zip match: $($zip.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDProduct zip match: $($zip.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Expanding OSDProduct zip to $expandPath" Expand-Archive -Path $zip.FullName -DestinationPath $expandPath -Force + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for expanded OSDProduct zip." Add-WindowsDriver -Path $OfflinePath -Driver $expandPath -Recurse -ForceUnsigned ` -LogPath "$LogPath\dism-add-windowsdriver-osdfolder.log" ` -ErrorAction SilentlyContinue | Out-Null - Remove-Item -Path $expandPath -Recurse -Force -ErrorAction SilentlyContinue + if (Test-Path -LiteralPath $expandPath) { + Remove-Item -LiteralPath $expandPath -Recurse -Force -ErrorAction SilentlyContinue + } } # PS1 $matchedScripts = Get-ChildItem -Path $parentPath -File -Filter "*.ps1" -ErrorAction SilentlyContinue | Where-Object { $_.BaseName -like "*$osdProduct*" } foreach ($script in $matchedScripts) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] OSDProduct ps1 match: $($script.FullName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDProduct ps1 match: $($script.FullName)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Invoking OSDProduct script match: $($script.FullName)" & $script.FullName } } @@ -131,7 +155,6 @@ function step-Add-WindowsDriver-OSDFolder { #endregion } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinOS.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinOS.ps1 index 57196f6..bbf22eb 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinOS.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinOS.ps1 @@ -2,22 +2,26 @@ function step-Add-WindowsDriver-OemWinOS { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-drivers-winpe" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; LogPath: $LogPath" if (Test-Path -Path $DriverPath) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver from exported WinPE driver path." Add-WindowsDriver -Path "C:\" -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-winpe.log" -ErrorAction SilentlyContinue | Out-Null } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath was not found. Skipping WinOS OEM driver injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinRE.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinRE.ps1 index ee278f0..2400502 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinRE.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-OemWinRE.ps1 @@ -2,20 +2,22 @@ function step-Add-WindowsDriver-OemWinRE { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-drivers-winpe" $WinrePath = "C:\Windows\System32\Recovery\winre.wim" $WinreMountPath = "C:\Windows\Temp\mount-winre" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; WinrePath: $WinrePath; WinreMountPath: $WinreMountPath; LogPath: $LogPath" if ((Test-Path -Path $DriverPath) -and (Test-Path -Path $WinrePath)) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } if (-not (Test-Path -Path $WinreMountPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating WinRE mount path: $WinreMountPath" New-Item -ItemType Directory -Path $WinreMountPath -Force | Out-Null } @@ -25,20 +27,29 @@ function step-Add-WindowsDriver-OemWinRE { Index = 1 LogPath = "$LogPath\dism-mount-windowsimage-winre.log" } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Mounting WinRE image with parameters: $($Params | Out-String)" $MountWinRE = Mount-WindowsImage @Params | Out-Null if ($MountWinRE) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver against mounted WinRE image." Add-WindowsDriver -Path $WinreMountPath -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-winre.log" -ErrorAction SilentlyContinue } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Mount-WindowsImage did not return a mount result." + } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Dismounting WinRE image and saving changes." Dismount-WindowsImage -Path $WinreMountPath -Save -LogPath "$LogPath\dism-dismount-windowsimage-winre.log" -ErrorAction SilentlyContinue | Out-Null if (Test-Path -Path $WinreMountPath) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing WinRE mount path: $WinreMountPath" Remove-Item -Path $WinreMountPath -Recurse -Force -ErrorAction SilentlyContinue } } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath or WinrePath was not found. Skipping WinRE driver injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Scsi.ps1 b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Scsi.ps1 index 9551567..8391055 100644 --- a/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Scsi.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Add-WindowsDriver-Scsi.ps1 @@ -2,22 +2,26 @@ function step-Add-WindowsDriver-Scsi { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep $LogPath = "C:\Windows\Temp\osdcloud-logs" $DriverPath = "C:\Windows\Temp\osdcloud-drivers-scsi" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath: $DriverPath; LogPath: $LogPath" if (Test-Path -Path $DriverPath) { if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver from SCSI driver path." Add-WindowsDriver -Path "C:\" -Driver "$DriverPath" -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-scsi.log" -ErrorAction SilentlyContinue } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPath was not found. Skipping SCSI driver injection." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Export-WindowsDriver-OemWinPE.ps1 b/OSDCloud/private/steps/5-drivers/step-Export-WindowsDriver-OemWinPE.ps1 index 13d2884..cab8c9c 100644 --- a/OSDCloud/private/steps/5-drivers/step-Export-WindowsDriver-OemWinPE.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Export-WindowsDriver-OemWinPE.ps1 @@ -10,15 +10,20 @@ function step-Export-WindowsDriver-OemWinPE { #================================================= # Output Path $OutputPath = "C:\Windows\Temp\osdcloud-drivers-winpe" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OutputPath: $OutputPath" if (-not (Test-Path -Path $OutputPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating output path: $OutputPath" New-Item -ItemType Directory -Path $OutputPath -Force | Out-Null } $LogPath = "C:\Windows\Temp\osdcloud-logs" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LogPath: $LogPath" if (-not (Test-Path -Path $LogPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating log path: $LogPath" New-Item -ItemType Directory -Path $LogPath -Force | Out-Null } #================================================= # Build the list of devices using pnputil.exe, as the /format xml switch is not supported in older versions of WinPE. + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running pnputil.exe /enum-devices /connected" $output = & pnputil.exe /enum-devices /connected $devices = @() $currentDevice = @{} @@ -44,6 +49,7 @@ function step-Export-WindowsDriver-OemWinPE { $devices += [PSCustomObject]$currentDevice } $PnputilDevices = $devices | Where-Object { $_.DriverName -match 'oem' } | Sort-Object DriverName -Unique | Sort-Object ClassName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OEM pnputil device count: $(@($PnputilDevices).Count)" # Classes to Export $ExportClass = @( @@ -104,21 +110,26 @@ function step-Export-WindowsDriver-OemWinPE { #================================================= # Export WinPE Drivers if ($ExportClass -notcontains $OemDriver.ClassName) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [$($OemDriver.ClassName)] $ManufacturerName $($OemDriver.DeviceDescription)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Skipping class $($OemDriver.ClassName) because it is not in ExportClass." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($OemDriver.ClassName)] $ManufacturerName $($OemDriver.DeviceDescription)" continue } Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [$($OemDriver.ClassName)] $ManufacturerName $($OemDriver.DeviceDescription)" $ExportPath = "$OutputPath\$($OemDriver.ClassName)\$($ManufacturerName) $($FolderName)" if (-not (Test-Path -Path $ExportPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating export path: $ExportPath" New-Item -ItemType Directory -Path $ExportPath -Force | Out-Null } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Exporting driver $($OemDriver.DriverName) to $ExportPath" $null = & pnputil.exe /export-driver $OemDriver.DriverName $ExportPath #================================================= } $PnputilDevices | Out-File -FilePath "$OutputPath\pnputil.txt" -Encoding utf8 } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No OEM pnputil devices were found to export." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-DriverPack.ps1 b/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-DriverPack.ps1 index 3f6142e..1ebe624 100644 --- a/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-DriverPack.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-DriverPack.ps1 @@ -4,34 +4,39 @@ function step-Save-WindowsDriver-DriverPack { [System.String] $DriverPackName = $global:OSDCloudWorkflowInvoke.DriverPackName, - $DriverPackObject = $global:OSDCloudWorkflowInvoke.DriverPackObject + $DriverPackCloudObject = $global:OSDCloudWorkflowInvoke.DriverPackCloudObject ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName: $DriverPackName" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackCloudObject.Url: $($DriverPackCloudObject.Url)" + # Is DriverPackName set to None? if ($DriverPackName -eq 'None') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPackName is set to None. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName bypass is None." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPackName is set to None. OK." return } #================================================= # Is DriverPackName set to Microsoft Update Catalog? if ($DriverPackName -eq 'Microsoft Update Catalog') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPackName is set to Microsoft Update Catalog. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName bypass is Microsoft Update Catalog." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPackName is set to Microsoft Update Catalog. OK." return } #================================================= # Is there a DriverPack Object? - if (-not ($DriverPackObject)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPackObject is not set. OK." + if (-not ($DriverPackCloudObject)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackCloudObject was not provided." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPackCloudObject is not set. OK." return } #================================================= # Is there a URL? - if (-not $($DriverPackObject.Url)) { - Write-Warning "[$(Get-Date -format s)] DriverPackObject does not have a Url to validate." + if (-not $($DriverPackCloudObject.Url)) { + Write-Warning "[$(Get-Date -format s)] DriverPackCloudObject does not have a Url to validate." Write-Warning 'Press Ctrl+C to exit OSDCloud' Start-Sleep -Seconds 86400 exit @@ -40,45 +45,51 @@ function step-Save-WindowsDriver-DriverPack { # Is it reachable online? $IsOnline = $false try { - $WebRequest = Invoke-WebRequest -Uri $DriverPackObject.Url -UseBasicParsing -Method Head + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing DriverPack URL with HEAD request." + $WebRequest = Invoke-WebRequest -Uri $DriverPackCloudObject.Url -UseBasicParsing -Method Head if ($WebRequest.StatusCode -eq 200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack URL returned a 200 status code. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPack URL is reachable online." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack URL returned a 200 status code. OK." $IsOnline = $true } } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack URL is not reachable." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack URL is not reachable online and cannot be downloaded." } #================================================= # Does the file exist on a Drive? $IsOffline = $false - $FileName = $DriverPackObject.FileName + $FileName = $DriverPackCloudObject.FileName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Searching local drives for DriverPack file: $FileName" $MatchingFiles = @() $MatchingFiles = Get-PSDrive -PSProvider FileSystem | ForEach-Object { Get-ChildItem "$($_.Name):\OSDCloud\DriverPacks\" -Include "$FileName" -File -Recurse -Force -ErrorAction Ignore } if ($MatchingFiles) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack is available offline. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Offline DriverPack matches found: $(@($MatchingFiles).Count)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack is available offline. OK." $IsOffline = $true } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack is not available offline." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack is not available offline." } #================================================= # Nothing to do if it is unavailable online and offline if ($IsOnline -eq $false -and $IsOffline -eq $false) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPack unavailable online and offline. Skipping save." Write-Warning "[$(Get-Date -format s)] DriverPack is not available online or offline. Continue." return } #================================================= # Variables $LogPath = "C:\Windows\Temp\osdcloud-logs" - $Manufacturer = $DriverPackObject.Manufacturer + $Manufacturer = $DriverPackCloudObject.Manufacturer $ScriptsPath = "C:\Windows\Setup\Scripts" $SetupCompleteCmd = "$ScriptsPath\SetupComplete.cmd" $SetupSpecializeCmd = "C:\Windows\Temp\osdcloud\SetupSpecialize.cmd" - $Url = $DriverPackObject.Url + $Url = $DriverPackCloudObject.Url + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Manufacturer: $Manufacturer; Download URL: $Url; LogPath: $LogPath" #================================================= # Create Download Directory $DownloadPath = "C:\Windows\Temp\osdcloud-driverpack-download" @@ -89,6 +100,7 @@ function step-Save-WindowsDriver-DriverPack { Path = $DownloadPath } if (!(Test-Path $Params.Path -ErrorAction SilentlyContinue)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating driver pack download path: $($Params.Path)" New-Item @Params | Out-Null } #================================================= @@ -96,154 +108,182 @@ function step-Save-WindowsDriver-DriverPack { $USBDrive = Get-DeviceUSBVolume | Where-Object { ($_.FileSystemLabel -match "OSDCloud|USB-DATA") } | ` Where-Object { $_.SizeGB -ge 16 } | Where-Object { $_.SizeRemainingGB -ge 10 } | Select-Object -First 1 - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($DriverPackObject.Url)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] FileName: $FileName" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($DriverPackCloudObject.Url)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] FileName: $FileName" if ($USBDrive) { $USBDownloadPath = "$($USBDrive.DriveLetter):\OSDCloud\DriverPacks\$Manufacturer" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DownloadPath: $USBDownloadPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] USB cache drive selected: $($USBDrive.DriveLetter); USBDownloadPath: $USBDownloadPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DownloadPath: $USBDownloadPath" if (-not (Test-Path $USBDownloadPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating USB driver pack download path: $USBDownloadPath" $null = New-Item -Path $USBDownloadPath -ItemType Directory -Force } - $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $DriverPackObject.Url -DestinationDirectory "$USBDownloadPath" -DestinationName $FileName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Downloading DriverPack to USB cache." + $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $DriverPackCloudObject.Url -DestinationDirectory "$USBDownloadPath" -DestinationName $FileName if ($SaveWebFile) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Copying Offline DriverPack to $DownloadPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Copying cached DriverPack from $($SaveWebFile.FullName) to $DownloadPath." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Copying Offline DriverPack to $DownloadPath" $null = Copy-Item -Path $SaveWebFile.FullName -Destination $DownloadPath -Force $FileInfo = Get-Item "$DownloadPath\$($SaveWebFile.Name)" } } else { # $SaveWebFile is a FileInfo Object, not a path - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DownloadPath: $DownloadPath" - $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $DriverPackObject.Url -DestinationDirectory $DownloadPath -ErrorAction Stop + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DownloadPath: $DownloadPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Downloading DriverPack directly to $DownloadPath." + $SaveWebFile = Invoke-OSDCloudDownloadFile -SourceUrl $DriverPackCloudObject.Url -DestinationDirectory $DownloadPath -ErrorAction Stop $FileInfo = $SaveWebFile } #================================================= # Verify download $OutFileObject = Get-Item $FileInfo.FullName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Downloaded DriverPack file: $($OutFileObject.FullName); Extension: $($OutFileObject.Extension)" if (! (Test-Path $OutFileObject)) { Write-Warning "[$(Get-Date -format s)] Unable to download the DriverPack from the Internet." return } # Store this as a FileInfo Object - $DriverPackObject | ConvertTo-Json | Out-File "$($OutFileObject.FullName).json" -Encoding ascii -Width 2000 -Force + $DriverPackCloudObject | ConvertTo-Json | Out-File "$($OutFileObject.FullName).json" -Encoding ascii -Width 2000 -Force #================================================= # Expand the DriverPack $DownloadedFile = $OutFileObject.FullName $ExpandPath = 'C:\Windows\Temp\osdcloud-driverpack-expand' if (-not (Test-Path "$ExpandPath")) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating driver pack expand path: $ExpandPath" New-Item $ExpandPath -ItemType Directory -Force -ErrorAction Ignore | Out-Null } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] DriverPack: $DownloadedFile" + $removeExistingPath = { + param ( + [System.String] + $Path + ) + + if (Test-Path -LiteralPath $Path) { + Remove-Item -LiteralPath $Path -Recurse -Force -ErrorAction SilentlyContinue + } + } + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] DriverPack: $DownloadedFile" #================================================= # Cab #================================================= if ($OutFileObject.Extension -eq '.cab') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Expand CAB DriverPack to $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Expand CAB DriverPack to $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Expanding CAB DriverPack: $DownloadedFile" Expand -R "$DownloadedFile" -F:* "$ExpandPath" | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Apply drivers in $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Apply drivers in $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for CAB DriverPack." Add-WindowsDriver -Path "C:\" -Driver $ExpandPath -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-driverpack.log" -ErrorAction SilentlyContinue | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Windows\Temp\osdcloud-driverpack-download" - Remove-Item -Path "C:\Windows\Temp\osdcloud-driverpack-download" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Windows\Temp\osdcloud-driverpack-download" + & $removeExistingPath -Path "C:\Windows\Temp\osdcloud-driverpack-download" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing $ExpandPath" - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing $ExpandPath" + & $removeExistingPath -Path $ExpandPath - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Drivers" - Remove-Item -Path "C:\Drivers" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Drivers" + & $removeExistingPath -Path "C:\Drivers" return } #================================================= # Zip #================================================= if ($OutFileObject.Extension -eq '.zip') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Expand ZIP DriverPack to $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Expand ZIP DriverPack to $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Expanding ZIP DriverPack: $DownloadedFile" Expand-Archive -Path $DownloadedFile -DestinationPath $ExpandPath -Force - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Apply drivers in $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Apply drivers in $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for ZIP DriverPack." Add-WindowsDriver -Path "C:\" -Driver $ExpandPath -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-driverpack.log" -ErrorAction SilentlyContinue | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Windows\Temp\osdcloud-driverpack-download" - Remove-Item -Path "C:\Windows\Temp\osdcloud-driverpack-download" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Windows\Temp\osdcloud-driverpack-download" + & $removeExistingPath -Path "C:\Windows\Temp\osdcloud-driverpack-download" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing $ExpandPath" - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing $ExpandPath" + & $removeExistingPath -Path $ExpandPath - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Drivers" - Remove-Item -Path "C:\Drivers" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Drivers" + & $removeExistingPath -Path "C:\Drivers" return } #================================================= # Dell #================================================= if (($OutFileObject.Extension -eq '.exe') -and ($OutFileObject.VersionInfo.FileDescription -match 'Dell')) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] FileDescription: $($OutFileObject.VersionInfo.FileDescription)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] ProductVersion: $($OutFileObject.VersionInfo.ProductVersion)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] FileDescription: $($OutFileObject.VersionInfo.FileDescription)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] ProductVersion: $($OutFileObject.VersionInfo.ProductVersion)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Expand Dell DriverPack to $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Expand Dell DriverPack to $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Expanding Dell DriverPack with Start-Process: $DownloadedFile" $null = New-Item -Path $ExpandPath -ItemType Directory -Force -ErrorAction Ignore | Out-Null Start-Process -FilePath $DownloadedFile -ArgumentList "/s /e=`"$ExpandPath`"" -Wait - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Apply drivers in $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Apply drivers in $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for Dell DriverPack." Add-WindowsDriver -Path "C:\" -Driver $ExpandPath -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-driverpack.log" -ErrorAction SilentlyContinue | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Windows\Temp\osdcloud-driverpack-download" - Remove-Item -Path "C:\Windows\Temp\osdcloud-driverpack-download" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Windows\Temp\osdcloud-driverpack-download" + & $removeExistingPath -Path "C:\Windows\Temp\osdcloud-driverpack-download" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing $ExpandPath" - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing $ExpandPath" + & $removeExistingPath -Path $ExpandPath - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Drivers" - Remove-Item -Path "C:\Drivers" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Drivers" + & $removeExistingPath -Path "C:\Drivers" return } #================================================= # HP #================================================= if (($OutFileObject.Extension -eq '.exe') -and ($OutFileObject.VersionInfo.InternalName -match 'hpsoftpaqwrapper')) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] FileDescription: $($OutFileObject.VersionInfo.FileDescription)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] InternalName: $($OutFileObject.VersionInfo.InternalName)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] ProductVersion: $($OutFileObject.VersionInfo.ProductVersion)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] FileDescription: $($OutFileObject.VersionInfo.FileDescription)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] InternalName: $($OutFileObject.VersionInfo.InternalName)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] ProductVersion: $($OutFileObject.VersionInfo.ProductVersion)" if (Test-Path -Path $env:windir\System32\7za.exe) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Expand HP DriverPack to $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Expand HP DriverPack to $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Expanding HP DriverPack with 7za.exe: $DownloadedFile" # Start-Process -FilePath $DownloadedFile -ArgumentList "/s /e /f `"$ExpandPath`"" -Wait & 7za x "$DownloadedFile" -o"C:\Windows\Temp\osdcloud-driverpack-expand" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Apply drivers in $ExpandPath" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Apply drivers in $ExpandPath" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Running Add-WindowsDriver for HP DriverPack." Add-WindowsDriver -Path "C:\" -Driver $ExpandPath -Recurse -ForceUnsigned -LogPath "$LogPath\dism-add-windowsdriver-driverpack.log" -ErrorAction SilentlyContinue | Out-Null - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Windows\Temp\osdcloud-driverpack-download" - Remove-Item -Path "C:\Windows\Temp\osdcloud-driverpack-download" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Windows\Temp\osdcloud-driverpack-download" + & $removeExistingPath -Path "C:\Windows\Temp\osdcloud-driverpack-download" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing $ExpandPath" - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing $ExpandPath" + & $removeExistingPath -Path $ExpandPath - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Removing C:\Drivers" - Remove-Item -Path "C:\Drivers" -Recurse -Force -ErrorAction SilentlyContinue + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Removing C:\Drivers" + & $removeExistingPath -Path "C:\Drivers" } else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] 7za.exe was not found at $env:windir\System32\7za.exe." Write-Warning "[$(Get-Date -format s)] 7zip 7za.exe needs to be added to WinPE to expand HP DriverPacks" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] HP DriverPack is saved at $DownloadedFile" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] HP DriverPack is saved at $DownloadedFile" - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue - Remove-Item -Path "C:\Drivers" -Recurse -Force -ErrorAction SilentlyContinue + & $removeExistingPath -Path $ExpandPath + & $removeExistingPath -Path "C:\Drivers" } return } #================================================= # Lenovo #================================================= - if (($OutFileObject.Extension -eq '.exe') -and ($DriverPackObject.Manufacturer -match 'Lenovo')) { + if (($OutFileObject.Extension -eq '.exe') -and ($DriverPackCloudObject.Manufacturer -match 'Lenovo')) { if (-not (Test-Path $ScriptsPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating scripts path for Lenovo SetupComplete: $ScriptsPath" New-Item -Path $ScriptsPath -ItemType Directory -Force -ErrorAction Ignore | Out-Null } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Adding Lenovo DriverPack to $SetupCompleteCmd" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Adding Lenovo DriverPack to $SetupCompleteCmd" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Appending Lenovo DriverPack install commands to $SetupCompleteCmd." $Content = @" :: ======================================================== @@ -258,13 +298,13 @@ rd /s /q C:\Windows\Temp\osdcloud-driverpack-download :: ======================================================== "@ $Content | Out-File -FilePath $SetupCompleteCmd -Append -Encoding ascii -Width 2000 -Force - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue + & $removeExistingPath -Path $ExpandPath return <# # Write-Host -ForegroundColor DarkGray "FileDescription: $($OutFileObject.VersionInfo.FileDescription)" # Write-Host -ForegroundColor DarkGray "ProductVersion: $($OutFileObject.VersionInfo.ProductVersion)" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Adding Lenovo DriverPack to $SetupSpecializeCmd" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Adding Lenovo DriverPack to $SetupSpecializeCmd" $Content = @" :: ======================================================== @@ -295,13 +335,13 @@ rd /s /q C:\Windows\Temp\osdcloud-driverpack-download $ProvisioningPackage = Join-Path $$($MyInvocation.MyCommand.Module.ModuleBase) "core\setupspecialize\setupspecialize.ppkg" if (Test-Path $ProvisioningPackage) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Adding Provisioning Package for SetupSpecialize" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] dism.exe /Image=C:\ /Add-ProvisioningPackage /PackagePath:`"$ProvisioningPackage`"" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Adding Provisioning Package for SetupSpecialize" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] dism.exe /Image=C:\ /Add-ProvisioningPackage /PackagePath:`"$ProvisioningPackage`"" $ArgumentList = "/Image=C:\ /Add-ProvisioningPackage /PackagePath:`"$ProvisioningPackage`"" $null = Start-Process -FilePath 'dism.exe' -ArgumentList $ArgumentList -Wait -NoNewWindow } - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue + & $removeExistingPath -Path $ExpandPath return #> } @@ -310,9 +350,11 @@ rd /s /q C:\Windows\Temp\osdcloud-driverpack-download #================================================= if (($OutFileObject.Extension -eq '.msi') -and ($OutFileObject.Name -match 'surface')) { if (-not (Test-Path $ScriptsPath)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating scripts path for Surface SetupComplete: $ScriptsPath" New-Item -Path $ScriptsPath -ItemType Directory -Force -ErrorAction Ignore | Out-Null } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Adding Surface DriverPack to $SetupCompleteCmd" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Adding Surface DriverPack to $SetupCompleteCmd" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Appending Surface MSI install commands to $SetupCompleteCmd." $Content = @" :: ======================================================== @@ -323,12 +365,13 @@ rd /s /q C:\Windows\Temp\osdcloud-driverpack-download :: ======================================================== "@ $Content | Out-File -FilePath $SetupCompleteCmd -Append -Encoding ascii -Width 2000 -Force - Remove-Item -Path $ExpandPath -Recurse -Force -ErrorAction SilentlyContinue - Remove-Item -Path "C:\Drivers" -Recurse -Force -ErrorAction SilentlyContinue + & $removeExistingPath -Path $ExpandPath + & $removeExistingPath -Path "C:\Drivers" return } #================================================= # End the function + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] No DriverPack expansion branch matched $($OutFileObject.FullName)." $Message = "[$(Get-Date -format s)] End" Write-Verbose -Message $Message; Write-Debug -Message $Message #================================================= diff --git a/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-Firmware.ps1 b/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-Firmware.ps1 index 3f50e46..6c65f6b 100644 --- a/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-Firmware.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-Firmware.ps1 @@ -2,37 +2,40 @@ function step-Save-WindowsDriver-Firmware { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - if ($global:OSDCloudDeploy.SkipFirmwareUpdate -eq $true) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Firmware update steps were disabled by -SkipFirmwareUpdate. Skip." + if ($global:OSDCloudWorkflowInvoke.SkipFirmwareUpdate -eq $true) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] SkipFirmwareUpdate is true." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Firmware update steps were disabled by -SkipFirmwareUpdate. Skip." return } if ($PSVersionTable.PSVersion.Major -ne 5) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] PowerShell 5.1 is required to run this step. Skip." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] PowerShell major version is $($PSVersionTable.PSVersion.Major)." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] PowerShell 5.1 is required to run this step. Skip." return } if ($IsVM -eq $true) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Firmware is not enabled for Virtual Machines. Skip." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Virtual machine detected." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Firmware is not enabled for Virtual Machines. Skip." return } if ($global:OSDCoreDevice.IsOnBattery -eq $true) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Firmware is not enabled for devices on battery power" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Device is on battery." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Firmware is not enabled for devices on battery power" return } #================================================= # Is it reachable online? $Url = 'https://catalog.update.microsoft.com/Home.aspx' try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing Microsoft Update Catalog with HEAD request: $Url" $WebRequest = Invoke-WebRequest -Uri $Url -UseBasicParsing -Method Head if ($WebRequest.StatusCode -eq 200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Catalog returned a 200 status code. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Catalog returned a 200 status code. OK." } } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Catalog is not reachable. Skip." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Catalog is not reachable. Skip." return } @@ -52,16 +55,17 @@ function step-Save-WindowsDriver-Firmware { #> $DestinationDirectory = "C:\Windows\Temp\osdcloud-drivers-firmware" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Firmware Updates will be downloaded from Microsoft Update Catalog to $DestinationDirectory" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Not all systems support a driver Firmware Update" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] BIOS or Firmware Settings may need to be enabled for Firmware Updates" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Firmware Updates will be downloaded from Microsoft Update Catalog to $DestinationDirectory" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Not all systems support a driver Firmware Update" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] BIOS or Firmware Settings may need to be enabled for Firmware Updates" $SystemFirmwareHardwareId = $global:OSDCoreDevice.SystemFirmwareHardwareId - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] System Firmware Hardware ID: $SystemFirmwareHardwareId" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DestinationDirectory: $DestinationDirectory; SystemFirmwareHardwareId: $SystemFirmwareHardwareId" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] System Firmware Hardware ID: $SystemFirmwareHardwareId" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Calling Save-MicrosoftUpdateCatalogDriver for firmware hardware ID." Save-MicrosoftUpdateCatalogDriver -DestinationDirectory $DestinationDirectory -HardwareID $SystemFirmwareHardwareId #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-MSUpdate.ps1 b/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-MSUpdate.ps1 index 190dd93..8e35938 100644 --- a/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-MSUpdate.ps1 +++ b/OSDCloud/private/steps/5-drivers/step-Save-WindowsDriver-MSUpdate.ps1 @@ -2,63 +2,71 @@ function step-Save-WindowsDriver-MSUpdate { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep # Step Variables - $DriverPackName = $global:OSDCloudDeploy.DriverPackName + $DriverPackName = $global:OSDCloudWorkflowInvoke.DriverPackName + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName: $DriverPackName; PowerShellVersion: $($PSVersionTable.PSVersion); IsVM: $IsVM; Manufacturer: $($global:OSDCoreDevice.OSDManufacturer)" #================================================= # Exclusions if ($PSVersionTable.PSVersion.Major -ne 5) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] PowerShell 5.1 is required to run this step. Skip." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] PowerShell 5.1 requirement was not met." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] PowerShell 5.1 is required to run this step. Skip." return } if (($IsVM -eq $true) -and ($global:OSDCoreDevice.OSDManufacturer -match 'Microsoft')) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Drivers is not enabled for Microsoft Hyper-V. Skip." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Microsoft Hyper-V virtual machine detected." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Drivers is not enabled for Microsoft Hyper-V. Skip." return } if ($DriverPackName -eq 'None') { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Drivers is not enabled. Skip." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DriverPackName is None." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Drivers is not enabled. Skip." return } #================================================= # TODO: Resolve issue with Microsoft Update Catalog and re-enable this step - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] This function is unavailable due to an issue being worked on. Skip." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Microsoft Update driver download branch is currently disabled by design." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] This function is unavailable due to an issue being worked on. Skip." return #================================================= # Is it reachable online? $Url = 'https://catalog.update.microsoft.com/Home.aspx' try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing Microsoft Update Catalog with HEAD request: $Url" $WebRequest = Invoke-WebRequest -Uri $Url -UseBasicParsing -Method Head if ($WebRequest.StatusCode -eq 200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Catalog URL returned a 200 status code. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Catalog URL returned a 200 status code. OK." } } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Catalog URL is not reachable. Skip." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Catalog URL is not reachable online and cannot be downloaded. Skip." return } #================================================= # Microsoft Update Catalog if ($DriverPackName -eq 'Microsoft Update Catalog') { $DestinationDirectory = "C:\Windows\Temp\osdcloud-drivers-msupdate" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Drivers is enabled for all devices. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Calling Save-MicrosoftUpdateCatalogDriver for all device classes to $DestinationDirectory." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Drivers is enabled for all devices. OK." Save-MicrosoftUpdateCatalogDriver -DestinationDirectory $DestinationDirectory return } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Microsoft Update Drivers is enabled for critical devices. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Microsoft Update Drivers is enabled for critical devices. OK." $DestinationDirectory = "C:\Windows\Temp\osdcloud-drivers-disk" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Saving DiskDrive drivers to $DestinationDirectory." Save-MicrosoftUpdateCatalogDriver -DestinationDirectory $DestinationDirectory -PNPClass 'DiskDrive' $DestinationDirectory = "C:\Windows\Temp\osdcloud-drivers-net" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Saving Net drivers to $DestinationDirectory." Save-MicrosoftUpdateCatalogDriver -DestinationDirectory $DestinationDirectory -PNPClass 'Net' $DestinationDirectory = "C:\Windows\Temp\osdcloud-drivers-scsi" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Saving SCSIAdapter drivers to $DestinationDirectory." Save-MicrosoftUpdateCatalogDriver -DestinationDirectory $DestinationDirectory -PNPClass 'SCSIAdapter' #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/6-powershell/step-powershell-savemodule.ps1 b/OSDCloud/private/steps/6-powershell/step-powershell-savemodule.ps1 index ac91994..42cd394 100644 --- a/OSDCloud/private/steps/6-powershell/step-powershell-savemodule.ps1 +++ b/OSDCloud/private/steps/6-powershell/step-powershell-savemodule.ps1 @@ -4,32 +4,35 @@ function step-powershell-savemodule { $Name = $Step.parameters.name ) #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep #region Main - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)]" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO]" $PowerShellSavePath = 'C:\Program Files\WindowsPowerShell' + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Module Name: $Name; PowerShellSavePath: $PowerShellSavePath" if (-not (Test-Path "$PowerShellSavePath\Configuration")) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating PowerShell configuration path." New-Item -Path "$PowerShellSavePath\Configuration" -ItemType Directory -Force | Out-Null } if (-not (Test-Path "$PowerShellSavePath\Modules")) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating PowerShell modules path." New-Item -Path "$PowerShellSavePath\Modules" -ItemType Directory -Force | Out-Null } if (-not (Test-Path "$PowerShellSavePath\Scripts")) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating PowerShell scripts path." New-Item -Path "$PowerShellSavePath\Scripts" -ItemType Directory -Force | Out-Null } try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Saving module $Name to $PowerShellSavePath\Modules." Save-Module -Name $Name -Path "$PowerShellSavePath\Modules" -Force -ErrorAction Stop } catch { Write-Warning "[$(Get-Date -format s)] Unable to Save-Module $Name to $PowerShellSavePath\Modules" } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/6-powershell/step-powershell-updatemodule.ps1 b/OSDCloud/private/steps/6-powershell/step-powershell-updatemodule.ps1 index 0a83eb3..461f064 100644 --- a/OSDCloud/private/steps/6-powershell/step-powershell-updatemodule.ps1 +++ b/OSDCloud/private/steps/6-powershell/step-powershell-updatemodule.ps1 @@ -2,46 +2,53 @@ function step-powershell-updatemodule { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep # Is it reachable online? try { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Testing PowerShell Gallery with HEAD request." $WebRequest = Invoke-WebRequest -Uri 'https://www.powershellgallery.com' -UseBasicParsing -Method Head if ($WebRequest.StatusCode -eq 200) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] PowerShell Gallery returned a 200 status code. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] PowerShell Gallery returned a 200 status code. OK." } } catch { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] PowerShell Gallery is not reachable." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] PowerShell Gallery is not reachable." return } #================================================= #region Main $PowerShellSavePath = 'C:\Program Files\WindowsPowerShell' + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] PowerShellSavePath: $PowerShellSavePath" if (-not (Test-Path "$PowerShellSavePath\Configuration")) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating PowerShell configuration path." New-Item -Path "$PowerShellSavePath\Configuration" -ItemType Directory -Force | Out-Null } if (-not (Test-Path "$PowerShellSavePath\Modules")) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating PowerShell modules path." New-Item -Path "$PowerShellSavePath\Modules" -ItemType Directory -Force | Out-Null } if (-not (Test-Path "$PowerShellSavePath\Scripts")) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating PowerShell scripts path." New-Item -Path "$PowerShellSavePath\Scripts" -ItemType Directory -Force | Out-Null } $ExistingModules = Get-ChildItem -Path "$PowerShellSavePath\Modules" -ErrorAction SilentlyContinue | Where-Object { $_.PSIsContainer -eq $true } | Select-Object -ExpandProperty Name + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Existing module count: $(@($ExistingModules).Count)" foreach ($Name in $ExistingModules) { $FindModule = Find-Module -Name $Name -ErrorAction SilentlyContinue if ($null -eq $FindModule) { - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Unable to update $Name" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Module $Name was not found in the PowerShell Gallery. Skipping." + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Unable to update $Name" continue } try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $Name" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $Name" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Saving module $Name to $PowerShellSavePath\Modules." Save-Module -Name $Name -Path "$PowerShellSavePath\Modules" -Force -ErrorAction Stop } catch { @@ -49,7 +56,6 @@ function step-powershell-updatemodule { } } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/7-update/step-update-setupdisplayedeula.ps1 b/OSDCloud/private/steps/7-update/step-update-setupdisplayedeula.ps1 index 5a9fd31..bcf493d 100644 --- a/OSDCloud/private/steps/7-update/step-update-setupdisplayedeula.ps1 +++ b/OSDCloud/private/steps/7-update/step-update-setupdisplayedeula.ps1 @@ -2,17 +2,18 @@ function step-update-setupdisplayedeula { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep #region Main - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Updating the OOBE SetupDisplayedEula value in the registry. OK." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Updating the OOBE SetupDisplayedEula value in the registry. OK." + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Loading offline SOFTWARE hive from C:\Windows\System32\Config\SOFTWARE." $null = reg load HKLM\TempSOFTWARE "C:\Windows\System32\Config\SOFTWARE" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Setting SetupDisplayedEula to 1 in offline SOFTWARE hive." $null = reg add HKLM\TempSOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE /v SetupDisplayedEula /t REG_DWORD /d 0x00000001 /f + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unloading offline SOFTWARE hive." $null = reg unload HKLM\TempSOFTWARE #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/8-finalize/step-finalize-exportofflineosinfo.ps1 b/OSDCloud/private/steps/8-finalize/step-finalize-exportofflineosinfo.ps1 index 3842de3..34c1658 100644 --- a/OSDCloud/private/steps/8-finalize/step-finalize-exportofflineosinfo.ps1 +++ b/OSDCloud/private/steps/8-finalize/step-finalize-exportofflineosinfo.ps1 @@ -2,22 +2,24 @@ function step-finalize-exportofflineosinfo { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep #region Main $StepLogPath = "C:\Windows\Temp\osdcloud-logs" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] StepLogPath: $StepLogPath" #Grab Build from WinPE, as 24H2 has issues with some of these commands: $CurrentOSInfo = Get-Item -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion' $CurrentOSBuild = $($CurrentOSInfo.GetValue('CurrentBuild')) + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Current WinPE OS build: $CurrentOSBuild" #================================================= #Get-AppxProvisionedPackage $StepLogFile = (Join-Path $StepLogPath 'Get-AppxProvisionedPackage.txt') try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Get-AppxProvisionedPackage.txt" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Exporting Get-AppxProvisionedPackage report to $StepLogFile." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Get-AppxProvisionedPackage.txt" $Report = Get-AppxProvisionedPackage -Path C:\ -ErrorAction Stop if ($Report) { $Report | Select-Object * | Sort-Object DisplayName | Out-File -FilePath $StepLogFile -Force -Encoding ascii @@ -31,7 +33,8 @@ function step-finalize-exportofflineosinfo { #Get-WindowsCapability $StepLogFile = (Join-Path $StepLogPath 'Get-WindowsCapability.txt') try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Get-WindowsCapability.txt" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Exporting Get-WindowsCapability report to $StepLogFile." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Get-WindowsCapability.txt" $Report = Get-WindowsCapability -Path C:\ -ErrorAction Stop if ($Report) { $Report | Sort-Object Name | Select-Object Name, State | Out-File -FilePath $StepLogFile -Force -Encoding ascii @@ -45,7 +48,8 @@ function step-finalize-exportofflineosinfo { #Get-WindowsEdition $StepLogFile = (Join-Path $StepLogPath 'Get-WindowsEdition.txt') try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Get-WindowsEdition.txt" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Exporting Get-WindowsEdition report to $StepLogFile." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Get-WindowsEdition.txt" $Report = Get-WindowsEdition -Path C:\ -ErrorAction Stop if ($Report) { $Report | Select-Object Edition | Out-File -FilePath $StepLogFile -Force -Encoding ascii @@ -59,7 +63,8 @@ function step-finalize-exportofflineosinfo { #Get-WindowsOptionalFeature $StepLogFile = (Join-Path $StepLogPath 'Get-WindowsOptionalFeature.txt') try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Get-WindowsOptionalFeature.txt" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Exporting Get-WindowsOptionalFeature report to $StepLogFile." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Get-WindowsOptionalFeature.txt" $Report = Get-WindowsOptionalFeature -Path C:\ -ErrorAction Stop if ($Report) { $Report | Sort-Object FeatureName | Select-Object FeatureName, State | Out-File -FilePath $StepLogFile -Force -Encoding ascii @@ -73,7 +78,8 @@ function step-finalize-exportofflineosinfo { #Get-WindowsPackage $StepLogFile = (Join-Path $StepLogPath 'Get-WindowsPackage.txt') try { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Get-WindowsPackage.txt" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Exporting Get-WindowsPackage report to $StepLogFile." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Get-WindowsPackage.txt" $Report = Get-WindowsPackage -Path C:\ -ErrorAction Stop if ($Report) { $Report | Sort-Object PackageName | Select-Object PackageName, PackageState, ReleaseType | Out-File -FilePath $StepLogFile -Force -Encoding ascii @@ -85,7 +91,6 @@ function step-finalize-exportofflineosinfo { #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/steps/8-finalize/step-finalize-osdcloudlogs.ps1 b/OSDCloud/private/steps/8-finalize/step-finalize-osdcloudlogs.ps1 index f09cf11..f8bb88e 100644 --- a/OSDCloud/private/steps/8-finalize/step-finalize-osdcloudlogs.ps1 +++ b/OSDCloud/private/steps/8-finalize/step-finalize-osdcloudlogs.ps1 @@ -2,12 +2,12 @@ function step-finalize-osdcloudlogs { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep #region Main $LogsPath = "C:\Windows\Temp\osdcloud-logs" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LogsPath: $LogsPath" $Params = @{ Path = $LogsPath @@ -17,23 +17,32 @@ function step-finalize-osdcloudlogs { } if (-not (Test-Path $Params.Path)) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Creating logs path: $($Params.Path)" New-Item @Params | Out-Null } # Copy the DISM log to C:\Windows\Temp\osdcloud-logs if (Test-Path "$env:SystemRoot\logs\dism\dism.log") { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Copying DISM log from $env:SystemRoot\logs\dism\dism.log." Copy-Item -Path "$env:SystemRoot\logs\dism\dism.log" -Destination 'C:\Windows\Temp\osdcloud-logs\dism.log' -Force | Out-Null } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] DISM log was not found at $env:SystemRoot\logs\dism\dism.log." + } + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Stopping transcript." $null = Stop-Transcript -ErrorAction SilentlyContinue # Copy existing WinPE Logs to C:\Windows\Temp\osdcloud-logs if ($env:SystemDrive -eq 'X:') { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Copying WinPE logs from X:\Windows\Temp\osdcloud-logs to C:\Windows\Temp\osdcloud-logs." $null = robocopy "X:\Windows\Temp\osdcloud-logs" "C:\Windows\Temp\osdcloud-logs" *.* /e /ndl /r:0 /w:0 } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] SystemDrive is $env:SystemDrive; skipping WinPE log copy." + } #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/8-finalize/step-finalize-stoposdcloudworkflow.ps1 b/OSDCloud/private/steps/8-finalize/step-finalize-stoposdcloudworkflow.ps1 index 944cd01..d98fe81 100644 --- a/OSDCloud/private/steps/8-finalize/step-finalize-stoposdcloudworkflow.ps1 +++ b/OSDCloud/private/steps/8-finalize/step-finalize-stoposdcloudworkflow.ps1 @@ -2,18 +2,17 @@ function step-finalize-stoposdcloudworkflow { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= #region Main $global:OSDCloudWorkflowInvoke.TimeEnd = Get-Date $global:OSDCloudWorkflowInvoke.TimeSpan = New-TimeSpan -Start $global:OSDCloudWorkflowInvoke.TimeStart -End $global:OSDCloudWorkflowInvoke.TimeEnd + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] TimeStart: $($global:OSDCloudWorkflowInvoke.TimeStart); TimeEnd: $($global:OSDCloudWorkflowInvoke.TimeEnd); TimeSpan: $($global:OSDCloudWorkflowInvoke.TimeSpan)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Exporting workflow invocation snapshot to C:\Windows\Temp\osdcloud-logs\OSDCloudWorkflowInvoke.json." $global:OSDCloudWorkflowInvoke | ConvertTo-Json | Out-File -FilePath 'C:\Windows\Temp\osdcloud-logs\OSDCloudWorkflowInvoke.json' -Encoding utf8 -Width 2000 -Force -ErrorAction SilentlyContinue -WarningAction SilentlyContinue - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Completed in $($global:OSDCloudWorkflowInvoke.TimeSpan.ToString("mm' minutes 'ss' seconds'"))" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Completed in $($global:OSDCloudWorkflowInvoke.TimeSpan.ToString("mm' minutes 'ss' seconds'"))" #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudlogs.ps1 b/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudlogs.ps1 index 4903380..daec482 100644 --- a/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudlogs.ps1 +++ b/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudlogs.ps1 @@ -2,14 +2,15 @@ function step-postaction-removeosdcloudlogs { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep # Stop Transcript at this point as this file is locked and will cause issues with cleanup + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Stopping transcript before log cleanup." $null = Stop-Transcript -ErrorAction SilentlyContinue $LogsPath = "C:\Windows\Temp\osdcloud-logs" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LogsPath: $LogsPath" $Params = @{ ErrorAction = 'SilentlyContinue' @@ -19,10 +20,13 @@ function step-postaction-removeosdcloudlogs { } if (Test-Path $LogsPath) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing OSDCloud logs path: $LogsPath" Remove-Item @Params | Out-Null } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] LogsPath was not found. Nothing to remove." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudtemp.ps1 b/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudtemp.ps1 index f2b28a0..3ccfff4 100644 --- a/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudtemp.ps1 +++ b/OSDCloud/private/steps/9-postaction/step-postaction-removeosdcloudtemp.ps1 @@ -2,17 +2,20 @@ function step-postaction-removeosdcloudtemp { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep $Path = 'C:\Windows\Temp\osdcloud' + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Temp path: $Path" if (Test-Path $Path) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Removing OSDCloud temp path: $Path" Remove-Item -Path $Path -Recurse -Force -ErrorAction SilentlyContinue } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Temp path was not found. Nothing to remove." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/9-postaction/step-postaction-restartcomputer.ps1 b/OSDCloud/private/steps/9-postaction/step-postaction-restartcomputer.ps1 index a8534ff..52dcf37 100644 --- a/OSDCloud/private/steps/9-postaction/step-postaction-restartcomputer.ps1 +++ b/OSDCloud/private/steps/9-postaction/step-postaction-restartcomputer.ps1 @@ -2,22 +2,26 @@ function step-postaction-restartcomputer { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= + $Step = $global:OSDCloudCurrentStep #region Main + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WinpeRestart: $($global:OSDCloudWorkflowInvoke.WinpeRestart)" if ($global:OSDCloudWorkflowInvoke.WinpeRestart) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Restart requested; waiting 30 seconds before Restart-Computer." Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] Device will restart in 30 seconds" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Press CTRL + C to cancel" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Press CTRL + C to cancel" #TODO EJECT ISO # (New-Object -ComObject 'Shell.Application').Namespace(17).Items() | Where-Object { $_.Type -eq 'CD Drive' } | ForEach-Object { $_.InvokeVerb('Eject') } Start-Sleep -Seconds 30 + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Calling Restart-Computer." Restart-Computer } + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Restart was not requested." + } #endregion #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/steps/9-postaction/step-postaction-stopcomputer.ps1 b/OSDCloud/private/steps/9-postaction/step-postaction-stopcomputer.ps1 index 4546aa1..cebe39e 100644 --- a/OSDCloud/private/steps/9-postaction/step-postaction-stopcomputer.ps1 +++ b/OSDCloud/private/steps/9-postaction/step-postaction-stopcomputer.ps1 @@ -2,22 +2,25 @@ function step-postaction-stopcomputer { [CmdletBinding()] param () #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - Write-Debug -Message $Message; Write-Verbose -Message $Message - $Step = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" #================================================= - #region Main - if ($global:OSDCloudWorkflowInvoke.WinpeRestart) { + $currentStep = $global:OSDCloudCurrentStep + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Step: $($currentStep.name)" + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WinpeShutdown: $($global:OSDCloudWorkflowInvoke.WinpeShutdown)" + if ($global:OSDCloudWorkflowInvoke.WinpeShutdown) { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Shutdown requested; waiting 30 seconds before Stop-Computer." Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] Device will shut down in 30 seconds" - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Press CTRL + C to cancel" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Press CTRL + C to cancel" #TODO EJECT ISO # (New-Object -ComObject 'Shell.Application').Namespace(17).Items() | Where-Object { $_.Type -eq 'CD Drive' } | ForEach-Object { $_.InvokeVerb('Eject') } Start-Sleep -Seconds 30 + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Calling Stop-Computer." Stop-Computer } - #endregion + else { + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Shutdown was not requested." + } #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= -} \ No newline at end of file +} diff --git a/OSDCloud/private/workflow/Get-OSDCloudWorkflowRuntimeParameter.ps1 b/OSDCloud/private/workflow/Get-OSDCloudWorkflowRuntimeParameter.ps1 index 18170bf..52e08c9 100644 --- a/OSDCloud/private/workflow/Get-OSDCloudWorkflowRuntimeParameter.ps1 +++ b/OSDCloud/private/workflow/Get-OSDCloudWorkflowRuntimeParameter.ps1 @@ -21,6 +21,10 @@ function Get-OSDCloudWorkflowRuntimeParameter { The OSDCloud module base path. Typically $($MyInvocation.MyCommand.Module.ModuleBase) from the calling cmdlet. + .PARAMETER ProcessorArchitecture + Optional mock/testing processor architecture used to select architecture-specific workflow + operating system settings before the deployment initializes OSDCoreDevice. + .EXAMPLE Get-OSDCloudWorkflowRuntimeParameter -WorkflowName 'cli' -ModuleBase $moduleBase @@ -41,15 +45,36 @@ function Get-OSDCloudWorkflowRuntimeParameter { [Parameter(Mandatory = $true)] [System.String] - $ModuleBase + $ModuleBase, + + [Parameter(Mandatory = $false)] + [ValidateSet('amd64', 'arm64')] + [System.String] + $ProcessorArchitecture ) $workflowRootPath = Join-Path -Path $ModuleBase -ChildPath 'workflow' $workflowPath = Join-Path -Path $workflowRootPath -ChildPath $WorkflowName $tasksPath = Join-Path -Path $workflowPath -ChildPath 'tasks' - $osJsonFileName = if ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64') { 'os-arm64.json' } else { 'os-amd64.json' } - $osJsonPath = Join-Path -Path $workflowPath -ChildPath $osJsonFileName + $workflowProcessorArchitecture = if (-not [string]::IsNullOrWhiteSpace($ProcessorArchitecture)) { + $ProcessorArchitecture + } + elseif ($global:OSDCoreDevice -and -not [string]::IsNullOrWhiteSpace($global:OSDCoreDevice.ProcessorArchitecture)) { + $global:OSDCoreDevice.ProcessorArchitecture + } + else { + $env:PROCESSOR_ARCHITECTURE + } + + switch -Regex ($workflowProcessorArchitecture) { + '^(amd64|x64)$' { $workflowProcessorArchitecture = 'amd64'; break } + '^arm64$' { $workflowProcessorArchitecture = 'arm64'; break } + default { $workflowProcessorArchitecture = 'amd64' } + } + + $osSettingsFileObject = Get-OSDCloudWorkflowSettingsOSFile -WorkflowName $WorkflowName -Architecture $workflowProcessorArchitecture -Path $workflowRootPath + $osJsonPath = $osSettingsFileObject.FullName $operatingSystemValues = @() $osActivationValues = @() @@ -57,19 +82,18 @@ function Get-OSDCloudWorkflowRuntimeParameter { $osEditionValues = @() $taskValues = @() - if (Test-Path -Path $osJsonPath) { - $rawJsonContent = Get-Content -Path $osJsonPath -Raw - $jsonContent = $rawJsonContent -replace '(?m)(?<=^([^"]|"[^"]*")*)//.*' -replace '(?ms)/\*.*?\*/' - $osSettings = ConvertFrom-Json -InputObject $jsonContent - $operatingSystemValues = [string[]]$osSettings.OperatingSystem.values - $osActivationValues = [string[]]$osSettings.OSActivation.values - $osLanguageCodeValues = [string[]]$osSettings.OSLanguageCode.values - $osEditionValues = [string[]]($osSettings.OSEdition.values | ForEach-Object { $_.Edition }) - } + $rawJsonContent = Get-Content -Path $osJsonPath -Raw + $jsonContent = $rawJsonContent -replace '(?m)(?<=^([^"]|"[^"]*")*)//.*' -replace '(?ms)/\*.*?\*/' + $osSettings = ConvertFrom-Json -InputObject $jsonContent + $null = Test-OSDCloudWorkflowSettingsOS -Settings $osSettings -WorkflowName $WorkflowName -Path $osJsonPath + $operatingSystemValues = [string[]]$osSettings.OperatingSystem.values + $osActivationValues = [string[]]$osSettings.OSActivation.values + $osLanguageCodeValues = [string[]]$osSettings.OSLanguageCode.values + $osEditionValues = [string[]]($osSettings.OSEdition.values | ForEach-Object { $_.Edition }) if (Test-Path -Path $tasksPath) { $taskJsonFiles = Get-ChildItem -Path $tasksPath -Filter '*.json' -File - if ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64') { + if ($osSettingsFileObject.Architecture -eq 'arm64') { $taskValues = [string[]]($taskJsonFiles | ForEach-Object { Get-Content -Path $_.FullName -Raw | ConvertFrom-Json } | Where-Object { $_.arm64 -eq $true } | @@ -88,6 +112,7 @@ function Get-OSDCloudWorkflowRuntimeParameter { [Parameter(Mandatory = $true)] [string]$Name, [Parameter(Mandatory = $true)] + [AllowEmptyCollection()] [string[]]$ValidateSetValues ) diff --git a/OSDCloud/private/workflow/Get-OSDCloudWorkflowSettingsOSFile.ps1 b/OSDCloud/private/workflow/Get-OSDCloudWorkflowSettingsOSFile.ps1 new file mode 100644 index 0000000..58d94a8 --- /dev/null +++ b/OSDCloud/private/workflow/Get-OSDCloudWorkflowSettingsOSFile.ps1 @@ -0,0 +1,94 @@ +function Get-OSDCloudWorkflowSettingsOSFile { + <# + .SYNOPSIS + Resolves the workflow operating system settings file for an architecture. + + .DESCRIPTION + Resolves workflow//os-.json and preserves the + existing fallback behavior to workflow/default/os-.json when a + workflow-specific file is not present. + + .PARAMETER WorkflowName + The workflow name whose OS settings file should be resolved. + + .PARAMETER Architecture + The processor architecture used to choose os-amd64.json or os-arm64.json. + + .PARAMETER Path + The root workflow path that contains workflow folders. + + .EXAMPLE + Get-OSDCloudWorkflowSettingsOSFile -WorkflowName 'default' -Architecture 'amd64' -Path $workflowRootPath + + Resolves the default workflow amd64 OS settings file. + + .OUTPUTS + System.Management.Automation.PSCustomObject + + .NOTES + Private helper. Not exported. + #> + [CmdletBinding()] + param ( + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [System.String] + $WorkflowName = 'default', + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [System.String] + $Architecture = $env:PROCESSOR_ARCHITECTURE, + + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $Path + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WorkflowName: $WorkflowName" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Architecture: $Architecture" + + if (-not (Test-Path -Path $Path -PathType Container)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] The specified workflow Path does not exist: $Path" + } + + switch -Regex ($Architecture) { + '^(AMD64|amd64|x64|X64)$' { + $normalizedArchitecture = 'amd64' + $fileName = 'os-amd64.json' + break + } + '^(ARM64|arm64)$' { + $normalizedArchitecture = 'arm64' + $fileName = 'os-arm64.json' + break + } + default { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Invalid Architecture '$Architecture'. Expected amd64 or arm64." + } + } + + $workflowNamedPath = Join-Path -Path $Path -ChildPath $WorkflowName + $workflowDefaultPath = Join-Path -Path $Path -ChildPath 'default' + $settingsPath = Join-Path -Path $workflowNamedPath -ChildPath $fileName + $isFallback = $false + + if ($workflowNamedPath -ne $workflowDefaultPath -and -not (Test-Path -Path $settingsPath -PathType Leaf)) { + $settingsPath = Join-Path -Path $workflowDefaultPath -ChildPath $fileName + $isFallback = $true + } + + if (-not (Test-Path -Path $settingsPath -PathType Leaf)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to find workflow OS settings file: $settingsPath" + } + + [PSCustomObject]@{ + Architecture = $normalizedArchitecture + FileName = $fileName + FullName = $settingsPath + IsFallback = $isFallback + WorkflowName = $WorkflowName + } +} diff --git a/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowSettingsOS.ps1 b/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowSettingsOS.ps1 index 9b0f6f7..81c2542 100644 --- a/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowSettingsOS.ps1 +++ b/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowSettingsOS.ps1 @@ -28,52 +28,9 @@ function Initialize-OSDCloudWorkflowSettingsOS { Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] ModuleVersion: $ModuleVersion" #================================================= # Workflow Path must exist, there is no fallback - if (-not (Test-Path $Path)) { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] The specified Path does not exist" - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $Path" - break - } - - $OSDCloudWorkflowNamedPath = Join-Path $Path $WorkflowName - $OSDCloudWorkflowDefaultPath = Join-Path $Path 'default' - - $osamd64Path = "$OSDCloudWorkflowNamedPath\os-amd64.json" - $osarm64Path = "$OSDCloudWorkflowNamedPath\os-arm64.json" - - if (-not ($OSDCloudWorkflowNamedPath -eq $OSDCloudWorkflowDefaultPath)) { - if (-not (Test-Path $osamd64Path)) { - $osamd64Path = "$OSDCloudWorkflowDefaultPath\os-amd64.json" - } - if (-not (Test-Path $osarm64Path)) { - $osarm64Path = "$OSDCloudWorkflowDefaultPath\os-arm64.json" - } - } - - # Import the RAW content of the JSON file - if ($Architecture -eq 'AMD64') { - if (-not (Test-Path $osamd64Path)) { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to find $osamd64Path" - break - } - else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($osamd64Path.Replace((Split-Path $ModuleBase -Parent) + '\', ''))" - } - $OSDCloudWorkflowSettingsOSFile = $osamd64Path - } - elseif ($Architecture -eq 'ARM64') { - if (-not (Test-Path $osarm64Path)) { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Unable to find $osarm64Path" - break - } - else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($osarm64Path.Replace((Split-Path $ModuleBase -Parent) + '\', ''))" - } - $OSDCloudWorkflowSettingsOSFile = $osarm64Path - } - else { - Write-Warning "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Invalid Architecture: $Architecture" - break - } + $OSDCloudWorkflowSettingsOSFileObject = Get-OSDCloudWorkflowSettingsOSFile -WorkflowName $WorkflowName -Architecture $Architecture -Path $Path + $OSDCloudWorkflowSettingsOSFile = $OSDCloudWorkflowSettingsOSFileObject.FullName + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($OSDCloudWorkflowSettingsOSFile.Replace((Split-Path $ModuleBase -Parent) + '\', ''))" Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Importing settings from $OSDCloudWorkflowSettingsOSFile" $rawJsonContent = Get-Content -Path $OSDCloudWorkflowSettingsOSFile -Raw @@ -85,13 +42,15 @@ function Initialize-OSDCloudWorkflowSettingsOS { # https://stackoverflow.com/questions/51066978/convert-to-json-with-comments-from-powershell $JsonContent = $rawJsonContent -replace '(?m)(?<=^([^"]|"[^"]*")*)//.*' -replace '(?ms)/\*.*?\*/' + $OSDCloudWorkflowSettingsOSObject = ConvertFrom-Json $JsonContent + $null = Test-OSDCloudWorkflowSettingsOS -Settings $OSDCloudWorkflowSettingsOSObject -WorkflowName $WorkflowName -Path $OSDCloudWorkflowSettingsOSFile + $hashtable = [ordered]@{} - (ConvertFrom-Json $JsonContent).psobject.properties | ForEach-Object { $hashtable[$_.Name] = $_.Value } + $OSDCloudWorkflowSettingsOSObject.psobject.properties | ForEach-Object { $hashtable[$_.Name] = $_.Value } Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCloud OS Settings are stored in `$global:OSDCloudWorkflowSettingsOS" $global:OSDCloudWorkflowSettingsOS = $hashtable #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowTasks.ps1 b/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowTasks.ps1 index 68f5303..6f68298 100644 --- a/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowTasks.ps1 +++ b/OSDCloud/private/workflow/Initialize-OSDCloudWorkflowTasks.ps1 @@ -70,7 +70,7 @@ function Initialize-OSDCloudWorkflowTasks { } #================================================= # Path that is going to be used - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($WorkflowTasksPath.Replace((Split-Path $ModuleBase -Parent) + '\', ''))" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($WorkflowTasksPath.Replace((Split-Path $ModuleBase -Parent) + '\', ''))" $OSDCloudWorkflowTasks = foreach ($item in $WorkflowTasksFiles) { Get-Content $item.FullName -Raw | ConvertFrom-Json @@ -91,7 +91,6 @@ function Initialize-OSDCloudWorkflowTasks { } $global:OSDCloudWorkflowTasks = $OSDCloudWorkflowTasks | Sort-Object -Property @{Expression='default';Descending=$true}, @{Expression='name';Descending=$false} #================================================= - $Message = "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" - Write-Verbose -Message $Message; Write-Debug -Message $Message + Write-Verbose -Message "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] End" #================================================= } diff --git a/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowTask.ps1 b/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowTask.ps1 index 585921a..f0ec046 100644 --- a/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowTask.ps1 +++ b/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowTask.ps1 @@ -7,53 +7,61 @@ function Invoke-OSDCloudWorkflowTask { #================================================= $Error.Clear() Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Start" - $ModuleName = $($MyInvocation.MyCommand.Module.Name) - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] ModuleName: $ModuleName" - $ModuleBase = $($MyInvocation.MyCommand.Module.ModuleBase) - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] ModuleBase: $ModuleBase" - $ModuleVersion = $($MyInvocation.MyCommand.Module.Version) - Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] ModuleVersion: $ModuleVersion" - #================================================= - # Set global variables - [System.String]$global:Architecture = $OSDCoreDevice.ProcessorArchitecture - [System.Boolean]$global:IsOnBattery = $OSDCoreDevice.IsOnBattery - [System.Boolean]$global:IsVM = $OSDCoreDevice.IsVM - [System.Boolean]$global:IsWinPE = $($env:SystemDrive -eq 'X:') #================================================= # Re-apply the OSDCloud Property override layer to $global:OSDCloudDeploy so authoritative # overrides win over any changes made by the workflow UI, and so the snapshot below # inherits the final values. - if ($global:OSDCloudEnv -and (Get-Command -Name 'Set-OSDCloudEnvOverride' -ErrorAction SilentlyContinue)) { + <# + if ($global:OSDCloudEnv -and (Get-Command -Name 'Set-OSDCloudEnvOverride' -ErrorAction Ignore)) { Set-OSDCloudEnvOverride -Target $global:OSDCloudDeploy -ResolveOperatingSystem -AddMissingKeys } + #> #================================================= + $operatingSystemCloudObject = $global:OSDCloudDeploy.OperatingSystemCloudObject + $workflowSettingsUser = $global:OSDCloudWorkflowSettingsUser + if (-not $workflowSettingsUser -and (Get-Command -Name 'Initialize-OSDCloudWorkflowSettingsUser' -ErrorAction Ignore)) { + $settingsArchitecture = if ($global:OSDCloudDeploy.OSArchitecture -ieq 'arm64') { 'ARM64' } else { 'AMD64' } + Initialize-OSDCloudWorkflowSettingsUser -WorkflowName $global:OSDCloudDeploy.WorkflowName -Architecture $settingsArchitecture | Out-Null + $workflowSettingsUser = $global:OSDCloudWorkflowSettingsUser + } $global:OSDCloudWorkflowInvoke = $null $global:OSDCloudWorkflowInvoke = [ordered]@{ - Architecture = $global:Architecture - OSDManufacturer = $OSDCoreDevice.OSDManufacturer - OSDModel = $OSDCoreDevice.OSDModel - OSDProduct = $OSDCoreDevice.OSDProduct - DriverPackName = $global:OSDCloudDeploy.DriverPackName - DriverPackObject = $global:OSDCloudDeploy.DriverPackObject - DriverFolderName = $global:OSDCloudDeploy.DriverFolderName - DriverFolderNames = $global:OSDCloudDeploy.DriverFolderNames - DriverFolderPath = $global:OSDCloudDeploy.DriverFolderPath - DriverFolderPaths = $global:OSDCloudDeploy.DriverFolderPaths - DriverFolderSelections = $global:OSDCloudDeploy.DriverFolderSelections - IsOnBattery = $global:IsOnBattery - IsVM = $global:IsVM - IsWinPE = $global:IsWinPE - LogsPath = "$env:TEMP\osdcloud-logs" - OperatingSystem = $global:OSDCloudDeploy.OperatingSystem - OperatingSystemObject = $global:OSDCloudDeploy.OperatingSystemObject - TimeEnd = $null - TimeSpan = $null - TimeStart = [datetime](Get-Date) + DeploymentDisk = $global:OSDCloudDeploy.DeploymentDisk + DiskPartition = [pscustomobject]@{ + DiskNumber = $global:OSDCloudDeploy.DeploymentDiskNumber + } + FileInfoWindowsImage = $null + DriverPackCacheObject = $global:OSDCloudDeploy.DriverPackCacheObject + DriverPackName = $global:OSDCloudDeploy.DriverPackName + DriverPackCloudObject = $global:OSDCloudDeploy.DriverPackCloudObject + DriverPackCloudTest = $global:OSDCloudDeploy.DriverPackCloudTest + Force = $global:OSDCloudDeploy.Force + LaunchMethod = $global:OSDCloudDeploy.LaunchMethod + LogsPath = "$env:TEMP\osdcloud-logs" + OperatingSystem = $global:OSDCloudDeploy.OperatingSystem + OperatingSystemCacheObject = $global:OSDCloudDeploy.OperatingSystemCacheObject + OperatingSystemCloudObject = $operatingSystemCloudObject + OperatingSystemCloudTest = $global:OSDCloudDeploy.OperatingSystemCloudTest + OSBuild = $global:OSDCloudDeploy.OSBuild + OSEditionId = $global:OSDCloudDeploy.OSEditionId + RecoveryPartition = $workflowSettingsUser.RecoveryPartition + SkipFirmwareUpdate = $global:OSDCloudDeploy.SkipFirmwareUpdate + TimeEnd = $null + TimeSpan = $null + TimeStart = [datetime](Get-Date) + ParamsExpandWindowsImage = $null + USBPartitions = $null + WindowsEdition = $null + WindowsImage = $null + WindowsImageIndex = $null + WindowsImagePath = $null + WinpeRestart = [bool]$workflowSettingsUser.WinpeRestart + WinpeShutdown = [bool]$workflowSettingsUser.WinpeShutdown } #================================================= #region OSDCloud Deployment Analytics - $eventName = 'osdcloud_deploy' - function Send-OSDCloudDeployEvent { + $eventName = 'deploy-osdcloud-dev' + function Send-EventDeployOSDCloud { param( [Parameter(Mandatory)] [string]$EventName, @@ -90,10 +98,12 @@ function Invoke-OSDCloudWorkflowTask { } } # UUID - $deviceUUID = $global:OSDCoreDevice.UUID - # Convert the UUID to a hash value to protect user privacyand ensure a consistent identifier across events - $deviceUUIDHash = [System.BitConverter]::ToString([System.Security.Cryptography.SHA256]::Create().ComputeHash([System.Text.Encoding]::UTF8.GetBytes($deviceUUID))).Replace("-", "") - [string]$distinctId = $deviceUUIDHash + $deviceUUID = [System.String]$global:OSDCoreDevice.UUID + # Convert the UUID to a hash value to protect user privacy and ensure a consistent identifier across events + [string]$distinctId = $global:OSDCoreDevice.EndpointSHA + if ([string]::IsNullOrWhiteSpace($distinctId) -and -not [string]::IsNullOrWhiteSpace($deviceUUID)) { + $distinctId = [System.BitConverter]::ToString([System.Security.Cryptography.SHA256]::Create().ComputeHash([System.Text.Encoding]::UTF8.GetBytes($deviceUUID))).Replace("-", "") + } if ([string]::IsNullOrWhiteSpace($distinctId)) { $distinctId = [System.Guid]::NewGuid().ToString() } @@ -108,48 +118,59 @@ function Invoke-OSDCloudWorkflowTask { $osName = [string]$computerInfo.OsName } $eventProperties = @{ - deploymentPhase = [string]$deploymentPhase - osdManufacturer = $OSDCoreDevice.OSDManufacturer - osdModel = $OSDCoreDevice.OSDModel - osdProduct = $OSDCoreDevice.OSDProduct - deviceManufacturer = $OSDCoreDevice.ComputerManufacturer - deviceModel = $OSDCoreDevice.ComputerModel - deviceSystemFamily = $OSDCoreDevice.ComputerSystemFamily - deviceSystemProduct = $OSDCoreDevice.ComputerSystemProduct - deviceSystemSKU = $OSDCoreDevice.ComputerSystemSKU - deviceSystemType = $OSDCoreDevice.ComputerSystemType - biosReleaseDate = $OSDCoreDevice.BiosReleaseDate - biosSMBIOSBIOSVersion = $OSDCoreDevice.BiosSMBIOSBIOSVersion - keyboardName = $OSDCoreDevice.KeyboardName - keyboardLayout = $OSDCoreDevice.KeyboardLayout - winArchitecture = [string]$env:PROCESSOR_ARCHITECTURE - winBuildLabEx = [string]$computerInfo.WindowsBuildLabEx - winBuildNumber = [string]$computerInfo.OsBuildNumber - winCountryCode = [string]$computerInfo.OsCountryCode - winEditionId = [string]$computerInfo.WindowsEditionId - winInstallationType = [string]$computerInfo.WindowsInstallationType - winLanguage = [string]$computerInfo.OsLanguage - winName = [string]$osName - winTimeZone = [string]$computerInfo.TimeZone - winVersion = [string]$computerInfo.OsVersion - osdcloudModuleVersion = [string]$ModuleVersion + OSDManufacturer = $OSDCoreDevice.OSDManufacturer + OSDModel = $OSDCoreDevice.OSDModel + OSDProduct = $OSDCoreDevice.OSDProduct + deviceBaseBoardProduct = $OSDCoreDevice.BaseBoardProduct + deviceBiosReleaseDate = $OSDCoreDevice.BiosReleaseDate + deviceBiosVersion = $OSDCoreDevice.BiosVersion + deviceComputerManufacturer = $OSDCoreDevice.ComputerManufacturer + deviceComputerModel = $OSDCoreDevice.ComputerModel + deviceComputerSystemFamily = $OSDCoreDevice.ComputerSystemFamily + deviceComputerSystemProduct = $OSDCoreDevice.ComputerSystemProduct + deviceComputerSystemSKU = $OSDCoreDevice.ComputerSystemSKU + deviceComputerSystemType = $OSDCoreDevice.ComputerSystemType + deviceKeyboardLayout = $OSDCoreDevice.KeyboardLayout + deviceKeyboardName = $OSDCoreDevice.KeyboardName + deviceOSArchitecture = $OSDCoreDevice.OSArchitecture + deviceOSVersion = $OSDCoreDevice.OSVersion + deviceProcessorArchitecture = $OSDCoreDevice.ProcessorArchitecture + deviceSystemFirmwareHardwareId = $OSDCoreDevice.SystemFirmwareHardwareId + deviceTimeZone = $OSDCoreDevice.TimeZone + deviceTotalPhysicalMemoryGB = $OSDCoreDevice.TotalPhysicalMemoryGB + winArchitecture = [string]$env:PROCESSOR_ARCHITECTURE + winBuildLabEx = [string]$computerInfo.WindowsBuildLabEx + winBuildNumber = [string]$computerInfo.OsBuildNumber + winCountryCode = [string]$computerInfo.OsCountryCode + winEditionId = [string]$computerInfo.WindowsEditionId + winInstallationType = [string]$computerInfo.WindowsInstallationType + winLanguage = [string]$computerInfo.OsLanguage + winName = [string]$osName + winTimeZone = [string]$computerInfo.TimeZone + winVersion = [string]$computerInfo.OsVersion + osdcloudModuleVersion = [string]$($MyInvocation.MyCommand.Module.Version) osdcloudWorkflowName = [string]$global:OSDCloudDeploy.WorkflowName osdcloudWorkflowTaskName = [string]$global:OSDCloudDeploy.WorkflowTaskName osdcloudDriverPackName = [string]$global:OSDCloudDeploy.DriverPackName - osdcloudOSName = [string]$global:OSDCloudDeploy.OperatingSystemObject.OSName - osdcloudOSVersion = [string]$global:OSDCloudDeploy.OperatingSystemObject.OSVersion - osdcloudOSActivationStatus = [string]$global:OSDCloudDeploy.OperatingSystemObject.OSActivation - osdcloudOSBuild = [string]$global:OSDCloudDeploy.OperatingSystemObject.OSBuild - osdcloudOSBuildVersion = [string]$global:OSDCloudDeploy.OperatingSystemObject.OSBuildVersion - osdcloudOSLanguageCode = [string]$global:OSDCloudDeploy.OperatingSystemObject.OSLanguageCode + osdcloudOSName = [string]$operatingSystemCloudObject.OSName + osdcloudOSVersion = [string]$operatingSystemCloudObject.OSVersion + osdcloudOSActivationStatus = [string]$operatingSystemCloudObject.OSActivation + osdcloudOSBuild = [string]$operatingSystemCloudObject.OSBuild + osdcloudOSBuildVersion = [string]$operatingSystemCloudObject.OSBuildVersion + osdcloudOSLanguageCode = [string]$operatingSystemCloudObject.OSLanguageCode + deploymentPhase = [string]$deploymentPhase + idOSDeployDevice = [string]$global:OSDCoreDevice.idOSDeployDevice # OSDeploy Device Hash + idOSDeployBoot = [string]$global:OSDCoreDevice.idOSDeployBoot # OSDeploy Boot GUID + idRegisteredEmail = [string]$global:OSDCoreDevice.idRegisteredEmail + idRegisteredLicense = [string]$global:OSDCoreDevice.idRegisteredLicense } $postApi = 'phc_2h7nQJCo41Hc5C64B2SkcEBZOvJ6mHr5xAHZyjPl3ZK' - Send-OSDCloudDeployEvent -EventName $eventName -ApiKey $postApi -DistinctId $distinctId -Properties $eventProperties + Send-EventDeployOSDCloud -EventName $eventName -ApiKey $postApi -DistinctId $distinctId -Properties $eventProperties #endregion #================================================= # Start Workflow Task Execution if ($null -ne $global:OSDCloudDeploy.WorkflowTaskObject) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)]" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO]" foreach ($step in $global:OSDCloudDeploy.WorkflowTaskObject.steps) { # Set the current step in the global variable @@ -157,19 +178,19 @@ function Invoke-OSDCloudWorkflowTask { #================================================= # Should we skip this step? (support both 'skip' and legacy 'disable') if (($step.skip -eq $true) -or ($step.disable -eq $true)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [Skip:True] $($step.name)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [Skip:True] $($step.name)" continue } #================================================= # Can we test this step in full Windows OS (not WinPE)? - if (($global:IsWinPE -ne $true) -and ($step.testinfullos -ne $true)) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [Skip:FullOS] $($step.name)" + if (($env:SystemDrive -ne 'X:') -and ($step.testinfullos -ne $true)) { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [Skip:FullOS] $($step.name)" continue } #================================================= # Can we pause before this step? if ($step.pause -eq $true) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [Pause:True] $($step.name)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [Pause:True] $($step.name)" Pause } #================================================= @@ -182,7 +203,7 @@ function Invoke-OSDCloudWorkflowTask { if (($command -is [string]) -and ($command.Contains(" "))) { $commandline = $command } - elseif (-not (Get-Command $command -ErrorAction SilentlyContinue)) { + elseif (-not (Get-Command $command -ErrorAction Ignore)) { Write-Host -ForegroundColor DarkRed "[$(Get-Date -format s)] [Step command does not exist] $($step.command)" continue } diff --git a/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowUI.ps1 b/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowUI.ps1 index 7c6cc96..f5d2ff6 100644 --- a/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowUI.ps1 +++ b/OSDCloud/private/workflow/Invoke-OSDCloudWorkflowUI.ps1 @@ -57,7 +57,7 @@ function Invoke-OSDCloudWorkflowUI { throw } - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $($currentUiPath.Replace((Split-Path $ModuleBase -Parent) + '\', ''))" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $($currentUiPath.Replace((Split-Path $ModuleBase -Parent) + '\', ''))" . $currentUiPath #================================================= } diff --git a/OSDCloud/private/workflow/Resolve-OSDCloudWorkflowOSActivation.ps1 b/OSDCloud/private/workflow/Resolve-OSDCloudWorkflowOSActivation.ps1 new file mode 100644 index 0000000..ae69e77 --- /dev/null +++ b/OSDCloud/private/workflow/Resolve-OSDCloudWorkflowOSActivation.ps1 @@ -0,0 +1,53 @@ +function Resolve-OSDCloudWorkflowOSActivation { + <# + .SYNOPSIS + Resolves OS activation based on Windows edition requirements. + + .DESCRIPTION + Returns Volume for Enterprise* editions and Retail for Home* editions. Other + editions preserve the requested OSActivation value. + + .PARAMETER OSEdition + The selected Windows edition display name. + + .PARAMETER OSActivation + The requested or default OS activation value. + + .EXAMPLE + Resolve-OSDCloudWorkflowOSActivation -OSEdition 'Enterprise' -OSActivation 'Retail' + + Returns Volume. + + .OUTPUTS + System.String + + .NOTES + Private helper. Not exported. + #> + [CmdletBinding()] + [OutputType([System.String])] + param ( + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $OSEdition, + + [Parameter(Mandatory = $true)] + [ValidateNotNullOrEmpty()] + [System.String] + $OSActivation + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSEdition: $OSEdition" + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSActivation: $OSActivation" + + if ($OSEdition -like 'Enterprise*') { + return 'Volume' + } + if ($OSEdition -like 'Home*') { + return 'Retail' + } + + return $OSActivation +} diff --git a/OSDCloud/private/workflow/Test-OSDCloudWorkflowSettingsOS.ps1 b/OSDCloud/private/workflow/Test-OSDCloudWorkflowSettingsOS.ps1 new file mode 100644 index 0000000..9484a92 --- /dev/null +++ b/OSDCloud/private/workflow/Test-OSDCloudWorkflowSettingsOS.ps1 @@ -0,0 +1,137 @@ +function Test-OSDCloudWorkflowSettingsOS { + <# + .SYNOPSIS + Validates workflow operating system settings. + + .DESCRIPTION + Validates the parsed os-amd64.json or os-arm64.json settings object for required + sections, non-empty allowed values, unique values, valid defaults, and edition to + activation requirements. + + .PARAMETER Settings + The parsed workflow OS settings object from ConvertFrom-Json. + + .PARAMETER WorkflowName + The workflow name being validated. + + .PARAMETER Path + The settings file path being validated. + + .EXAMPLE + Test-OSDCloudWorkflowSettingsOS -Settings $osSettings -WorkflowName 'default' -Path $osJsonPath + + Validates parsed OS settings and returns True when valid. + + .OUTPUTS + System.Boolean + + .NOTES + Private helper. Not exported. + #> + [CmdletBinding()] + [OutputType([System.Boolean])] + param ( + [Parameter(Mandatory = $true)] + [ValidateNotNull()] + [System.Object] + $Settings, + + [Parameter(Mandatory = $false)] + [ValidateNotNullOrEmpty()] + [System.String] + $WorkflowName = 'default', + + [Parameter(Mandatory = $false)] + [System.String] + $Path + ) + + $Error.Clear() + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] WorkflowName: $WorkflowName" + + $settingsSource = if ([string]::IsNullOrWhiteSpace($Path)) { "workflow '$WorkflowName' OS settings" } else { $Path } + $requiredSettingNames = @('OperatingSystem', 'OSActivation', 'OSEdition', 'OSLanguageCode') + + foreach ($settingName in $requiredSettingNames) { + if ($Settings.PSObject.Properties.Match($settingName).Count -eq 0) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource is missing required '$settingName' settings." + } + + $setting = $Settings.$settingName + if ($null -eq $setting) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' settings are null." + } + if ($setting.PSObject.Properties.Match('default').Count -eq 0) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' is missing a default value." + } + if ($setting.PSObject.Properties.Match('values').Count -eq 0) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' is missing allowed values." + } + if ([string]::IsNullOrWhiteSpace([string]$setting.default)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' default value is empty." + } + if (@($setting.values).Count -eq 0) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' allowed values are empty." + } + } + + foreach ($settingName in @('OperatingSystem', 'OSActivation', 'OSLanguageCode')) { + $setting = $Settings.$settingName + $allowedValues = @($setting.values | ForEach-Object { [string]$_ }) + $emptyValues = @($allowedValues | Where-Object { [string]::IsNullOrWhiteSpace($_) }) + if ($emptyValues.Count -gt 0) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' contains empty allowed values." + } + + $duplicateValues = @($allowedValues | Group-Object | Where-Object { $_.Count -gt 1 }) + if ($duplicateValues.Count -gt 0) { + $duplicateNames = [string[]]($duplicateValues | ForEach-Object { $_.Name }) + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' contains duplicate values: $($duplicateNames -join ', ')" + } + + if ([string]$setting.default -notin $allowedValues) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource '$settingName' default '$($setting.default)' is not in allowed values: $($allowedValues -join ', ')" + } + } + + $editionValues = @($Settings.OSEdition.values) + $editionNames = @() + foreach ($editionValue in $editionValues) { + if ($null -eq $editionValue) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource 'OSEdition' contains a null edition entry." + } + if ($editionValue.PSObject.Properties.Match('Edition').Count -eq 0) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource 'OSEdition' contains an entry without an Edition value." + } + if ($editionValue.PSObject.Properties.Match('EditionId').Count -eq 0) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource 'OSEdition' contains an entry without an EditionId value." + } + if ([string]::IsNullOrWhiteSpace([string]$editionValue.Edition)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource 'OSEdition' contains an empty Edition value." + } + if ([string]::IsNullOrWhiteSpace([string]$editionValue.EditionId)) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource 'OSEdition' contains an empty EditionId value for Edition '$($editionValue.Edition)'." + } + $editionNames += [string]$editionValue.Edition + } + + $duplicateEditions = @($editionNames | Group-Object | Where-Object { $_.Count -gt 1 }) + if ($duplicateEditions.Count -gt 0) { + $duplicateEditionNames = [string[]]($duplicateEditions | ForEach-Object { $_.Name }) + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource 'OSEdition' contains duplicate Edition values: $($duplicateEditionNames -join ', ')" + } + + if ([string]$Settings.OSEdition.default -notin $editionNames) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource 'OSEdition' default '$($Settings.OSEdition.default)' is not in allowed values: $($editionNames -join ', ')" + } + + $activationValues = @($Settings.OSActivation.values | ForEach-Object { [string]$_ }) + if (@($editionNames | Where-Object { $_ -like 'Enterprise*' }).Count -gt 0 -and 'Volume' -notin $activationValues) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource contains Enterprise* editions, but OSActivation values do not include Volume." + } + if (@($editionNames | Where-Object { $_ -like 'Home*' }).Count -gt 0 -and 'Retail' -notin $activationValues) { + throw "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $settingsSource contains Home* editions, but OSActivation values do not include Retail." + } + + return $true +} diff --git a/OSDCloud/public/WinOS/Deploy-OSDCloud.ps1 b/OSDCloud/public/WinOS/Deploy-OSDCloud.ps1 index 46bff0e..47e7d5c 100644 --- a/OSDCloud/public/WinOS/Deploy-OSDCloud.ps1 +++ b/OSDCloud/public/WinOS/Deploy-OSDCloud.ps1 @@ -33,6 +33,23 @@ function Deploy-OSDCloud { The full OS profile name used to resolve the Env file path. Defaults to 'default'. Ignored in WinPE. + .PARAMETER DiskNumber + Specifies the local disk number to use for deployment. The disk number must + exist in the local disk inventory detected by OSDCloud. + + .PARAMETER KeyboardLayout + Overrides the detected keyboard layout value used to infer OSLanguageCode + when OSLanguageCode is not explicitly provided. + + .PARAMETER ProcessorArchitecture + Mock/testing processor architecture override used to validate ARM64 workflow + behavior on AMD64 devices. When supplied, overrides + OSDCoreDevice.ProcessorArchitecture before deployment OSArchitecture is + derived. + + .PARAMETER SkipWorkflowVerification + Skips the custom-workflow warning prompt and continues immediately. + .EXAMPLE Deploy-OSDCloud @@ -59,6 +76,16 @@ function Deploy-OSDCloud { Launches the OSDCloud graphical UX using the 'Lab' profile Env path. + .EXAMPLE + Deploy-OSDCloud -CLI -DiskNumber 1 + + Runs the default OSDCloud workflow immediately and deploys to local disk 1. + + .EXAMPLE + Deploy-OSDCloud -WorkflowName 'latest' -SkipWorkflowVerification + + Runs with a non-default workflow without showing the verification prompt. + .OUTPUTS System.Void @@ -82,63 +109,242 @@ function Deploy-OSDCloud { [System.Management.Automation.SwitchParameter] $CLI, + [Parameter(Mandatory = $false, HelpMessage = 'Optional local disk number to use as the deployment target.')] + [System.UInt32] + $DiskNumber, + [Parameter(Mandatory = $false)] [System.Management.Automation.SwitchParameter] $Force, [Parameter(Mandatory = $false)] [ArgumentCompleter({ - param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters) + param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters) - $profileNames = @('default') - if ($env:SystemDrive -ne 'X:' -and $env:ProgramData) { - $profileRoot = Join-Path -Path $env:ProgramData -ChildPath 'OSDeployCore\OSDCloud\Profiles' - if (Test-Path -Path $profileRoot -PathType Container) { - $directoryNames = Get-ChildItem -Path $profileRoot -Directory -ErrorAction SilentlyContinue | + $profileNames = @('default') + if ($env:SystemDrive -ne 'X:' -and $env:ProgramData) { + $profileRoot = Join-Path -Path $env:ProgramData -ChildPath 'OSDeployCore\OSDCloud\Profiles' + if (Test-Path -Path $profileRoot -PathType Container) { + $directoryNames = Get-ChildItem -Path $profileRoot -Directory -ErrorAction SilentlyContinue | Select-Object -ExpandProperty Name - if ($directoryNames) { - $profileNames += $directoryNames + if ($directoryNames) { + $profileNames += $directoryNames + } } } - } - foreach ($profileName in ($profileNames | Sort-Object -Unique)) { - if ($profileName -like "$wordToComplete*") { - [System.Management.Automation.CompletionResult]::new($profileName, $profileName, 'ParameterValue', $profileName) + foreach ($profileName in ($profileNames | Sort-Object -Unique)) { + if ($profileName -like "$wordToComplete*") { + [System.Management.Automation.CompletionResult]::new($profileName, $profileName, 'ParameterValue', $profileName) + } } - } - })] + })] + [ValidateNotNullOrEmpty()] + [System.String] + $ProfileName = 'default', + + [Parameter(Mandatory = $false, HelpMessage = 'Skips the custom workflow verification prompt.')] + [System.Management.Automation.SwitchParameter] + $SkipWorkflowVerification, + + [Parameter(Mandatory = $false, HelpMessage = 'Optional manufacturer override used for driver pack selection.')] [ValidateNotNullOrEmpty()] [System.String] - $ProfileName = 'default' + $OSDManufacturer, + + [Parameter(Mandatory = $false, HelpMessage = 'Optional model override used for driver pack selection.')] + [ValidateNotNullOrEmpty()] + [System.String] + $OSDModel, + + [Parameter(Mandatory = $false, HelpMessage = 'Optional product/system ID override used for driver pack selection.')] + [ValidateNotNullOrEmpty()] + [System.String] + $OSDProduct, + + [Parameter(Mandatory = $false, HelpMessage = 'Mock/testing processor architecture override used for deployment selection.')] + [ValidateNotNullOrEmpty()] + [ValidateSet('amd64', 'arm64')] + [System.String] + $ProcessorArchitecture, + + [Parameter(Mandatory = $false, HelpMessage = 'Optional keyboard layout value used to infer OSLanguageCode.')] + [ValidateNotNullOrEmpty()] + [System.String] + $KeyboardLayout ) dynamicparam { $moduleBase = $($MyInvocation.MyCommand.Module.ModuleBase) $resolvedWorkflowName = if ($PSBoundParameters.ContainsKey('WorkflowName')) { [System.String]$PSBoundParameters['WorkflowName'] } else { 'default' } - return Get-OSDCloudWorkflowRuntimeParameter -WorkflowName $resolvedWorkflowName -ModuleBase $moduleBase + $workflowRuntimeParameter = @{ + ModuleBase = $moduleBase + WorkflowName = $resolvedWorkflowName + } + if ($PSBoundParameters.ContainsKey('ProcessorArchitecture')) { + $workflowRuntimeParameter['ProcessorArchitecture'] = [System.String]$PSBoundParameters['ProcessorArchitecture'] + } + return Get-OSDCloudWorkflowRuntimeParameter @workflowRuntimeParameter } end { #================================================= $ModuleVersion = $($MyInvocation.MyCommand.Module.Version) - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] $ModuleVersion" - + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] [$($MyInvocation.MyCommand.Name)] $ModuleVersion" + <# Write-Host -ForegroundColor DarkCyan 'OSDCloud collects analytic data during the deployment process to help improve the product and user experience.' Write-Host -ForegroundColor DarkCyan 'No personally identifiable information (PII) is collected, and all data is anonymized to protect user privacy.' Write-Host -ForegroundColor DarkCyan 'Collected data includes information about the deployment environment and system configuration.' Write-Host -ForegroundColor DarkCyan 'By using OSDCloud, you consent to the collection of analytic data as outlined in the privacy policy:' Write-Host -ForegroundColor DarkGray 'https://github.com/OSDeploy/OSDCloud/blob/main/PRIVACY.md' Write-Host - + #> + #================================================= + # Workflow Verification and Warning + if ($WorkflowName -ne 'default' -and -not $SkipWorkflowVerification.IsPresent) { + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] OSDCloud Workflow: $WorkflowName" + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] This version of OSDCloud is designed to run the default workflow." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Using a custom workflow may result in unexpected behavior or errors." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Please contact OSDCloud support to report issues with custom workflows and to seek assistance." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] Press any key to continue." + if ($Host -and $Host.UI -and $Host.UI.RawUI) { + $null = $Host.UI.RawUI.ReadKey('NoEcho,IncludeKeyDown') + } + else { + Write-Warning "Unable to read key input in this host. Continuing without key confirmation." + } + } + elseif ($WorkflowName -ne 'default' -and $SkipWorkflowVerification.IsPresent) { + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] OSDCloud Workflow: $WorkflowName" + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] SkipWorkflowVerification is set; continuing without verification prompt." + } + else { + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] OSDCloud Workflow: default" + } + #================================================= + # Populate variables from environment and profile settings, and apply any parameter overrides. $envParameters = @{} - if (Get-Command -Name 'ConvertTo-OSDCloudEnvParameter' -ErrorAction SilentlyContinue) { - # $envParameters = ConvertTo-OSDCloudEnvParameter -BoundParameters $PSBoundParameters + if (Get-Command -Name 'ConvertTo-OSDCloudEnvParameter' -ErrorAction Ignore) { + $envParameters = ConvertTo-OSDCloudEnvParameter -BoundParameters $PSBoundParameters + } + #================================================= + # Set the osdcloud-logs Path + $LogsPath = "$env:TEMP\osdcloud-logs" + if (-not (Test-Path -Path $LogsPath)) { + New-Item -Path $LogsPath -ItemType Directory -Force | Out-Null + } + #================================================= + # Initialize OSD + Initialize-OSDCoreLicense + Initialize-OSDCoreDevice + #================================================= + # OSDCoreDevice Manufacturer, Model, Product overrides + if ($OSDManufacturer -and -not [string]::IsNullOrWhiteSpace($OSDManufacturer)) { + $global:OSDCoreDevice.OSDManufacturer = $OSDManufacturer + } + if ($OSDModel -and -not [string]::IsNullOrWhiteSpace($OSDModel)) { + $global:OSDCoreDevice.OSDModel = $OSDModel + } + if ($OSDProduct -and -not [string]::IsNullOrWhiteSpace($OSDProduct)) { + $global:OSDCoreDevice.OSDProduct = $OSDProduct + } + if ($ProcessorArchitecture -and -not [string]::IsNullOrWhiteSpace($ProcessorArchitecture)) { + $global:OSDCoreDevice.ProcessorArchitecture = $ProcessorArchitecture + } + #================================================= + # Export OSDCoreDevice to XML and JSON for use in other scripts or workflows + $OSDCoreDeviceClixmlPath = Join-Path -Path $LogsPath -ChildPath 'OSDCoreDevice.xml' + if (Test-Path -LiteralPath $OSDCoreDeviceClixmlPath) { + Remove-Item -LiteralPath $OSDCoreDeviceClixmlPath -Force -ErrorAction SilentlyContinue + } + $global:OSDCoreDevice | Export-Clixml -Path $OSDCoreDeviceClixmlPath -Force + + $OSDCoreDeviceJsonPath = Join-Path -Path $LogsPath -ChildPath 'OSDCoreDevice.json' + if (Test-Path -LiteralPath $OSDCoreDeviceJsonPath) { + Remove-Item -LiteralPath $OSDCoreDeviceJsonPath -Force -ErrorAction SilentlyContinue + } + $global:OSDCoreDevice | ConvertTo-Json -Depth 10 | Out-File $OSDCoreDeviceJsonPath -Force -Encoding utf8 + #================================================= + # Automatically determine default OSLanguageCode from the detected keyboard layout if not explicitly provided. + $resolvedOSLanguageCode = if ($PSBoundParameters.ContainsKey('OSLanguageCode')) { + [System.String]$PSBoundParameters['OSLanguageCode'] } - Initialize-OSDCloudDeploy -WorkflowName $WorkflowName -EnvParameters $envParameters -ProfileName $ProfileName + else { + $null + } + + if (-not $PSBoundParameters.ContainsKey('OSLanguageCode')) { + $languageKeyboardLayout = if ($PSBoundParameters.ContainsKey('KeyboardLayout')) { $KeyboardLayout } else { $global:OSDCoreDevice.KeyboardLayout } + if ($global:OSDCoreLicense.IsRegistered -and $languageKeyboardLayout -and -not [string]::IsNullOrWhiteSpace($languageKeyboardLayout)) { + $resolvedOSLanguageCode = Convert-KeyboardLayoutToLanguageCode -KeyboardLayout $languageKeyboardLayout -FallbackLanguageCode 'en-US' + Write-Host -ForegroundColor DarkGreen "[$(Get-Date -format s)] [INFO] Recast: OSDCloud has set the OSLanguageCode to $resolvedOSLanguageCode based on the KeyboardLayout [$languageKeyboardLayout]." + } + else { + $resolvedOSLanguageCode = 'en-US' + if (-not $global:OSDCoreLicense.IsRegistered) { + Write-Verbose "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Skipping OSLanguageCode keyboard conversion because OSDCloud is not registered." + } + } + } + #================================================= + # Start Initialization of OSDCloud Deployment + $initializeOSDCloudDeployParameters = @{ + EnvParameters = $envParameters + OSLanguageCode = $resolvedOSLanguageCode + OSDManufacturer = $global:OSDCoreDevice.OSDManufacturer + OSDModel = $global:OSDCoreDevice.OSDModel + OSDProduct = $global:OSDCoreDevice.OSDProduct + ProcessorArchitecture = $global:OSDCoreDevice.ProcessorArchitecture + ProfileName = $ProfileName + WorkflowName = $WorkflowName + } + $initializeOSDCloudDeployCommand = Get-Command -Name 'Initialize-DeployOSDCloud' -ErrorAction Ignore + if ($initializeOSDCloudDeployCommand) { + $excludedCommonParameterNames = @( + 'Verbose', + 'Debug', + 'ErrorAction', + 'WarningAction', + 'InformationAction', + 'ErrorVariable', + 'WarningVariable', + 'InformationVariable', + 'OutVariable', + 'OutBuffer', + 'PipelineVariable', + 'WhatIf', + 'Confirm' + ) + + $initializeEligibleParameterNames = @( + $initializeOSDCloudDeployCommand.Parameters.Keys | + Where-Object { + (-not $initializeOSDCloudDeployParameters.ContainsKey($_)) -and + ($_ -notin $excludedCommonParameterNames) + } + ) + + foreach ($parameterName in $initializeEligibleParameterNames) { + if (-not $PSBoundParameters.ContainsKey($parameterName)) { + continue + } + $parameterValue = $PSBoundParameters[$parameterName] + if ($null -eq $parameterValue) { + continue + } + if ($parameterValue -is [System.String] -and [string]::IsNullOrWhiteSpace($parameterValue)) { + continue + } + + $initializeOSDCloudDeployParameters[$parameterName] = $parameterValue + } + } + Initialize-DeployOSDCloud @initializeOSDCloudDeployParameters + #================================================= + # Start Deployment Workflow if ($CLI.IsPresent) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Invoke-OSDCloudWorkflowTask" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Invoke-OSDCloudWorkflowTask" $global:OSDCloudDeploy.TimeStart = Get-Date $global:OSDCloudDeploy | Out-Host Invoke-OSDCloudWorkflowTask @@ -150,8 +356,8 @@ function Deploy-OSDCloud { Invoke-OSDCloudWorkflowUI -WorkflowName $WorkflowName if ($null -ne $global:OSDCloudDeploy.TimeStart) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Invoke-OSDCloudWorkflowTask $WorkflowName" - $global:OSDCloudDeploy | Out-Host + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Invoke-OSDCloudWorkflowTask $WorkflowName" + # $global:OSDCloudDeploy | Out-Host try { Invoke-OSDCloudWorkflowTask } @@ -160,7 +366,7 @@ function Deploy-OSDCloud { } } else { - Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] OSDCloud Workflow '$WorkflowName' was not started." + Write-Host -ForegroundColor DarkYellow "[$(Get-Date -format s)] [WARN] OSDCloud Workflow '$WorkflowName' was not started." } } } diff --git a/OSDCloud/public/WinOS/Start-OSDCloudExplorer.ps1 b/OSDCloud/public/WinOS/Start-OSDCloudExplorer.ps1 index f5b37cb..2b02614 100644 --- a/OSDCloud/public/WinOS/Start-OSDCloudExplorer.ps1 +++ b/OSDCloud/public/WinOS/Start-OSDCloudExplorer.ps1 @@ -881,7 +881,7 @@ $listView.add_DoubleClick({ } elseif ($extension -eq '.log' -and $fileInfo.Length -le 5MB) { # .log files under 5 MB → prefer CMTrace, fall back to notepad - $cmTrace = Get-Command -Name 'cmtrace.exe' -ErrorAction SilentlyContinue + $cmTrace = Get-Command -Name 'cmtrace.exe' -ErrorAction Ignore if ($null -ne $cmTrace) { Start-Process -FilePath $cmTrace.Source -ArgumentList $targetPath } diff --git a/OSDCloud/public/WinPE/Invoke-WinPEStartup.ps1 b/OSDCloud/public/WinPE/Invoke-WinPEStartup.ps1 index 3b19adf..00aa2ed 100644 --- a/OSDCloud/public/WinPE/Invoke-WinPEStartup.ps1 +++ b/OSDCloud/public/WinPE/Invoke-WinPEStartup.ps1 @@ -3,10 +3,10 @@ function Invoke-WinPEStartup { <# .SYNOPSIS - Runs the WinPE startup workflow for OSDCloud. + Runs the WinPEStartup workflow for OSDCloud. .DESCRIPTION - Executes the OSDCloud WinPE startup sequence from a single entry point. + Executes the OSDCloud WinPEStartup sequence from a single entry point. The function can optionally load defaults from module JSON, discover and apply a startup profile, and then run startup steps in order including environment setup, drivers, files, hardware checks, connectivity, module @@ -387,7 +387,7 @@ function Invoke-WinPEStartup { $candidateProfiles = [System.Collections.Generic.List[object]]::new() foreach ($driveLetter in [char[]](67..90)) { - $profileRoot = '{0}:\WinPEStartup\Profiles' -f $driveLetter + $profileRoot = '{0}:\WinPEStartup\profiles' -f $driveLetter if (-not (Test-Path -LiteralPath $profileRoot -PathType Container)) { continue @@ -427,7 +427,7 @@ function Invoke-WinPEStartup { } else { Write-Host '' - Write-Host 'Available WinPE Startup profiles:' + Write-Host 'Available WinPEStartup profiles:' $orderedProfiles | Select-Object Index, Name, Drive, Path | Format-Table -AutoSize | @@ -557,7 +557,7 @@ function Invoke-WinPEStartup { Write-Verbose "Invoke-WinPEStartup: Applied default '$parameterName' from JSON configuration." } - Write-Verbose 'Invoke-WinPEStartup: Starting full WinPE startup sequence' + Write-Verbose 'Invoke-WinPEStartup: Starting full WinPEStartup sequence' } process { diff --git a/OSDCloud/public/WinPE/Invoke-WinPEStartupManager.ps1 b/OSDCloud/public/WinPE/Invoke-WinPEStartupManager.ps1 index 91fc194..2b988d6 100644 --- a/OSDCloud/public/WinPE/Invoke-WinPEStartupManager.ps1 +++ b/OSDCloud/public/WinPE/Invoke-WinPEStartupManager.ps1 @@ -1,9 +1,9 @@ <# .SYNOPSIS - Invokes a WinPE startup utility action by Id. + Invokes a WinPEStartup utility action by Id. .DESCRIPTION - Routes WinPE startup actions to the corresponding helper command. + Routes WinPEStartup actions to the corresponding helper command. Actions include on-screen keyboard handling, hardware and error display, network utilities, and module update operations. @@ -55,7 +55,7 @@ System.Void .NOTES - This function is intended for WinPE startup workflows. + This function is intended for WinPEStartup workflows. The UpdateModule action requires Value to be set to a module name. .LINK @@ -92,7 +92,7 @@ function Invoke-WinPEStartupManager { } else { # osk.exe is not present in all versions of WinPE, so check for it before trying to launch it - if (Get-Command -Name 'osk.exe' -ErrorAction SilentlyContinue) { + if (Get-Command -Name 'osk.exe' -ErrorAction Ignore) { Write-Host "OSDCloud OSK: Keyboard not detected. Launching On-Screen Keyboard." Start-Process -FilePath 'osk.exe' -WindowStyle Minimized } diff --git a/OSDCloud/public/WinPE/Show-WinPEStartupDeviceErrors.ps1 b/OSDCloud/public/WinPE/Show-WinPEStartupDeviceErrors.ps1 index c38a190..d57fe94 100644 --- a/OSDCloud/public/WinPE/Show-WinPEStartupDeviceErrors.ps1 +++ b/OSDCloud/public/WinPE/Show-WinPEStartupDeviceErrors.ps1 @@ -11,7 +11,7 @@ function Show-WinPEStartupDeviceErrors { .EXAMPLE Show-WinPEStartupDeviceErrors - Displays detected device errors during WinPE startup. + Displays detected device errors during WinPEStartup. .OUTPUTS System.Void diff --git a/OSDCloud/public/WinPE/Show-WinPEStartupIpconfig.ps1 b/OSDCloud/public/WinPE/Show-WinPEStartupIpconfig.ps1 index ec6708f..c8f2960 100644 --- a/OSDCloud/public/WinPE/Show-WinPEStartupIpconfig.ps1 +++ b/OSDCloud/public/WinPE/Show-WinPEStartupIpconfig.ps1 @@ -4,7 +4,7 @@ .DESCRIPTION Runs ipconfig /all to display network adapter and addressing details. - This function is typically used during WinPE startup troubleshooting. + This function is typically used during WinPEStartup troubleshooting. .EXAMPLE Show-WinPEStartupIpconfig diff --git a/OSDCloud/public/WinPE/Show-WinPEStartupWifi.ps1 b/OSDCloud/public/WinPE/Show-WinPEStartupWifi.ps1 index 2decb15..3504b05 100644 --- a/OSDCloud/public/WinPE/Show-WinPEStartupWifi.ps1 +++ b/OSDCloud/public/WinPE/Show-WinPEStartupWifi.ps1 @@ -17,7 +17,7 @@ System.Void .NOTES - This function is intended for WinPE startup workflows. + This function is intended for WinPEStartup workflows. If required wireless components are missing, Wi-Fi start is skipped. #> function Show-WinPEStartupWifi { @@ -25,15 +25,15 @@ function Show-WinPEStartupWifi { param () #================================================= $Error.Clear() - $host.ui.RawUI.WindowTitle = "[$(Get-Date -format s)] OSDCloud - WinPE Startup Wi-Fi" + $host.ui.RawUI.WindowTitle = "[$(Get-Date -format s)] OSDCloud - WinPEStartup Wi-Fi" #================================================= # Test-OSDCloudInternetConnection if (Test-OSDCloudInternetConnection -Uri 'google.com') { - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Ping google.com success. Device is already connected to the Internet" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ping google.com success. Device is already connected to the Internet" $StartOSDCloudWifi = $false } else { - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Ping google.com failed. Will attempt to connect to a Wireless Network" + # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Ping google.com failed. Will attempt to connect to a Wireless Network" $StartOSDCloudWifi = $true } #================================================= @@ -59,7 +59,7 @@ function Show-WinPEStartupWifi { } if (!$StartOSDCloudWifi) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Unable to enable Wireless Network due to missing components" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Unable to enable Wireless Network due to missing components" if ($MissingDlls.Count -gt 0) { Write-Host -ForegroundColor Yellow "[$(Get-Date -format s)] [$($MyInvocation.MyCommand.Name)] Missing DLL files: $($MissingDlls -join ', ')" } @@ -98,17 +98,17 @@ function Show-WinPEStartupWifi { $IP = Test-Connection -ComputerName $(HOSTNAME) -Count 1 | Select-Object -ExpandProperty IPV4Address if ($null -eq $IP) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Network adapter error. This should not happen!" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Network adapter error. This should not happen!" Start-Sleep -Seconds 2 } elseif ($IP.IPAddressToString.StartsWith('169.254') -or $IP.IPAddressToString.Equals('127.0.0.1')) { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] IP address not yet assigned by DHCP. Trying to get a new DHCP lease." + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] IP address not yet assigned by DHCP. Trying to get a new DHCP lease." ipconfig /release | Out-Null ipconfig /renew | Out-Null Start-Sleep -Seconds 2 } else { - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] Network configuration renewed with IP: $($IP.IPAddressToString)" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] Network configuration renewed with IP: $($IP.IPAddressToString)" Start-Sleep -Seconds 2 break } diff --git a/OSDCloud/public/WinPE/Update-WinPEStartupModule.ps1 b/OSDCloud/public/WinPE/Update-WinPEStartupModule.ps1 index c6f0555..5d32c83 100644 --- a/OSDCloud/public/WinPE/Update-WinPEStartupModule.ps1 +++ b/OSDCloud/public/WinPE/Update-WinPEStartupModule.ps1 @@ -24,7 +24,7 @@ System.Void .NOTES - This function is intended for WinPE startup workflows. + This function is intended for WinPEStartup workflows. Installation uses AllUsers scope, Force, and SkipPublisherCheck. #> function Update-WinPEStartupModule { @@ -41,7 +41,7 @@ function Update-WinPEStartupModule { Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] Update PowerShell Module: $Name" Write-Host -ForegroundColor DarkCyan "[$(Get-Date -format s)] Close this window to cancel (starting in 10 seconds)" Start-Sleep -Seconds 10 - Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] $Name $($GalleryPSModule.Version) [AllUsers]" + Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [INFO] $Name $($GalleryPSModule.Version) [AllUsers]" Install-Module $Name -Scope AllUsers -Force -SkipPublisherCheck Import-Module $Name -Force #================================================= diff --git a/OSDCloud/workflow/classic/ux/App.config b/OSDCloud/workflow/classic/ux/App.config deleted file mode 100644 index 193aecc..0000000 --- a/OSDCloud/workflow/classic/ux/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/OSDCloud/workflow/classic/ux/App.xaml b/OSDCloud/workflow/classic/ux/App.xaml deleted file mode 100644 index 62b4dc9..0000000 --- a/OSDCloud/workflow/classic/ux/App.xaml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - diff --git a/OSDCloud/workflow/classic/ux/App.xaml.cs b/OSDCloud/workflow/classic/ux/App.xaml.cs deleted file mode 100644 index f890a00..0000000 --- a/OSDCloud/workflow/classic/ux/App.xaml.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; -using System.Linq; -using System.Threading.Tasks; -using System.Windows; - -namespace OSDCloud -{ - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application - { - } -} diff --git a/OSDCloud/workflow/classic/ux/MainWindow.ps1 b/OSDCloud/workflow/classic/ux/MainWindow.ps1 deleted file mode 100644 index 8bc74db..0000000 --- a/OSDCloud/workflow/classic/ux/MainWindow.ps1 +++ /dev/null @@ -1,575 +0,0 @@ -#region PoSHPF - Version 1.2 -# Grab all resources (MahApps, etc), all XAML files, and any potential static resources -$global:resources = Get-ChildItem -Path "$PSScriptRoot\Resources\*.dll" -ErrorAction SilentlyContinue -$global:XAML = Get-ChildItem -Path "$PSScriptRoot\*.xaml" | Where-Object { $_.Name -ne 'App.xaml' } -ErrorAction SilentlyContinue #Changed path and exclude App.xaml -$global:MediaResources = Get-ChildItem -Path "$PSScriptRoot\Media" -ErrorAction SilentlyContinue - -# This class allows the synchronized hashtable to be available across threads, -# but also passes a couple of methods along with it to do GUI things via the -# object's dispatcher. -class SyncClass { - #Hashtable containing all forms/windows and controls - automatically created when newing up - [hashtable]$SyncHash = [hashtable]::Synchronized(@{}) - - # method to close the window - pass window name - [void]CloseWindow($windowName) { - $this.SyncHash.$windowName.Dispatcher.Invoke([action] { $this.SyncHash.$windowName.Close() }, 'Normal') - } - - # method to update GUI - pass object name, property and value - [void]UpdateElement($object, $property, $value) { - $this.SyncHash.$object.Dispatcher.Invoke([action] { $this.SyncHash.$object.$property = $value }, 'Normal') - } -} -$global:SyncClass = [SyncClass]::new() # create a new instance of this SyncClass to use. - -################### -## Import Resources -################### -# Load WPF Assembly -Add-Type -assemblyName PresentationFramework - -# Load Resources -foreach ($dll in $resources) { [System.Reflection.Assembly]::LoadFrom("$($dll.FullName)") | out-null } - -############## -## Import XAML -############## -$xp = '[^a-zA-Z_0-9]' # All characters that are not a-Z, 0-9, or _ -$vx = @() # An array of XAML files loaded - -foreach ($x in $XAML) { - # Items from XAML that are known to cause issues - # when PowerShell parses them. - $xamlToRemove = @( - 'mc:Ignorable="d"', - "x:Class=`"(.*?)`"", - "xmlns:local=`"(.*?)`"" - ) - - $xaml = Get-Content $x.FullName # Load XAML - $xaml = $xaml -replace 'x:N', 'N' # Rename x:Name to just Name (for consumption in variables later) - foreach ($xtr in $xamlToRemove) { $xaml = $xaml -replace $xtr } # Remove items from $xamlToRemove - - # Create a new variable to store the XAML as XML - New-Variable -Name "xaml$(($x.BaseName) -replace $xp, '_')" -Value ($xaml -as [xml]) -Force - - # Add XAML to list of XAML documents processed - $vx += "$(($x.BaseName) -replace $xp, '_')" -} -####################### -## Add Media Resources -####################### -$imageFileTypes = @('.jpg', '.bmp', '.gif', '.tif', '.png') # Supported image filetypes -$avFileTypes = @('.mp3', '.wav', '.wmv') # Supported audio/visual filetypes -$xp = '[^a-zA-Z_0-9]' # All characters that are not a-Z, 0-9, or _ -if ($MediaResources.Count -gt 0) { - ## Okay... the following code is just silly. I know - ## but hear me out. Adding the nodes to the elements - ## directly caused big issues - mainly surrounding the - ## "x:" namespace identifiers. This is a hacky fix but - ## it does the trick. - foreach ($v in $vx) { - $xml = ((Get-Variable -Name "xaml$($v)").Value) # Load the XML - - # add the resources needed for strings - $xml.DocumentElement.SetAttribute('xmlns:sys', 'clr-namespace:System;assembly=System') - - # if the document doesn't already have a "Window.Resources" create it - if ($null -eq ($xml.DocumentElement.'Window.Resources')) { - $fragment = '' - $fragment += '' - } - - # Add each StaticResource with the key of the base name and source to the full name - foreach ($sr in $MediaResources) { - $srname = "$($sr.BaseName -replace $xp, '_')$($sr.Extension.Substring(1).ToUpper())" #convert name to basename + Uppercase Extension - if ($sr.Extension -in $imageFileTypes) { $fragment += "" } - if ($sr.Extension -in $avFileTypes) { - $uri = [System.Uri]::new($sr.FullName) - $fragment += "$uri" - } - } - - # if the document doesn't already have a "Window.Resources" close it - if ($null -eq ($xml.DocumentElement.'Window.Resources')) { - $fragment += '' - $fragment += '' - $xml.DocumentElement.InnerXml = $fragment + $xml.DocumentElement.InnerXml - } - # otherwise just add the fragment to the existing resource dictionary - else { - $xml.DocumentElement.'Window.Resources'.ResourceDictionary.InnerXml += $fragment - } - - # Reset the value of the variable - (Get-Variable -Name "xaml$($v)").Value = $xml - } -} -################# -## Create "Forms" -################# -$forms = @() -foreach ($x in $vx) { - $Reader = (New-Object System.Xml.XmlNodeReader ((Get-Variable -Name "xaml$($x)").Value)) #load the xaml we created earlier into XmlNodeReader - New-Variable -Name "form$($x)" -Value ([Windows.Markup.XamlReader]::Load($Reader)) -Force #load the xaml into XamlReader - $forms += "form$($x)" #add the form name to our array - $SyncClass.SyncHash.Add("form$($x)", (Get-Variable -Name "form$($x)").Value) #add the form object to our synched hashtable -} -################################# -## Create Controls (Buttons, etc) -################################# -$controls = @() -$xp = '[^a-zA-Z_0-9]' # All characters that are not a-Z, 0-9, or _ -foreach ($x in $vx) { - $xaml = (Get-Variable -Name "xaml$($x)").Value #load the xaml we created earlier - $xaml.SelectNodes('//*[@Name]') | ForEach-Object { #find all nodes with a "Name" attribute - $cname = "form$($x)Control$(($_.Name -replace $xp, '_'))" - Set-Variable -Name "$cname" -Value $SyncClass.SyncHash."form$($x)".FindName($_.Name) #create a variale to hold the control/object - $controls += (Get-Variable -Name "form$($x)Control$($_.Name)").Name #add the control name to our array - $SyncClass.SyncHash.Add($cname, $SyncClass.SyncHash."form$($x)".FindName($_.Name)) #add the control directly to the hashtable - } -} -############################ -## FORMS AND CONTROLS OUTPUT -############################ -<# Write-Host -ForegroundColor Cyan "The following forms were created:" -$forms | %{ Write-Host -ForegroundColor Yellow " `$$_"} #output all forms to screen -if($controls.Count -gt 0){ - Write-Host "" - Write-Host -ForegroundColor Cyan "The following controls were created:" - $controls | %{ Write-Host -ForegroundColor Yellow " `$$_"} #output all named controls to screen -} #> -####################### -## DISABLE A/V AUTOPLAY -####################### -foreach ($x in $vx) { - $carray = @() - $fts = $syncClass.SyncHash."form$($x)" - foreach ($c in $fts.Content.Children) { - if ($c.GetType().Name -eq 'MediaElement') { #find all controls with the type MediaElement - $c.LoadedBehavior = 'Manual' #Don't autoplay - $c.UnloadedBehavior = 'Stop' #When the window closes, stop the music - $carray += $c #add the control to an array - } - } - if ($carray.Count -gt 0) { - New-Variable -Name "form$($x)PoSHPFCleanupAudio" -Value $carray -Force # Store the controls in an array to be accessed later - $syncClass.SyncHash."form$($x)".Add_Closed({ - foreach ($c in (Get-Variable "form$($x)PoSHPFCleanupAudio").Value) { - $c.Source = $null #stops any currently playing media - } - }) - } -} - -##################### -## RUNSPACE FUNCTIONS -##################### -## Yo dawg... Runspace to clean up Runspaces -## Thank you Boe Prox / Stephen Owen -#region RSCleanup -$Script:JobCleanup = [hashtable]::Synchronized(@{}) -$Script:Jobs = [system.collections.arraylist]::Synchronized((New-Object System.Collections.ArrayList)) #hashtable to store all these runspaces -$jobCleanup.Flag = $True #cleanup jobs -$newRunspace = [runspacefactory]::CreateRunspace() #create a new runspace for this job to cleanup jobs to live -$newRunspace.ApartmentState = 'STA' -$newRunspace.ThreadOptions = 'ReuseThread' -$newRunspace.Open() -$newRunspace.SessionStateProxy.SetVariable('jobCleanup', $jobCleanup) #pass the jobCleanup variable to the runspace -$newRunspace.SessionStateProxy.SetVariable('jobs', $jobs) #pass the jobs variable to the runspace -$jobCleanup.PowerShell = [PowerShell]::Create().AddScript({ - #Routine to handle completed runspaces - Do { - Foreach ($runspace in $jobs) { - If ($runspace.Runspace.isCompleted) { - #if runspace is complete - [void]$runspace.powershell.EndInvoke($runspace.Runspace) #then end the script - $runspace.powershell.dispose() #dispose of the memory - $runspace.Runspace = $null #additional garbage collection - $runspace.powershell = $null #additional garbage collection - } - } - #Clean out unused runspace jobs - $temphash = $jobs.clone() - $temphash | Where-Object { - $_.runspace -eq $Null - } | ForEach-Object { - $jobs.remove($_) - } - Start-Sleep -Seconds 1 #lets not kill the processor here - } while ($jobCleanup.Flag) - }) -$jobCleanup.PowerShell.Runspace = $newRunspace -$jobCleanup.Thread = $jobCleanup.PowerShell.BeginInvoke() -#endregion RSCleanup - -#This function creates a new runspace for a script block to execute -#so that you can do your long running tasks not in the UI thread. -#Also the SyncClass is passed to this runspace so you can do UI -#updates from this thread as well. -function Start-BackgroundScriptBlock($scriptBlock) { - $newRunspace = [runspacefactory]::CreateRunspace() - $newRunspace.ApartmentState = 'STA' - $newRunspace.ThreadOptions = 'ReuseThread' - $newRunspace.Open() - $newRunspace.SessionStateProxy.SetVariable('SyncClass', $SyncClass) - $PowerShell = [PowerShell]::Create().AddScript($scriptBlock) - $PowerShell.Runspace = $newRunspace - $PowerShell.BeginInvoke() - - #Add it to the job list so that we can make sure it is cleaned up - <# [void]$Jobs.Add( - [pscustomobject]@{ - PowerShell = $PowerShell - Runspace = $PowerShell.BeginInvoke() - } - ) #> -} -#================================================ -# Window Functions -# Minimize Command and PowerShell Windows -#================================================ -$Script:showWindowAsync = Add-Type -MemberDefinition @' -[DllImport("user32.dll")] -public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow); -'@ -Name 'Win32ShowWindowAsync' -Namespace Win32Functions -PassThru -function Hide-CmdWindow() { - $CMDProcess = Get-Process -Name cmd -ErrorAction Ignore - foreach ($Item in $CMDProcess) { - $null = $showWindowAsync::ShowWindowAsync((Get-Process -Id $Item.id).MainWindowHandle, 2) - } -} -function Hide-PowershellWindow() { - $null = $showWindowAsync::ShowWindowAsync((Get-Process -Id $pid).MainWindowHandle, 2) -} -function Show-PowershellWindow() { - $null = $showWindowAsync::ShowWindowAsync((Get-Process -Id $pid).MainWindowHandle, 10) -} -#endregion -#================================================= -# Tpm -if ($global:OSDCoreDevice.IsTpmSpec -eq $true) { - $formMainWindowControlIsTpmSpec.Foreground = 'Green' -} -else { - $formMainWindowControlIsTpmSpec.Foreground = 'Red' -} - -# Autopilot -if ($global:OSDCoreDevice.IsAutopilotSpec -eq $true) { - $formMainWindowControlIsAutopilotSpec.Foreground = 'Green' -} -else { - $formMainWindowControlIsAutopilotSpec.Foreground = 'Red' -} -#endregion -#================================================= -#region OSDCloud Workflow Library -$global:OSDCloudDeploy.Flows | ForEach-Object { - $formMainWindowControlTaskComboBox.Items.Add($_.Name) | Out-Null -} -$formMainWindowControlTaskComboBox.SelectedIndex = 0 -#endregion -#================================================= -#region OperatingSystem -$global:OSDCloudDeploy.OperatingSystemValues | ForEach-Object { - $formMainWindowControlOperatingSystemCombo.Items.Add($_) | Out-Null -} -$formMainWindowControlOperatingSystemCombo.SelectedValue = $global:OSDCloudDeploy.OperatingSystem -#endregion -#================================================= -#region OSLanguage -$global:OSDCloudDeploy.OSLanguageCodeValues | ForEach-Object { - $formMainWindowControlOSLanguageCodeCombo.Items.Add($_) | Out-Null -} -$formMainWindowControlOSLanguageCodeCombo.SelectedValue = $global:OSDCloudDeploy.OSLanguageCode -#endregion -#================================================= -#region OSEdition -$global:OSDCloudDeploy.OSEditionValues | ForEach-Object { - $formMainWindowControlOSEditionCombo.Items.Add($_.Edition) | Out-Null -} - -$global:OSDCloudDeploy.OSEditionValues | ForEach-Object { - $formMainWindowControlOSEditionIdCombo.Items.Add($_.EditionId) | Out-Null -} -#endregion -#================================================= -#region OSActivation -$global:OSDCloudDeploy.OSActivationValues | ForEach-Object { - $formMainWindowControlOSActivationCombo.Items.Add($_) | Out-Null -} -#endregion -#================================================= -#region DriverPack -$global:OSDCloudDeploy.DriverPackValues | ForEach-Object { - $formMainWindowControlDriverPackCombo.Items.Add($_.Name) | Out-Null -} -if ($global:OSDCloudDeploy.DriverPackName) { - $formMainWindowControlDriverPackCombo.SelectedValue = $global:OSDCloudDeploy.DriverPackName -} -#endregion -#================================================= -#region Set-FormConfigurationCloud -function Set-FormConfigurationCloud { - $formMainWindowControlOperatingSystemLabel.Content = 'Operating System' - - <# - $OperatingSystemEditions = $global:DeployOSDCloudOperatingSystems | ` - Where-Object {$_.OperatingSystem -eq "$($formMainWindowControlOperatingSystemCombo.SelectedValue)"} | ` - Where-Object {$_.OSLanguageCode -eq "$($formMainWindowControlOSLanguageCodeCombo.SelectedValue)"} | ` - Select-Object -ExpandProperty OSEdition -Unique - #> - - $formMainWindowControlOSLanguageCodeCombo.IsEnabled = $true - $formMainWindowControlOSLanguageCodeCombo.Visibility = 'Visible' - $formMainWindowControlOSLanguageCodeCombo.SelectedValue = $global:OSDCloudDeploy.OSLanguageCode - - $formMainWindowControlOSEditionLabel.Content = 'Edition' - $formMainWindowControlOSEditionCombo.IsEnabled = $true - $formMainWindowControlOSEditionCombo.Visibility = 'Visible' - $formMainWindowControlOSEditionCombo.SelectedValue = $global:OSDCloudDeploy.OSEdition - - $formMainWindowControlOSActivationCombo.IsEnabled = $true - $formMainWindowControlOSActivationCombo.Visibility = 'Visible' - $formMainWindowControlOSActivationCombo.SelectedValue = $global:OSDCloudDeploy.OSActivation - - $formMainWindowControlOSEditionIdCombo.IsEnabled = $false - $formMainWindowControlOSEditionIdCombo.Visibility = 'Visible' - $formMainWindowControlOSEditionIdCombo.SelectedValue = $global:OSDCloudDeploy.OSEditionId - - $formMainWindowControlImageNameCombobox.Items.Clear() - $formMainWindowControlImageNameCombobox.Visibility = 'Collapsed' -} -Set-FormConfigurationCloud -#endregion -#================================================= -#region CustomImage -<# -[array]$OSDCloudWorkflowSettingsOSIso = @() -[array]$OSDCloudWorkflowSettingsOSIso = Find-OSDCloudAsset -Name '*.iso' -Path '\OSDCloud\OS\' | Where-Object { $_.Length -gt 3GB } - -foreach ($Item in $OSDCloudWorkflowSettingsOSIso) { - if ((Get-DiskImage -ImagePath $Item.FullName).Attached) { - #ISO is already mounted - } - else { - Write-Host "Mounting OSDCloud OS ISO $($Item.FullName)" -ForegroundColor Cyan - $Results = Mount-DiskImage -ImagePath $Item.FullName - $Results | Select-Object -Property Attached, DevicePath, ImagePath, Number, Size | Format-List - } -} - -$CustomImageChildItem = @() -[array]$CustomImageChildItem = Find-OSDCloudAsset -Name '*.wim' -Path '\OSDCloud\OS\' -[array]$CustomImageChildItem += Find-OSDCloudAsset -Name 'install.wim' -Path '\Sources\' -[array]$CustomImageChildItem += Find-OSDCloudAsset -Name '*.esd' -Path '\OSDCloud\OS\' -[array]$CustomImageChildItem += Find-OSDCloudAsset -Name '*install.swm' -Path '\OSDCloud\OS\' -$CustomImageChildItem = $CustomImageChildItem | Sort-Object -Property Length -Unique | Sort-Object FullName | Where-Object { $_.Length -gt 2GB } - -if ($CustomImageChildItem) { - $OSDCloudOperatingSystem = Get-OSDCatalogOperatingSystems - $CustomImageChildItem = $CustomImageChildItem | Where-Object { $_.Name -notin $OSDCloudOperatingSystem.FileName } - $CustomImageChildItem | ForEach-Object { - $formMainWindowControlOperatingSystemCombo.Items.Add($_) | Out-Null - } -} -#> -#endregion -#================================================ -#region OSEdition -$formMainWindowControlOSEditionCombo.add_SelectionChanged( - { - # Home - if ($formMainWindowControlOSEditionCombo.SelectedValue -match 'Home') { - $formMainWindowControlOSActivationCombo.SelectedValue = 'Retail' - $formMainWindowControlOSActivationCombo.IsEnabled = $false - } - - # Education - if ($formMainWindowControlOSEditionCombo.SelectedValue -match 'Education') { - $formMainWindowControlOSActivationCombo.IsEnabled = $true - } - - # Enterprise - if ($formMainWindowControlOSEditionCombo.SelectedValue -match 'Enterprise') { - $formMainWindowControlOSActivationCombo.SelectedValue = 'Volume' - $formMainWindowControlOSActivationCombo.IsEnabled = $false - } - - # Pro - if ($formMainWindowControlOSEditionCombo.SelectedValue -match 'Pro') { - $formMainWindowControlOSActivationCombo.IsEnabled = $true - } - - $formMainWindowControlOSEditionIdCombo.SelectedValue = $global:OSDCloudDeploy.OSEditionValues | Where-Object { $_.Edition -eq $formMainWindowControlOSEditionCombo.SelectedValue } | Select-Object -ExpandProperty EditionId - } -) -#endregion -#================================================ -#region Operating System -<# -function Set-FormConfigurationLocal { - $formMainWindowControlOSLanguageCodeCombo.Visibility = 'Collapsed' - $formMainWindowControlOSEditionLabel.Content = 'ImageName' - $formMainWindowControlOSEditionCombo.Visibility = 'Collapsed' - $formMainWindowControlOSEditionIdLabel.Visibility = 'Collapsed' - $formMainWindowControlOSEditionIdCombo.Visibility = 'Collapsed' - $formMainWindowControlOSActivationLabel.Visibility = 'Collapsed' - $formMainWindowControlOSActivationCombo.Visibility = 'Collapsed' - $formMainWindowControlImageNameCombobox.Visibility = 'Visible' - $formMainWindowControlImageNameCombobox.Items.Clear() - $formMainWindowControlImageNameCombobox.IsEnabled = $true - $GetWindowsImageOptions = Get-WindowsImage -ImagePath $formMainWindowControlOperatingSystemCombo.SelectedValue - $GetWindowsImageOptions | ForEach-Object { - $formMainWindowControlImageNameCombobox.Items.Add($_.ImageName) | Out-Null - } - $formMainWindowControlImageNameCombobox.SelectedIndex = 0 - $formMainWindowControlOperatingSystemLabel.Content = 'Windows Image' - $formMainWindowControlOSEditionLabel.Content = 'Image Name' -} - -$formMainWindowControlOperatingSystemCombo.add_SelectionChanged( - { - if ($formMainWindowControlOperatingSystemCombo.SelectedValue -like 'Windows 1*64') { - Set-FormConfigurationCloud - } - else { - Set-FormConfigurationLocal - } - } -) -#> -#endregion -#================================================ -#region Menu Controls -$formMainWindowControlStartMSInfo.add_Click({ Start-Process msinfo32.exe }) -$formMainWindowControlStartOSK.add_Click({ Start-Process osk.exe }) -$formMainWindowControlStartCmdPrompt.add_Click({ Start-Process cmd }) -$formMainWindowControlStartPowerShell.add_Click({ Start-Process PowerShell.exe }) -#endregion -#================================================ -#region StartButton -$formMainWindowControlStartButton.add_Click( - { - $formMainWindow.Close() - Show-PowershellWindow - #================================================ - # ImageFile - #================================================ - $OperatingSystem = $formMainWindowControlOperatingSystemCombo.SelectedValue - - # Determine OperatingSystem - if ($OperatingSystem -in $global:OSDCloudDeploy.OperatingSystemValues) { - - $OSActivation = $formMainWindowControlOSActivationCombo.SelectedValue - $OSLanguageCode = $formMainWindowControlOSLanguageCodeCombo.SelectedValue - $OSEdition = $formMainWindowControlOSEditionCombo.SelectedValue - $OSEditionId = $formMainWindowControlOSEditionIdCombo.SelectedValue - $OSVersion = $OperatingSystem.Split(' ')[2] - - $OperatingSystemObject = $global:DeployOSDCloudOperatingSystems | Where-Object { $_.OperatingSystem -match $OperatingSystem } | Where-Object { $_.OSActivation -eq $OSActivation } | Where-Object { $_.OSLanguageCode -eq $OSLanguageCode } - - $ImageFileUrl = $OperatingSystemObject.FilePath - $ImageFileName = $OperatingSystemObject.FileName - $OSBuild = $OperatingSystemObject.OSBuild - - $LocalImageFileInfo = Find-OSDCloudAsset -Name $OperatingSystemObject.FileName -Path '\OSDCloud\OS\' | Sort-Object FullName | Where-Object { $_.Length -gt 3GB } - $LocalImageFileInfo = $LocalImageFileInfo | Where-Object { $_.FullName -notlike 'C*' } | Where-Object { $_.FullName -notlike 'X*' } | Select-Object -First 1 - } - else { - $OperatingSystem = $null - $LocalImageFilePath = $formMainWindowControlOperatingSystemCombo.SelectedValue - if ($LocalImageFilePath) { - $LocalImageFileInfo = $CustomImageChildItem | Where-Object { $_.FullName -eq "$LocalImageFilePath" } - $ImageFileName = Split-Path -Path $LocalImageFileInfo.FullName -Leaf - $LocalImageName = $formMainWindowControlImageNameCombobox.SelectedValue - } - } - #================================================ - # Workflow - #================================================ - $OSDCloudWorkflowTaskName = $formMainWindowControlTaskComboBox.SelectedValue - $OSDCloudWorkflowTaskObject = $global:OSDCloudDeploy.Flows | Where-Object { $_.Name -eq $OSDCloudWorkflowTaskName } | Select-Object -First 1 - #================================================ - # DriverPack - #================================================ - if ($formMainWindowControlDriverPackCombo.Text) { - $DriverPackName = $formMainWindowControlDriverPackCombo.Text - $DriverPackObject = $global:OSDCloudDeploy.DriverPackValues | Where-Object { $_.Name -eq $DriverPackName } - } - #================================================ - # Global Variables - #================================================ - $global:OSDCloudDeploy.WorkflowTaskName = $OSDCloudWorkflowTaskName - $global:OSDCloudDeploy.WorkflowTaskObject = $OSDCloudWorkflowTaskObject - $global:OSDCloudDeploy.OperatingSystem = $OperatingSystem - $global:OSDCloudDeploy.OSActivation = $OSActivation - $global:OSDCloudDeploy.OSBuild = $OSBuild - $global:OSDCloudDeploy.OSEdition = $OSEdition - $global:OSDCloudDeploy.OSEditionId = $OSEditionId - $global:OSDCloudDeploy.OSLanguageCode = $OSLanguageCode - $global:OSDCloudDeploy.OSVersion = $OSVersion - $global:OSDCloudDeploy.DriverPackName = $DriverPackName - $global:OSDCloudDeploy.ImageFileName = $ImageFileName - $global:OSDCloudDeploy.ImageFileUrl = $ImageFileUrl - $global:OSDCloudDeploy.LocalImageFileInfo = $LocalImageFileInfo - $global:OSDCloudDeploy.LocalImageFilePath = $LocalImageFilePath - $global:OSDCloudDeploy.LocalImageName = $LocalImageName - - $global:OSDCloudDeploy.DriverPackObject = $DriverPackObject - $global:OSDCloudDeploy.OperatingSystemObject = $OperatingSystemObject - - $global:OSDCloudDeploy.TimeStart = (Get-Date) - #================================================= - # Invoke-OSDCloudWorkflowTask.ps1 - #================================================= - # Write-Host -ForegroundColor DarkGray "[$(Get-Date -format s)] [OSDCloud Frontend]" - # $global:OSDCloudWorkflowFrontend | Out-Host - # Invoke-OSDCloudWorkflowTask - #================================================= - } -) -#endregion -#================================================ -#region Customizations -#TODO fix the Version since this is not a Module function it doesn't give a version -$ModuleVersion = $($MyInvocation.MyCommand.Module.Version) -$formMainWindow.Title = "OSDCloud on $($global:OSDCoreDevice.OSDManufacturer) $($global:OSDCoreDevice.OSDModel)" -#endregion -#================================================ -#region Branding -$formMainWindowControlBrandingTitleControl.Content = 'OSDCloud' -$formMainWindowControlBrandingTitleControl.Foreground = '#0067C0' -#endregion -#================================================ -#region Startup -Hide-CmdWindow -Hide-PowershellWindow -######################## -## WIRE UP YOUR CONTROLS -######################## -# simple example: $formMainWindowControlButton.Add_Click({ your code }) -# -# example with BackgroundScriptBlock and UpdateElement -# $formmainControlButton.Add_Click({ -# $sb = { -# $SyncClass.UpdateElement("formmainControlProgress","Value",25) -# } -# Start-BackgroundScriptBlock $sb -# }) - -############################ -###### DISPLAY DIALOG ###### -############################ -[void]$formMainWindow.ShowDialog() - -########################## -##### SCRIPT CLEANUP ##### -########################## -$jobCleanup.Flag = $false #Stop Cleaning Jobs -$jobCleanup.PowerShell.Runspace.Close() #Close the runspace -$jobCleanup.PowerShell.Dispose() #Remove the runspace from memory -#endregion -#================================================ diff --git a/OSDCloud/workflow/classic/ux/MainWindow.xaml b/OSDCloud/workflow/classic/ux/MainWindow.xaml deleted file mode 100644 index 57630c7..0000000 --- a/OSDCloud/workflow/classic/ux/MainWindow.xaml +++ /dev/null @@ -1,369 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -