mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 04:37:09 +00:00
32 lines
717 B
PowerShell
32 lines
717 B
PowerShell
[CmdletBinding()]
|
|
param()
|
|
|
|
. $PSScriptRoot\PathHelpers.ps1
|
|
. $PSScriptRoot\InstallHelpers.ps1
|
|
. $PSScriptRoot\MarkdownHelpers.ps1
|
|
. $PSScriptRoot\ChocoHelpers.ps1
|
|
|
|
Export-ModuleMember -Function @(
|
|
'Test-MachinePath'
|
|
'Get-MachinePath'
|
|
'Set-MachinePath'
|
|
'Add-MachinePathItem'
|
|
'Get-SystemVariable'
|
|
'Set-SystemVariable'
|
|
'Install-MSI'
|
|
'Install-EXE'
|
|
'Get-ToolcachePackages'
|
|
'Get-ToolsByName'
|
|
'Add-ContentToMarkdown'
|
|
'Add-SoftwareDetailsToMarkdown'
|
|
'Stop-SvcWithErrHandling'
|
|
'Set-SvcWithErrHandling'
|
|
'Start-DownloadWithRetry'
|
|
'Install-VsixExtension'
|
|
'Get-VSExtensionVersion'
|
|
'Get-WinVersion'
|
|
'Test-IsWin19'
|
|
'Test-IsWin16'
|
|
'Choco-Install'
|
|
)
|