You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to add a cmdlet as an extension. Perhaps I am doing it wrong, but my cmdlet gets imported by chocoInstaller but is never exported. This line shows that and a run with debug also shows that.
I am trying to add a cmdlet as an extension. Perhaps I am doing it wrong, but my cmdlet gets imported by chocoInstaller but is never exported. This line shows that and a run with debug also shows that.
Export-ModuleMember -Function * -Alias *
This should be
Export-ModuleMember -Function * -Alias * -Cmdlet *
The text was updated successfully, but these errors were encountered: