SCCM apps report version correctly
This commit is contained in:
parent
7c451bb82c
commit
487ed24fa3
|
|
@ -35,7 +35,8 @@ Function Get-Apps($ComputerName, $CompStatus, $TableView) {
|
||||||
} else {
|
} else {
|
||||||
Write-Progress -Activity "Getting apps for $ComputerName" -Status 'Querying SCCM apps' -PercentComplete 10 -ParentId 1
|
Write-Progress -Activity "Getting apps for $ComputerName" -Status 'Querying SCCM apps' -PercentComplete 10 -ParentId 1
|
||||||
$86apps, $64apps = Get-SCCM_Apps $ComputerName
|
$86apps, $64apps = Get-SCCM_Apps $ComputerName
|
||||||
$apps = ($86apps + $64apps) | Sort-Object 'x86/x64',DisplayName -Unique | ForEach-Object { $_.PSObject.TypeNames.Insert(0, 'GetPC.App'); $_ }
|
$apps = ($86apps + $64apps) | Select-Object *,@{N='DisplayVersion';E={$_.Version}} |
|
||||||
|
Sort-Object 'x86/x64',DisplayName -Unique | ForEach-Object { $_.PSObject.TypeNames.Insert(0, 'GetPC.App'); $_ }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
Patch
|
Patch
|
||||||
-Update SCCMQueryBlock uses asset tag to query Spark!
|
-Update SCCMQueryBlock uses asset tag to query Spark!
|
||||||
|
-Fix SCCM apps report version correctly
|
||||||
|
|
||||||
Patch 2025-5-6
|
Patch 2025-5-6
|
||||||
-Update Custom SHSApps have more robust detection
|
-Update Custom SHSApps have more robust detection
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue