Merge pull request #580 from nickjisc/main
Fix for Group Policy enforced include/exclude lists not being imported correctedpull/615/head
commit
eb52fe4e7c
|
@ -245,7 +245,7 @@ if (Test-Network) {
|
||||||
New-Item "$WorkingDir\logs\error.txt" -Value "Whitelist doesn't exist in GPO" -Force
|
New-Item "$WorkingDir\logs\error.txt" -Value "Whitelist doesn't exist in GPO" -Force
|
||||||
Exit 1
|
Exit 1
|
||||||
}
|
}
|
||||||
$toUpdate = $toUpdate.Data
|
foreach ($app in $toUpdate) { Write-ToLog "Include app ${app}" }
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$BlackList = $toSkip.GetUpperBound(0)
|
$BlackList = $toSkip.GetUpperBound(0)
|
||||||
|
@ -254,7 +254,7 @@ if (Test-Network) {
|
||||||
New-Item "$WorkingDir\logs\error.txt" -Value "Blacklist doesn't exist in GPO" -Force
|
New-Item "$WorkingDir\logs\error.txt" -Value "Blacklist doesn't exist in GPO" -Force
|
||||||
Exit 1
|
Exit 1
|
||||||
}
|
}
|
||||||
$toSkip = $toSkip.Data
|
foreach ($app in $toSkip) { Write-ToLog "Exclude app ${app}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,30 +2,49 @@
|
||||||
|
|
||||||
function Get-ExcludedApps {
|
function Get-ExcludedApps {
|
||||||
|
|
||||||
|
$AppIDs = @()
|
||||||
|
|
||||||
|
#region blacklist in registry
|
||||||
if ($GPOList) {
|
if ($GPOList) {
|
||||||
|
|
||||||
if (Test-Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\BlackList") {
|
if (Test-Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\BlackList") {
|
||||||
|
|
||||||
$Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\BlackList\'
|
|
||||||
|
|
||||||
$ValueNames = (Get-Item -Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\BlackList").Property
|
$ValueNames = (Get-Item -Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\BlackList").Property
|
||||||
|
|
||||||
foreach ($ValueName in $ValueNames) {
|
foreach ($ValueName in $ValueNames) {
|
||||||
$AppIDs = [Microsoft.Win32.Registry]::GetValue($Key, $ValueName, $false)
|
$AppIDs += (Get-ItemPropertyValue -Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\BlackList" -Name $ValueName).Trim()
|
||||||
[PSCustomObject]@{
|
|
||||||
Value = $ValueName
|
|
||||||
Data = $AppIDs.Trim()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return $AppIDs
|
|
||||||
|
}
|
||||||
|
#endregion blacklist in registry
|
||||||
|
#region blacklist pulled from URI
|
||||||
|
elseif ($URIList) {
|
||||||
|
|
||||||
|
$RegPath = "$WAU_GPORoot";
|
||||||
|
$RegValueName = 'WAU_URIList';
|
||||||
|
|
||||||
|
if (Test-Path -Path $RegPath) {
|
||||||
|
$RegKey = Get-Item -Path $RegPath;
|
||||||
|
$WAUURI = $RegKey.GetValue($RegValueName);
|
||||||
|
if ($null -ne $WAUURI) {
|
||||||
|
$resp = Invoke-WebRequest -Uri $WAUURI -UseDefaultCredentials;
|
||||||
|
if ($resp.BaseResponse.StatusCode -eq [System.Net.HttpStatusCode]::OK) {
|
||||||
|
$resp.Content.Split([System.Environment]::NewLine, [System.StringSplitOptions]::RemoveEmptyEntries) |
|
||||||
|
ForEach-Object {
|
||||||
|
$AppIds += $_
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#endregion blacklist pulled from URI
|
||||||
elseif (Test-Path "$WorkingDir\excluded_apps.txt") {
|
elseif (Test-Path "$WorkingDir\excluded_apps.txt") {
|
||||||
|
|
||||||
return (Get-Content -Path "$WorkingDir\excluded_apps.txt").Trim() | Where-Object { $_.length -gt 0 }
|
return (Get-Content -Path "$WorkingDir\excluded_apps.txt").Trim() | Where-Object { $_.length -gt 0 }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $AppIDs | Where-Object { $_.length -gt 0 }
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,50 @@
|
||||||
#Function to get the allow List apps
|
#Function to get the allow List apps
|
||||||
|
|
||||||
function Get-IncludedApps {
|
function Get-IncludedApps {
|
||||||
|
$AppIDs = @()
|
||||||
|
|
||||||
|
#region whitelist in registry
|
||||||
if ($GPOList) {
|
if ($GPOList) {
|
||||||
|
|
||||||
if (Test-Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\WhiteList") {
|
if (Test-Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\WhiteList") {
|
||||||
|
|
||||||
$Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\WhiteList\'
|
|
||||||
|
|
||||||
$ValueNames = (Get-Item -Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\WhiteList").Property
|
$ValueNames = (Get-Item -Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\WhiteList").Property
|
||||||
|
|
||||||
foreach ($ValueName in $ValueNames) {
|
foreach ($ValueName in $ValueNames) {
|
||||||
$AppIDs = [Microsoft.Win32.Registry]::GetValue($Key, $ValueName, $false)
|
$AppIDs += (Get-ItemPropertyValue -Path "HKLM:\SOFTWARE\Policies\Romanitho\Winget-AutoUpdate\WhiteList" -Name $ValueName).Trim()
|
||||||
[PSCustomObject]@{
|
|
||||||
Value = $ValueName
|
|
||||||
Data = $AppIDs.Trim()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return $AppIDs
|
|
||||||
|
}
|
||||||
|
#endregion whitelist in registry
|
||||||
|
#region whitelist pulled from URI
|
||||||
|
elseif ($URIList) {
|
||||||
|
|
||||||
|
$RegPath = "$WAU_GPORoot";
|
||||||
|
$RegValueName = 'WAU_URIList';
|
||||||
|
|
||||||
|
if (Test-Path -Path $RegPath) {
|
||||||
|
$RegKey = Get-Item -Path $RegPath;
|
||||||
|
$WAUURI = $RegKey.GetValue($RegValueName);
|
||||||
|
if ($null -ne $WAUURI) {
|
||||||
|
$resp = Invoke-WebRequest -Uri $WAUURI -UseDefaultCredentials;
|
||||||
|
if ($resp.BaseResponse.StatusCode -eq [System.Net.HttpStatusCode]::OK) {
|
||||||
|
$resp.Content.Split([System.Environment]::NewLine, [System.StringSplitOptions]::RemoveEmptyEntries) |
|
||||||
|
ForEach-Object {
|
||||||
|
$AppIds += $_
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#endregion whitelist pulled from URI
|
||||||
elseif (Test-Path "$WorkingDir\included_apps.txt") {
|
elseif (Test-Path "$WorkingDir\included_apps.txt") {
|
||||||
|
|
||||||
return (Get-Content -Path "$WorkingDir\included_apps.txt").Trim() | Where-Object { $_.length -gt 0 }
|
return (Get-Content -Path "$WorkingDir\included_apps.txt").Trim() | Where-Object { $_.length -gt 0 }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $AppIDs | Where-Object { $_.length -gt 0 }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue