2023-10-03 08:18:00 +00:00
|
|
|
#Get the winget App Information
|
2022-07-05 14:48:23 +00:00
|
|
|
|
2023-10-03 08:18:00 +00:00
|
|
|
Function Get-AppInfo ($AppID) {
|
|
|
|
#Get AppID Info
|
|
|
|
$String = & $winget show $AppID --accept-source-agreements -s winget | Out-String
|
2023-09-15 14:40:37 +00:00
|
|
|
|
2023-10-03 08:18:00 +00:00
|
|
|
#Search for Release Note info
|
|
|
|
$ReleaseNote = [regex]::match($String, "(?<=Release Notes Url: )(.*)(?=\n)").Groups[0].Value
|
2023-09-15 14:40:37 +00:00
|
|
|
|
2023-10-03 08:18:00 +00:00
|
|
|
#Return Release Note
|
|
|
|
return $ReleaseNote
|
2022-10-26 22:49:10 +00:00
|
|
|
}
|