Adjustments
parent
68e00ff195
commit
78ed7c070a
|
@ -230,7 +230,6 @@ function Install-WinGet {
|
||||||
|
|
||||||
#Install/Update Winget
|
#Install/Update Winget
|
||||||
Update-WinGet $WinGetAvailableVersion
|
Update-WinGet $WinGetAvailableVersion
|
||||||
Write-ToLog "-> WinGet v$WinGetInstalledVersion installed!`n" "Green"
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Write-ToLog "-> WinGet is up to date: v$WinGetInstalledVersion`n" "Green"
|
Write-ToLog "-> WinGet is up to date: v$WinGetInstalledVersion`n" "Green"
|
||||||
|
@ -246,15 +245,14 @@ function Install-WingetAutoUpdate {
|
||||||
if (!(Test-Path $WAUinstallPath)) {
|
if (!(Test-Path $WAUinstallPath)) {
|
||||||
New-Item -ItemType Directory -Force -Path $WAUinstallPath | Out-Null
|
New-Item -ItemType Directory -Force -Path $WAUinstallPath | Out-Null
|
||||||
}
|
}
|
||||||
else {
|
elseif (!$NoClean) {
|
||||||
if (!$NoClean) {
|
|
||||||
Remove-Item -Path "$WAUinstallPath\*" -Exclude *.log -Recurse -Force
|
Remove-Item -Path "$WAUinstallPath\*" -Exclude *.log -Recurse -Force
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#Keep critical files
|
#Keep critical files
|
||||||
Get-ChildItem -Path $WAUinstallPath -Exclude *.txt, mods, logs | Remove-Item -Recurse -Force
|
Get-ChildItem -Path $WAUinstallPath -Exclude *.txt, mods, logs | Remove-Item -Recurse -Force
|
||||||
}
|
}
|
||||||
}
|
|
||||||
Copy-Item -Path "$PSScriptRoot\Winget-AutoUpdate\*" -Destination $WAUinstallPath -Recurse -Force -ErrorAction SilentlyContinue
|
Copy-Item -Path "$PSScriptRoot\Winget-AutoUpdate\*" -Destination $WAUinstallPath -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
|
|
||||||
#White List or Black List apps
|
#White List or Black List apps
|
||||||
|
|
Loading…
Reference in New Issue