Functions/Apps.ps1
#Function to get the Block List apps function Get-ExcludedApps { if (($UPConfig.WAU_apps).Count -gt 0) { return $UPConfig.WAU_apps.Trim() -split ',' } elseif (Test-Path "$WorkingDir\apps.txt") { return (Get-Content -Path "$WorkingDir\apps.txt").Trim() | Where-Object { $_.length -gt 0 } } } #Function to get the allow List apps function Get-IncludedApps { if (($UPConfig.WAU_apps).Count -gt 0) { return $UPConfig.WAU_apps.Trim() -split ',' } elseif (Test-Path "$WorkingDir\pps.txt") { return (Get-Content -Path "$WorkingDir\apps.txt").Trim() | Where-Object { $_.length -gt 0 } } } |