#Function to check Block/Allow List External Path function Test-ListPath ($ListPath, $UseWhiteList, $WingetUpdatePath) { # URL, UNC or Local Path if ($UseWhiteList) { $ListType = "included_apps.txt" } else { $ListType = "excluded_apps.txt" } # Get local and external list paths $LocalList = -join ($WingetUpdatePath, "\", $ListType) $ExternalList = -join ($ListPath, "\", $ListType) # Check if a list exists if (Test-Path "$LocalList") { $dateLocal = (Get-Item "$LocalList").LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss") } # If path is URL if ($ListPath -like "http*") { $ExternalList = -join ($ListPath, "/", $ListType) # Test if $ListPath contains the character "?" (testing for SAS token) if ($Listpath -match "\?") { # Split the URL into two strings at the "?" substring $splitPath = $ListPath.Split("`?") # Assign the first string (up to "?") to the variable $resourceURI $resourceURI = $splitPath[0] # Assign the second string (after "?" to the end) to the variable $sasToken $sasToken = $splitPath[1] # Join the parts and add "/$ListType?" in between the parts $ExternalList = -join ($resourceURI, "/$ListType`?", $sasToken) } $wc = New-Object System.Net.WebClient try { $wc.OpenRead("$ExternalList").Close() | Out-Null $dateExternal = ([DateTime]$wc.ResponseHeaders['Last-Modified']).ToString("yyyy-MM-dd HH:mm:ss") if ($dateExternal -gt $dateLocal) { try { $wc.DownloadFile($ExternalList, $LocalList) } catch { $Script:ReachNoPath = $True return $False } return $true } } catch { try { $wc.DownloadFile($ExternalList, $LocalList) $Script:AlwaysDownloaded = $True return $true } catch { $Script:ReachNoPath = $True return $False } } } # If path is UNC or local else { if (Test-Path -Path $ExternalList) { try { $dateExternal = (Get-Item "$ExternalList").LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss") } catch { $Script:ReachNoPath = $True return $False } if ($dateExternal -gt $dateLocal) { try { Copy-Item $ExternalList -Destination $LocalList -Force } catch { $Script:ReachNoPath = $True return $False } return $True } } else { $Script:ReachNoPath = $True return $False } } }