Shmuelie.Windows.psm1
|
$publicRoot = Join-Path $PSScriptRoot 'Public' foreach ($script in Get-ChildItem $publicRoot -Filter '*.ps1' | Sort-Object Name) { . $script.FullName } Export-ModuleMember -Function @( 'Get-AppInstallerApp', 'Get-InstalledApplications', 'Get-ServiceProcess', 'Get-SubstDrive', 'Get-WindowsTerminalSettings', 'Get-WindowsTerminalProfile', 'New-SubstDrive', 'Remove-SubstDrive', 'Start-WindowsPerformanceRecorder', 'Stop-WindowsPerformanceRecorder', 'Update-AppInstallerApp' ) |