Export-ModuleMember (Microsoft.PowerShell.Core) - PowerShell | Microsoft Learn

PHOTO EMBED

Tue Oct 04 2022 15:06:58 GMT+0000 (Coordinated Universal Time)

Saved by @frikke

# From TestModule.psm1
function New-Test
{
    Write-Output 'I am New-Test function'
}
Export-ModuleMember -Function New-Test

function Validate-Test
{
    Write-Output 'I am Validate-Test function'
}
function Start-Test
{
    Write-Output 'I am Start-Test function'
}
Set-Alias stt Start-Test
Export-ModuleMember -Function Start-Test -Alias stt
content_copyCOPY

https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/export-modulemember?source