Skip to content

Commit 223cd94

Browse files
committed
Add missing Write-Progress statements
1 parent 2fcd641 commit 223cd94

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

build/Seed.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
939570951
1+
480420904

info/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 2026-01-14
4+
5+
### Fixed
6+
7+
- Missing Write-Progress statements causing progress overlay to not be cleaned up after certain checks.
8+
39
## 2025-12-25
410

511
### Added

src/check/Configuration.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,6 +1332,7 @@ function Invoke-MsiAutomaticRepairWhitelistCheck {
13321332

13331333
$ProgressCount += 1
13341334
}
1335+
Write-Progress -Activity "Checking whitelisted MSI files ($($WhitelistedMsiFiles.Count)/$($WhitelistedMsiFiles.Count))..." -Status "100% Complete:" -Completed
13351336
}
13361337

13371338
$CheckResult = New-Object -TypeName PSObject

src/helper/Msi.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -817,5 +817,6 @@ function Find-MsiFile {
817817

818818
$ProgressCount += 1
819819
}
820+
Write-Progress -Activity "Enumerating MSI files ($($MsiFilePaths.Count)/$($MsiFilePaths.Count))..." -Status "100% Complete:" -Completed
820821
}
821822
}

0 commit comments

Comments
 (0)