Prepared UNC/Local
parent
d30271249a
commit
43d531d51f
|
@ -194,6 +194,12 @@ function Install-WingetAutoUpdate {
|
||||||
}
|
}
|
||||||
Copy-Item -Path "$PSScriptRoot\Winget-AutoUpdate\*" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
Copy-Item -Path "$PSScriptRoot\Winget-AutoUpdate\*" -Destination $WingetUpdatePath -Recurse -Force -ErrorAction SilentlyContinue
|
||||||
|
|
||||||
|
#White List or Black List source not Local if differs
|
||||||
|
if ($WingetUpdatePath -ne $ListPath){
|
||||||
|
Test-ListPath $ListPath $UseWhiteList
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#White List or Black List apps
|
#White List or Black List apps
|
||||||
if ($UseWhiteList) {
|
if ($UseWhiteList) {
|
||||||
if (!$NoClean) {
|
if (!$NoClean) {
|
||||||
|
|
|
@ -1,6 +1,50 @@
|
||||||
#Function to check Black/White List Path
|
#Function to check Black/White List Path
|
||||||
|
|
||||||
function Test-ListPath ($ListPath, $UseWhiteList) {
|
function Test-ListPath ($ListPath, $UseWhiteList) {
|
||||||
|
# UNC or Local Path
|
||||||
|
if ($UseWhiteList){
|
||||||
|
$ListType="included"
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$ListType="excluded"
|
||||||
|
}
|
||||||
|
$Path = $ListPath
|
||||||
|
$PathInfo=[System.Uri]$Path
|
||||||
|
$ListPath = -join($Path, "\", "$ListType", "_apps.txt")
|
||||||
|
if($PathInfo.IsUnc){
|
||||||
|
$PathType="UNC Path"
|
||||||
|
if(Test-Path -Path $ListPath -PathType leaf){
|
||||||
|
Write-Output "Given path $Path type is $PathType and $ListPath is available..."
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-Output "Given path $Path type is $PathType and $ListPath is not available..."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elseif ($ListPath -like "http"){
|
||||||
|
$wc = New-Object System.Net.WebClient
|
||||||
|
try {
|
||||||
|
$wc.OpenRead('http://www.domain.com/test.csv') | Out-Null
|
||||||
|
Write-Output 'File Exists'
|
||||||
|
} catch {
|
||||||
|
Write-Output 'Error / Not Found'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$PathType="Local Path"
|
||||||
|
if(Test-Path -Path $ListPath -PathType leaf){
|
||||||
|
Write-Output "Given path $Path type is $PathType and $ListPath is available..."
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-Output "Given path $Path type is $PathType and $ListPath is not available..."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$WingetUpdatePath = "$env:ProgramData\Winget-AutoUpdate"
|
||||||
|
$ListPath = "D:\Temp"
|
||||||
|
$UseWhiteList = $true
|
||||||
|
#White List or Black List in share/online if differs
|
||||||
|
if ($WingetUpdatePath -ne $ListPath){
|
||||||
|
Test-ListPath $ListPath $UseWhiteList
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue