mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 04:37:09 +00:00
22 lines
468 B
PowerShell
22 lines
468 B
PowerShell
[CmdletBinding()]
|
|
param()
|
|
|
|
. $PSScriptRoot\PathHelpers.ps1
|
|
. $PSScriptRoot\InstallHelpers.ps1
|
|
. $PSScriptRoot\MarkdownHelpers.ps1
|
|
|
|
Export-ModuleMember -Function @(
|
|
'Test-MachinePath'
|
|
'Get-MachinePath'
|
|
'Set-MachinePath'
|
|
'Add-MachinePathItem'
|
|
'Get-SystemVariable'
|
|
'Set-SystemVariable'
|
|
'Install-MSI'
|
|
'Install-EXE'
|
|
'Add-ContentToMarkdown'
|
|
'Add-SoftwareDetailsToMarkdown'
|
|
'Stop-SvcWithErrHandling'
|
|
'Set-SvcWithErrHandling'
|
|
)
|