Summary: Use the PowerShell Find module to search for modules.
I was trying to use the Find-module. Can you show me how to find all modules that have the word, Azure, in them?
Just use a wildcard in the search like in the following example to return modules with the name Azure in the beginning:
Find-Module Azure*
0 comments