Skip to content

Instantly share code, notes, and snippets.

@ninmonkey
Last active January 4, 2025 21:48
Show Gist options
  • Save ninmonkey/56c9a4dba4951228dc3cdf19474b4b7f to your computer and use it in GitHub Desktop.
Save ninmonkey/56c9a4dba4951228dc3cdf19474b4b7f to your computer and use it in GitHub Desktop.
Test autoloading pwsh modules when using Get-Command and Get-Module
# 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