2019-11-15 15:23:41 -05:00
|
|
|
[CmdletBinding()]
|
|
|
|
|
param()
|
|
|
|
|
|
|
|
|
|
. $PSScriptRoot\PathHelpers.ps1
|
|
|
|
|
. $PSScriptRoot\InstallHelpers.ps1
|
|
|
|
|
. $PSScriptRoot\MarkdownHelpers.ps1
|
2020-04-14 06:51:57 +01:00
|
|
|
. $PSScriptRoot\ChocoHelpers.ps1
|
2019-11-15 15:23:41 -05:00
|
|
|
|
|
|
|
|
Export-ModuleMember -Function @(
|
|
|
|
|
'Test-MachinePath'
|
|
|
|
|
'Get-MachinePath'
|
|
|
|
|
'Set-MachinePath'
|
|
|
|
|
'Add-MachinePathItem'
|
|
|
|
|
'Get-SystemVariable'
|
|
|
|
|
'Set-SystemVariable'
|
2020-04-21 11:58:27 +03:00
|
|
|
'Install-Binary'
|
2020-05-05 20:50:00 +03:00
|
|
|
'Install-VisualStudio'
|
2020-03-17 09:47:22 +03:00
|
|
|
'Get-ToolcachePackages'
|
2020-04-30 18:11:40 +03:00
|
|
|
'Get-ToolsetContent'
|
2020-03-17 09:47:22 +03:00
|
|
|
'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'
|
2020-04-17 10:53:30 +03:00
|
|
|
'Choco-Install'
|
2019-11-15 15:23:41 -05:00
|
|
|
)
|