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'
|
|
|
|
|
'Add-ContentToMarkdown'
|
|
|
|
|
'Add-SoftwareDetailsToMarkdown'
|
2019-12-23 17:41:24 +04:00
|
|
|
'Stop-SvcWithErrHandling'
|
|
|
|
|
'Set-SvcWithErrHandling'
|
2020-03-11 14:17:58 +03:00
|
|
|
'Install-VsixExtension'
|
2020-02-19 19:59:48 +03:00
|
|
|
'Get-VS19ExtensionVersion'
|
2019-11-15 15:23:41 -05:00
|
|
|
)
|