PowerShell - Modules and Script Organization
Given a module file
MyModule.psm1 with a function Get-Info that returns 'Info Loaded', what will be the output of this script?Import-Module .\MyModule.psm1
Get-Info
