Files
runner-images/images/win/scripts/ImageHelpers/ImageHelpers.psm1
T

58 lines
1.4 KiB
PowerShell
Raw Normal View History

2019-11-15 15:23:41 -05:00
[CmdletBinding()]
param()
. $PSScriptRoot\PathHelpers.ps1
. $PSScriptRoot\InstallHelpers.ps1
2020-04-14 06:51:57 +01:00
. $PSScriptRoot\ChocoHelpers.ps1
2020-07-09 10:53:29 +03:00
. $PSScriptRoot\TestsHelpers.ps1
. $PSScriptRoot\VisualStudioHelpers.ps1
2019-11-15 15:23:41 -05:00
Export-ModuleMember -Function @(
'Connect-Hive'
'Disconnect-Hive'
2019-11-15 15:23:41 -05:00
'Test-MachinePath'
'Get-MachinePath'
'Get-DefaultPath'
2019-11-15 15:23:41 -05:00
'Set-MachinePath'
'Set-DefaultPath'
2019-11-15 15:23:41 -05:00
'Add-MachinePathItem'
'Add-DefaultPathItem'
2019-11-15 15:23:41 -05:00
'Get-SystemVariable'
'Get-DefaultVariable'
2019-11-15 15:23:41 -05:00
'Set-SystemVariable'
'Set-DefaultVariable'
'Install-Binary'
'Install-VisualStudio'
'Get-ToolsetContent'
'Get-ToolsetToolFullPath'
'Stop-SvcWithErrHandling'
'Set-SvcWithErrHandling'
2020-03-20 11:33:59 +07:00
'Start-DownloadWithRetry'
'Get-VsixExtenstionFromMarketplace'
'Install-VsixExtension'
'Get-VSExtensionVersion'
'Get-WinVersion'
'Test-IsWin22'
'Test-IsWin19'
'Test-IsWin16'
'Choco-Install'
'Send-RequestToCocolateyPackages'
'Get-LatestChocoPackageVersion'
2021-12-08 10:39:42 +03:00
'Get-GitHubPackageDownloadUrl'
'Extract-7Zip'
2020-07-09 10:53:29 +03:00
'Get-CommandResult'
'Get-WhichTool'
2020-07-09 10:53:29 +03:00
'Get-EnvironmentVariable'
'Invoke-PesterTests'
'Invoke-SBWithRetry'
'Get-VsCatalogJsonPath'
'Install-AndroidSDKPackages'
2020-09-30 23:42:32 +03:00
'Get-AndroidPackages'
'Get-AndroidPackagesByName'
'Get-AndroidPackagesByVersion'
'Get-VisualStudioInstance'
'Get-VisualStudioComponents'
'Get-WindowsUpdatesHistory'
'New-ItemPath'
2019-11-15 15:23:41 -05:00
)