wingetautoupdate/Winget-AutoUpdate/functions/Confirm-Installation.ps1

27 lines
700 B
PowerShell
Raw Normal View History

Function Confirm-Installation ($AppName, $AppVer){
#Set json export file
2023-10-19 14:48:04 +00:00
$JsonFile = "$WorkingDir\InstalledApps.json"
#Get installed apps and version in json file
& $Winget export -s winget -o $JsonFile --include-versions | Out-Null
#Get json content
$Json = Get-Content $JsonFile -Raw | ConvertFrom-Json
#Get apps and version in hashtable
$Packages = $Json.Sources.Packages
#Remove json file
Remove-Item $JsonFile -Force
# Search for specific app and version
$Apps = $Packages | Where-Object { $_.PackageIdentifier -eq $AppName -and $_.Version -like "$AppVer*"}
if ($Apps){
return $true
}
else{
return $false
}
}