Files
runner-images/images/windows/scripts/helpers/ImageHelpers.psm1
Vasilii Polikarpov da1c04b81a [Windows] Reimplement function resolving GH asset (#8899)
* [Windows] Reimplement function resolving GH asset

* Fix tests and software report

* Fix selenium-server version check
2023-11-28 15:08:03 +01:00

55 lines
1.4 KiB
PowerShell

[CmdletBinding()]
param()
. $PSScriptRoot\PathHelpers.ps1
. $PSScriptRoot\InstallHelpers.ps1
. $PSScriptRoot\ChocoHelpers.ps1
. $PSScriptRoot\VisualStudioHelpers.ps1
Export-ModuleMember -Function @(
'Connect-Hive'
'Disconnect-Hive'
'Test-MachinePath'
'Get-MachinePath'
'Get-DefaultPath'
'Set-MachinePath'
'Set-DefaultPath'
'Add-MachinePathItem'
'Add-DefaultPathItem'
'Add-DefaultItem'
'Get-SystemVariable'
'Get-DefaultVariable'
'Set-DefaultVariable'
'Install-Binary'
'Install-VisualStudio'
'Get-ToolsetContent'
'Get-TCToolVersionPath'
'Get-TCToolPath'
'Start-DownloadWithRetry'
'Get-VsixExtenstionFromMarketplace'
'Install-VSIXFromFile'
'Install-VSIXFromUrl'
'Get-VSExtensionVersion'
'Get-WinVersion'
'Test-IsWin22'
'Test-IsWin19'
'Install-ChocoPackage'
'Send-RequestToCocolateyPackages'
'Resolve-ChocoPackageVersion'
'Resolve-GithubReleaseAssetUrl'
'Expand-7ZipArchive'
'Invoke-SBWithRetry'
'Get-VsCatalogJsonPath'
'Get-AndroidPackages'
'Get-AndroidPlatformPackages'
'Get-AndroidBuildToolPackages'
'Get-AndroidInstalledPackages'
'Get-VisualStudioInstance'
'Get-VisualStudioComponents'
'Get-WindowsUpdateStates'
'New-ItemPath'
'Use-ChecksumComparison'
'Get-HashFromGitHubReleaseBody'
'Test-FileSignature'
)