Skip to content
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

[MicroWin] Preparation for 2025 #3066

Merged
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a45402e
Set Boot Manager entry timeout to 0
CodingWonders Nov 22, 2024
9dcf8dd
Exclude Windows Hello stuff from package removal
CodingWonders Nov 24, 2024
706f65f
Obscure passwords with Base64 and fix indentation
CodingWonders Nov 24, 2024
c596824
Fix name of excluded package
CodingWonders Nov 24, 2024
8e647e8
Update comment
CodingWonders Nov 24, 2024
cc7b3d7
Remove jargon of scratch directory options
CodingWonders Dec 1, 2024
2c4cf50
Package exclusion improvements
CodingWonders Dec 1, 2024
759d8f6
Exclude Windows Photo Viewer from dir removal
CodingWonders Dec 1, 2024
9979a02
Merge branch 'main' into microwin-2025-preparation
CodingWonders Dec 1, 2024
3cfc7c9
Improve copy operation to Ventoy drives
CodingWonders Dec 2, 2024
40c7a1b
Merge branch 'main' into microwin-2025-preparation
CodingWonders Dec 2, 2024
aa71783
Merge branch 'main' into microwin-2025-preparation
CodingWonders Dec 6, 2024
2f8eaf4
Add VirtIO functionality and more enhancements
CodingWonders Dec 6, 2024
2466b90
Merge branch 'main' into microwin-2025-preparation
CodingWonders Dec 14, 2024
d23e6f9
Fix typo (#3104)
CodingWonders Dec 14, 2024
31fc415
Access specific property of ISO image object
CodingWonders Dec 19, 2024
3f2d42f
Add detections for expedited app removal
CodingWonders Dec 19, 2024
3de9256
Update message
CodingWonders Dec 19, 2024
bee4d04
Add VirtIO instructions to MicroWin page
CodingWonders Dec 19, 2024
9dd508d
Add DISM command fallback
CodingWonders Dec 27, 2024
d2db3be
Exclude OpenSSH from package removal
CodingWonders Dec 28, 2024
c977182
Fixed some more indentation
CodingWonders Dec 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions functions/microwin/Microwin-RemovePackages.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ function Microwin-RemovePackages {
$_ -NotLike "*VBSCRIPT*" -AND
$_ -NotLike "*License*" -AND
$_ -NotLike "*Hello-Face*" -AND
$_ -NotLike "*ISE*"
$_ -NotLike "*ISE*" -AND
$_ -NotLike "*OpenSSH*"
}
} else {
$pkgList = dism /english /image="$scratchDir" /get-packages | Select-String -Pattern "Package Identity : " -CaseSensitive -SimpleMatch
Expand All @@ -58,7 +59,8 @@ function Microwin-RemovePackages {
$_ -NotLike "*VBSCRIPT*" -AND
$_ -NotLike "*License*" -AND
$_ -NotLike "*Hello-Face*" -AND
$_ -NotLike "*ISE*"
$_ -NotLike "*ISE*" -AND
$_ -NotLike "*OpenSSH*"
CodingWonders marked this conversation as resolved.
Show resolved Hide resolved
}
} else {
Write-Host "Packages could not be obtained with DISM. MicroWin processing will continue, but packages will be skipped."
Expand Down