Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Scripts and Modules ====== Search for modules that contain a specified command. <code powershell> Find-Command -Repository PSGallery -Name Connect-ExchangeOnline </code> Find modules in repo that match name. For example, the following finds modules with a name that begins with //exchange//. <code powershell> Find-Module -Repository PSGAllery -Name Exchange* </code> Find modules that provide a specified command <code powershell> Find-Command get-msolrole Name Version ModuleName Repository ---- ------- ---------- ---------- Get-MsolRole 1.1.183.66 MSOnline PSGallery </code> === Find available modules with substring in name === <code powershell> Get-Module -ListAvailable | where {$_.Name -like "*exchange*"} </code> ====== Scripts ====== * ''Save-Script'' - download script from repo and save to local system powershell/qnd/scripts_and_modules.txt Last modified: 2022/07/14 14:43by mgupton