Often while teaching PowerShell, we get into a discussion about how someone, usually me, types this: Get-Help Get-Date Instead of Get-Help –Name Get-Date PowerShell parameters utilize positioning. Good authors of cmdlets will determine which parameter will be the most frequently used and put that parameter in the first position. That means if the user types a cmdlet, they can immediately provide the data for that parameter without calling the parameter name. Take a look at the –Name parameter of Get-Help -Name Gets help about the specified command or concept. Enter the name of a cmdlet, function, provider, script, or workflow, such as `Get-Member`, a conceptual topic name, such as `about_Objects`, or an alias, such as `ls`. Wildcard characters are permitted in cmdlet and provider names, but you cannot use wildcard characters to find the names of function help and script help topics. To get help for a script that is not located i
Welcome to the blogsite of MCTExpert. I am a Microsoft Certified Trainer. Here you will find the real questions that are asked to me by my students.