Vers 0.4.20. Updates to AppDiff and IP Address resolution
This commit is contained in:
parent
49750da7a5
commit
df2cb9b0d7
|
|
@ -43,5 +43,14 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DisplayName": "Visage 7.1 (64 bit)"
|
"DisplayName": "Visage 7.1 (64 bit)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayName": "Microsoft Edge Update"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayName": "Npcap OEM"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"DisplayName": "Dell PointStick Driver"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
RootModule = 'Get-PC.psm1'
|
RootModule = 'Get-PC.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '0.4.19'
|
ModuleVersion = '0.4.20'
|
||||||
|
|
||||||
# Supported PSEditions
|
# Supported PSEditions
|
||||||
# CompatiblePSEditions = @()
|
# CompatiblePSEditions = @()
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,8 @@ function Get-ExampleApps {
|
||||||
$sccmPath = (Join-Path (get-item $PSScriptRoot).Parent.FullName 'Private\SCCMQuery.ps1')
|
$sccmPath = (Join-Path (get-item $PSScriptRoot).Parent.FullName 'Private\SCCMQuery.ps1')
|
||||||
Import-Module -Force $appsPath
|
Import-Module -Force $appsPath
|
||||||
Import-Module -Force $sccmPath
|
Import-Module -Force $sccmPath
|
||||||
$apps = Get-Apps $examplePC | Select-Object -Property "DisplayName"
|
# Assumes supplied PC name is online
|
||||||
|
$apps = Get-Apps $examplePC "Online" | Select-Object -Property "DisplayName"
|
||||||
$trimmedApps = @()
|
$trimmedApps = @()
|
||||||
foreach ($app in $apps) {
|
foreach ($app in $apps) {
|
||||||
$skip = $false
|
$skip = $false
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ Patch
|
||||||
-Update Added Visage to the AppDiff ignore list
|
-Update Added Visage to the AppDiff ignore list
|
||||||
-Fix Capped ping attempts to one in CMDB fallback so it doesn't hang on offline computers
|
-Fix Capped ping attempts to one in CMDB fallback so it doesn't hang on offline computers
|
||||||
-Fix IP Address queries now resolve to the hostname correctly, but does not act as a workaround for duplicate A records
|
-Fix IP Address queries now resolve to the hostname correctly, but does not act as a workaround for duplicate A records
|
||||||
|
-Update Appdiff now ignores CrowdStrike but won't ignore Carbon Black
|
||||||
|
|
||||||
Patch 2025-3-20
|
Patch 2025-3-20
|
||||||
-Update GPUpdate is now more robust by clearing more files and registry keys
|
-Update GPUpdate is now more robust by clearing more files and registry keys
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue