PowerShell - Basics and Environment
You want to find all commands of type 'Cmdlet' that include 'Service' in their name. Which command will correctly do this?
-Name '*Service*' uses wildcard to find commands with 'Service' anywhere in the name. -CommandType Cmdlet filters to only cmdlets.-Filter and -Type are invalid parameters. Exact name 'Service' won't match commands containing 'Service' as part of the name. -Module '*Service*' filters by module name, not command name.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions