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

11 lines
193 B
PowerShell

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