PowerShell Basics Flashcards
What is the verb to create?
New-
What is the verb to retreive/show?
Get-
What is the verb to make a configuration change?
Set-
What is the verb to delete?
Remove-
What is the verb to rename?
Rename-
What is the shortcut to complete a partially typed command?
Tab
What is the shortcut to go back in a partially typed command?
Shift + Tab
What is the pipeline?
Passing data from one command through to another
Why is the pipeline useful?
It pipes data object, text that has to be parsed
What is the parameter to see the outcome of executing a command without doing it?
-WhatIf
What is the naming convention in PowerShell?
Verb-Noun
What is the cmdlet to retrieve a list of all verbs?
Get-Verb
What is the symbol used to get all values associated to a parameter?
*
How would you get all values beginning with a set of characters?
(characters) *
i. e: ms*
What separates a parameter and its value?
A space
i.e: -Name vm