commit
8a6e3e34e0
|
@ -204,13 +204,21 @@ function Install-WingetAutoUpdate {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif (!(Test-Path "$WingetUpdatePath\included_apps.txt")) {
|
elseif (!(Test-Path "$WingetUpdatePath\included_apps.txt")) {
|
||||||
|
if ((Test-Path "$PSScriptRoot\included_apps.txt")) {
|
||||||
|
Copy-Item -Path "$PSScriptRoot\included_apps.txt" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
|
}
|
||||||
|
else {
|
||||||
New-Item -Path $WingetUpdatePath -Name "included_apps.txt" -ItemType "file" -ErrorAction SilentlyContinue | Out-Null
|
New-Item -Path $WingetUpdatePath -Name "included_apps.txt" -ItemType "file" -ErrorAction SilentlyContinue | Out-Null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
if (!$NoClean) {
|
if (!$NoClean) {
|
||||||
Copy-Item -Path "$PSScriptRoot\excluded_apps.txt" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
Copy-Item -Path "$PSScriptRoot\excluded_apps.txt" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
}
|
}
|
||||||
|
elseif (!(Test-Path "$WingetUpdatePath\excluded_apps.txt")) {
|
||||||
|
Copy-Item -Path "$PSScriptRoot\excluded_apps.txt" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Set dummy regkeys for notification name and icon
|
# Set dummy regkeys for notification name and icon
|
||||||
|
|
Loading…
Reference in New Issue