-
Notifications
You must be signed in to change notification settings - Fork 48
Extract event providers from offline Windows images #621
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jschick04
merged 15 commits into
jschick/offline-provider-extraction
from
jschick/offline-image-extraction
Jun 29, 2026
Merged
Changes from 8 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
084e817
Add offline foreign-image provider extraction core
jschick04 7b90016
Add offline image provider source facade with full enumeration
jschick04 da09476
Route create-database to the offline image provider source
jschick04 f327633
Recover dirty image registry hives via RegLoadKey fallback
jschick04 0853c36
Build offline provider databases from WIM and ESD images
jschick04 a1600ed
Resolve offline legacy provider parameter message files
jschick04 5ba946f
Limit the offline image-kind error and isolate the hive native API
jschick04 8d54f0d
Harden offline image path containment and resolve ProgramFiles providers
jschick04 559692e
Infer offline image kind from the path and make --image-kind optional
jschick04 a080c98
Reject iso at parse and clarify the orphan wim-index error
jschick04 682f460
Make WIM size estimate reparse-safe and re-arm the orphan-mount sweep…
jschick04 a2fbbcc
Fail closed when the recovery ownership beacon cannot be published
jschick04 7daa977
Name the Mutex name argument
jschick04 f66da45
Skip already-seen names before building modern offline providers
jschick04 95ca59f
Fail the WIM free-space preflight on negative required bytes
jschick04 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
17 changes: 17 additions & 0 deletions
17
src/EventLogExpert.DatabaseTools/CreateDatabase/OfflineImageKind.cs
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| // // Copyright (c) Microsoft Corporation. | ||
| // // Licensed under the MIT License. | ||
|
|
||
| namespace EventLogExpert.DatabaseTools.CreateDatabase; | ||
|
|
||
| /// <summary> | ||
| /// How the offline Windows image named by <see cref="CreateDatabaseRequest.OfflineImagePath" /> is accessed when | ||
| /// building a provider database from it. <see cref="Directory" /> reads a mounted volume or extracted image folder; | ||
| /// <see cref="Wim" /> extracts an image (by <see cref="CreateDatabaseRequest.WimIndex" />) from a <c>.wim</c>/ | ||
| /// <c>.esd</c> file first. <see cref="Iso" /> is reserved for a later phase. | ||
| /// </summary> | ||
| public enum OfflineImageKind | ||
| { | ||
| Directory, | ||
| Wim, | ||
| Iso | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.