Files
runner-images/images/win/scripts/ImageHelpers/ImageHelpers.psm1
2020-03-17 09:47:22 +03:00

29 lines
634 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'
'Get-ToolcachePackages'
'Get-ToolsByName'
'Add-ContentToMarkdown'
'Add-SoftwareDetailsToMarkdown'
'Stop-SvcWithErrHandling'
'Set-SvcWithErrHandling'
'Install-VsixExtension'
'Get-VSExtensionVersion'
'Get-WinVersion'
'Test-IsWin19'
'Test-IsWin16'
)