Conversation
Summarize all branch changes in the changelog and expose the current repository module version in the README.
There was a problem hiding this comment.
Copilot review overview
🟡 Changes recommended
Catalog contents and selection contain unresolved release-blocking inconsistencies.
Get a fresh assessment by requesting another Copilot review.
Review effort: Lite
Findings: 2
Open (4)
What changed in this PR
Releases OSDCloud 26.9.24.1 with updated WinPE startup behavior, catalog handling, and documentation.
Changes:
- Adds WinPE profile environment-variable support.
- Updates startup defaults and OS/driver catalog refresh logic.
- Updates release metadata, catalogs, documentation, and changelog.
| File | Summary |
|---|---|
README.md |
Updates the displayed module version. |
OSDCloud/public/WinPE/Invoke-WinPEStartup.ps1 |
Adds profile environment-variable handling. |
OSDCloud/private/Initialize-DeployOSDCloud.ps1 |
Updates hash verification output. |
OSDCloud/private/core-operatingsystem/Initialize-ModuleCoreOperatingSystems.ps1 |
Updates OS catalog discovery and selection. |
OSDCloud/private/core-driverpack/Initialize-ModuleCoreDriverPacks.ps1 |
Enables OEM catalog refreshes without licensing gates. |
OSDCloud/private/core-cache/Update-RecastOSDCloudUSBCache.ps1 |
Updates hash verification output. |
OSDCloud/OSDCloud.psd1 |
Bumps version and updates release metadata. |
OSDCloud/core/winpestartup-profiles/DeviceInfo.json |
Removes a redundant profile. |
OSDCloud/core/PSDefaultParameterValues.json |
Changes default startup commands. |
docs/about_winpestartup.md |
Documents environment-variable support. |
CHANGELOG.md |
Records release changes. |
.github/skills/author-winpe-profile-json/SKILL.md |
Updates profile authoring guidance. |
💡 Configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
|
|
||
| - Added WinPE startup profile support for process-scoped environment variables through an `Environment` or `env` object, including validation and inheritance by child PowerShell sessions. | ||
| - Added operating system catalog discovery from ProgramData and mounted drive `OSDCloud\catalogs\operatingsystems` directories, selecting the latest valid catalog revision for each major build. | ||
| - Added the Windows 11 25H2 operating system catalog for build `26200.9457` and restored builds `26200.8653` and `26200.8873` to the active catalog set. |
Comment on lines
+162
to
+169
| $selectedCatalogs = $catalogCandidates | | ||
| Group-Object -Property MajorBuild | | ||
| ForEach-Object { | ||
| $latestBuildVersion = $_.Group | | ||
| Sort-Object -Property BuildVersion -Descending | | ||
| Select-Object -First 1 -ExpandProperty BuildVersion | ||
|
|
||
| $_.Group | Where-Object { $_.BuildVersion -eq $latestBuildVersion } |
Comment on lines
20
to
+21
| Recast OSDCloud PowerShell Module - Preview | ||
| Workplace Ninja Summit Release |
| "Invoke-WinPEStartup:InvokeMainCommand": [ | ||
| "Show-OSDCloudDeviceInfo", | ||
| "Deploy-OSDCloud" | ||
| "Show-OSDCloudDeviceInfo" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Summary
Validation
Test-ModuleManifestreports version26.9.24.1git diff --checkpasses