Private/Get-SupportedProductsCachePath.ps1

function Get-SupportedProductsCachePath {
    [CmdletBinding()]
    param ()

    $ParentPath = "$($env:TEMP)\PatchMyPC"
    $ChildPath = "SupportedProducts"

    $Path = Join-Path -Path $ParentPath -ChildPath $ChildPath

    return $Path
}