mirror of
https://github.com/actions/runner-images.git
synced 2025-12-19 00:06:57 +00:00
* add extensions * add exe installation * change Reporting Services name * add switch to function, add validation * change install wdk to function * Fix template * fix scripts name * add quotes * more quotes * one more quotes * get rid of duplicate code * move quotes to function * small improvment to wix installation * add comment to validate extensions script
27 lines
584 B
PowerShell
27 lines
584 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'
|
|
'Install-VsixExtension'
|
|
'Get-VSExtensionVersion'
|
|
'Get-WinVersion'
|
|
'Test-IsWin19'
|
|
'Test-IsWin16'
|
|
)
|