2022-09-17 19:22:41 +00:00
|
|
|
#Function to check Black/White List Path
|
|
|
|
|
|
|
|
function Test-ListPath ($ListPath, $UseWhiteList) {
|
2022-09-19 19:12:00 +00:00
|
|
|
# UNC, Web or Local Path
|
2022-09-18 18:25:14 +00:00
|
|
|
if ($UseWhiteList){
|
|
|
|
$ListType="included"
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ListType="excluded"
|
|
|
|
}
|
2022-09-19 19:12:00 +00:00
|
|
|
$LocalList = -join($WingetUpdatePath, "\", $ListType, "_apps.txt")
|
|
|
|
$ExternalList = $ListPath
|
|
|
|
$PathInfo=[System.Uri]$ListPath
|
2022-09-18 18:40:22 +00:00
|
|
|
|
2022-09-18 18:25:14 +00:00
|
|
|
if($PathInfo.IsUnc){
|
|
|
|
$PathType="UNC Path"
|
2022-09-19 19:12:00 +00:00
|
|
|
$ExternalList = -join($ListPath, "\", $ListType, "_apps.txt")
|
|
|
|
if(Test-Path -Path $ExternalList -PathType leaf){
|
|
|
|
Write-Output "Given path $ListPath type is $PathType and $ExternalList is available..."
|
|
|
|
|
|
|
|
$dateLocal = (Get-Item "$LocalList").LastWriteTime
|
|
|
|
$dateExternal = (Get-Item "$ListPath").LastWriteTime
|
|
|
|
if ($dateExternal -gt $dateLocal) {
|
|
|
|
Write-Host("$ExternalList was modified after $LocalList")
|
2022-09-18 18:25:14 +00:00
|
|
|
}
|
2022-09-19 19:12:00 +00:00
|
|
|
}
|
2022-09-18 18:25:14 +00:00
|
|
|
else {
|
2022-09-19 19:12:00 +00:00
|
|
|
Write-Output "Given path $ListPath type is $PathType and $ExternalList is not available..."
|
2022-09-18 18:25:14 +00:00
|
|
|
}
|
|
|
|
}
|
2022-09-18 18:40:22 +00:00
|
|
|
elseif ($ListPath -like "http*"){
|
|
|
|
$PathType="Web Path"
|
2022-09-19 19:12:00 +00:00
|
|
|
$ExternalList = -join($ListPath, "/", $ListType, "_apps.txt")
|
2022-09-18 18:25:14 +00:00
|
|
|
$wc = New-Object System.Net.WebClient
|
|
|
|
try {
|
2022-09-19 19:12:00 +00:00
|
|
|
$wc.OpenRead("$ExternalList") | Out-Null
|
|
|
|
Write-Output "Given path $ListPath type is $PathType and $ExternalList is available..."
|
|
|
|
}
|
|
|
|
catch {
|
|
|
|
Write-Output "Given path $ListPath type is $PathType and $ExternalList is not available..."
|
2022-09-18 18:25:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$PathType="Local Path"
|
2022-09-19 19:12:00 +00:00
|
|
|
$ExternalList = -join($ListPath, "\", $ListType, "_apps.txt")
|
|
|
|
if(Test-Path -Path $ExternalList -PathType leaf){
|
|
|
|
Write-Output "Given path $ListPath type is $PathType and $ExternalList is available..."
|
|
|
|
|
|
|
|
$dateLocal = (Get-Item "$LocalList").LastWriteTime
|
|
|
|
$dateExternal = (Get-Item "$ListPath").LastWriteTime
|
|
|
|
if ($dateExternal -gt $dateLocal) {
|
|
|
|
Write-Host("$ExternalList was modified after $LocalList")
|
2022-09-18 18:25:14 +00:00
|
|
|
}
|
2022-09-19 19:12:00 +00:00
|
|
|
}
|
2022-09-18 18:25:14 +00:00
|
|
|
else {
|
2022-09-19 19:12:00 +00:00
|
|
|
Write-Output "Given path $ListPath type is $PathType and $ExternalList is not available..."
|
2022-09-18 18:25:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-17 19:22:41 +00:00
|
|
|
|
2022-09-19 19:12:00 +00:00
|
|
|
$WingetUpdatePath = "$env:ProgramData\Winget-AutoUpdate"
|
|
|
|
$ListPath = "D:\Temp"
|
|
|
|
$UseWhiteList = $false
|
|
|
|
#White List or Black List in share/online if differs
|
|
|
|
if ($WingetUpdatePath -ne $ListPath){
|
|
|
|
Test-ListPath $ListPath $UseWhiteList
|
|
|
|
}
|