function Get-SavedInstallVersions { [CmdletBinding()] param () # TODO: Read this from the file used in Save-InstallVersions $filePath = Get-SavedInstallVersionPath if (!(Test-Path -Path $filePath)) { return $null,$null } return Get-Content -Path $filePath }