Last active
January 4, 2025 21:48
-
-
Save ninmonkey/56c9a4dba4951228dc3cdf19474b4b7f to your computer and use it in GitHub Desktop.
Test autoloading pwsh modules when using Get-Command and Get-Module
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I'm explicitly unloading the module for each test | |
Remove-Module ImportExcel -ea 'ignore' | |
(Get-Module ImportExcel).IterCommands.count | |
# out: 0 | |
Remove-Module ImportExcel -ea 'ignore' | |
(Get-Module ImportExcel).count | |
# out: 0 | |
Remove-Module ImportExcel -ea 'ignore' | |
Import-Module ImportExcel | |
(Get-Module ImportExcel).count | |
# out: 1 | |
Remove-Module ImportExcel | |
(Import-Module ImportExcel -PassThru).IterCommands.count | |
# out: 76 | |
Remove-Module ImportExcel | |
(Get-Command | ? Source -eq ImportExcel).count | |
# out: 153 | |
Remove-Module ImportExcel -ea 0 | |
(Get-Command -m ImportExcel).count | |
# out: 76 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment