mirror of
https://github.com/actions/python-versions.git
synced 2025-04-06 15:29:39 +00:00
Test registry path before invoking Get-ChildItem (#95)
This commit is contained in:
@ -28,17 +28,21 @@ function Remove-RegistryEntries {
|
|||||||
$versionFilter = Get-RegistryVersionFilter -Architecture $Architecture -MajorVersion $MajorVersion -MinorVersion $MinorVersion
|
$versionFilter = Get-RegistryVersionFilter -Architecture $Architecture -MajorVersion $MajorVersion -MinorVersion $MinorVersion
|
||||||
|
|
||||||
$regPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products"
|
$regPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products"
|
||||||
|
if (Test-Path -Path Registry::$regPath) {
|
||||||
$regKeys = Get-ChildItem -Path Registry::$regPath -Recurse | Where-Object Property -Ccontains DisplayName
|
$regKeys = Get-ChildItem -Path Registry::$regPath -Recurse | Where-Object Property -Ccontains DisplayName
|
||||||
foreach ($key in $regKeys) {
|
foreach ($key in $regKeys) {
|
||||||
if ($key.getValue("DisplayName") -match $versionFilter) {
|
if ($key.getValue("DisplayName") -match $versionFilter) {
|
||||||
Remove-Item -Path $key.PSParentPath -Recurse -Force -Verbose
|
Remove-Item -Path $key.PSParentPath -Recurse -Force -Verbose
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$regPath = "HKEY_CLASSES_ROOT\Installer\Products"
|
$regPath = "HKEY_CLASSES_ROOT\Installer\Products"
|
||||||
|
if (Test-Path -Path Registry::$regPath) {
|
||||||
Get-ChildItem -Path Registry::$regPath | Where-Object { $_.GetValue("ProductName") -match $versionFilter } | ForEach-Object {
|
Get-ChildItem -Path Registry::$regPath | Where-Object { $_.GetValue("ProductName") -match $versionFilter } | ForEach-Object {
|
||||||
Remove-Item Registry::$_ -Recurse -Force -Verbose
|
Remove-Item Registry::$_ -Recurse -Force -Verbose
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$uninstallRegistrySections = @(
|
$uninstallRegistrySections = @(
|
||||||
"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall", # current user, x64
|
"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall", # current user, x64
|
||||||
|
Reference in New Issue
Block a user