PowerShell - Basics and Environment
You want to list all cmdlets and functions that include 'Service' in their name from the 'Microsoft.PowerShell.Management' module. Which command achieves this?
-Module to specify the module and -Name '*Service*' to match any command containing 'Service'.-CommandType Cmdlet,Function to include both cmdlets and functions.-Name '*Service*' and -CommandType Cmdlet,Function misses the module filter. The command using -CommandType Alias filters only aliases. The command with -Name 'Service*' matches only names starting with 'Service'.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions