mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-02-04 15:00:09 +00:00
12 lines
371 B
PowerShell
12 lines
371 B
PowerShell
function Microwin-TestKitsRootPaths {
|
|
param (
|
|
[Parameter(Mandatory = $true, Position = 0)] [string]$adkKitsRootPath,
|
|
[Parameter(Mandatory = $true, Position = 1)] [string]$adkKitsRootPath_WOW64Environ
|
|
)
|
|
|
|
if (Test-Path "$adkKitsRootPath") { return $true }
|
|
if (Test-Path "$adkKitsRootPath_WOW64Environ") { return $true }
|
|
|
|
return $false
|
|
}
|