wingetautoupdate/Winget-AutoUpdate/functions/Get-ExcludedApps.ps1

11 lines
195 B
PowerShell

#Function to get Black List apps
function Get-ExcludedApps {
if (Test-Path "$WorkingDir\excluded_apps.txt") {
return Get-Content -Path "$WorkingDir\excluded_apps.txt"
}
}