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

5 lines
151 B
PowerShell
Raw Normal View History

2022-03-14 13:55:02 +00:00
function Get-ExcludedApps{
if (Test-Path "$WorkingDir\excluded_apps.txt"){
return Get-Content -Path "$WorkingDir\excluded_apps.txt"
}
}