5 lines
151 B
PowerShell
5 lines
151 B
PowerShell
|
function Get-IncludedApps{
|
||
|
if (Test-Path "$WorkingDir\included_apps.txt"){
|
||
|
return Get-Content -Path "$WorkingDir\included_apps.txt"
|
||
|
}
|
||
|
}
|