In my powershell file First.ps1 i have a Function Sum. In the Second.psm1 module i have the Functions: Sum, Multiply. How to only Import Multiply into First.ps1.
In the First.ps1:Import-Module (Join-Path $PSScriptRoot "Second") -DisableNameChecking is importing Functions: Sum, Multiply.