2019-11-15 15:23:41 -05:00
|
|
|
[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'
|
2020-03-17 09:47:22 +03:00
|
|
|
'Get-ToolcachePackages'
|
|
|
|
|
'Get-ToolsByName'
|
2019-11-15 15:23:41 -05:00
|
|
|
'Add-ContentToMarkdown'
|
|
|
|
|
'Add-SoftwareDetailsToMarkdown'
|
2019-12-23 17:41:24 +04:00
|
|
|
'Stop-SvcWithErrHandling'
|
|
|
|
|
'Set-SvcWithErrHandling'
|
2020-03-20 11:33:59 +07:00
|
|
|
'Start-DownloadWithRetry'
|
2020-03-17 09:47:22 +03:00
|
|
|
'Install-VsixExtension'
|
|
|
|
|
'Get-VSExtensionVersion'
|
|
|
|
|
'Get-WinVersion'
|
|
|
|
|
'Test-IsWin19'
|
|
|
|
|
'Test-IsWin16'
|
2019-11-15 15:23:41 -05:00
|
|
|
)
|