Files
runner-images/images/win/scripts/ImageHelpers/ImageHelpers.psm1
Maksim Petrov 0413a02d9a Add Python tools installation from Github releases for Windows (#705)
* Add Toolset provision for Windows
Co-authored-by: MaksimZhukov <v-mazhuk@microsoft.com>
2020-04-30 18:11:40 +03:00

32 lines
727 B
PowerShell

[CmdletBinding()]
param()
. $PSScriptRoot\PathHelpers.ps1
. $PSScriptRoot\InstallHelpers.ps1
. $PSScriptRoot\MarkdownHelpers.ps1
. $PSScriptRoot\ChocoHelpers.ps1
Export-ModuleMember -Function @(
'Test-MachinePath'
'Get-MachinePath'
'Set-MachinePath'
'Add-MachinePathItem'
'Get-SystemVariable'
'Set-SystemVariable'
'Install-Binary'
'Get-ToolcachePackages'
'Get-ToolsetContent'
'Get-ToolsByName'
'Add-ContentToMarkdown'
'Add-SoftwareDetailsToMarkdown'
'Stop-SvcWithErrHandling'
'Set-SvcWithErrHandling'
'Start-DownloadWithRetry'
'Install-VsixExtension'
'Get-VSExtensionVersion'
'Get-WinVersion'
'Test-IsWin19'
'Test-IsWin16'
'Choco-Install'
)