CMDLETS Flashcards
List all files/directories in the current directory
Get-ChildItem
Get the contents of a file
Get-Content
Help on commands
Get-Help
List all currently running processes
Get-Process
Clear the screen
Clear-Host
Copy one or several files or a whole directory tree
Copy-Item
Move one or several files or a whole directory tree
Move-Item
Change the current directory
Set-Location
Print strings, variables, etc to standard output
Write-Output
Find the appropriate Verb portion of the command
Get-Verb
Using a keyword to find the appropriate command
Get-Command
Pull up the help file for the command
Get-Help
Look at the properties associated with the command
Get-Member
Get cmdlets, functions, and aliases with a specific Noun
Get-Command -Noun
PowerShell Command that accepts a single command name and then displays a graphical dialog box that has a command’s parameters.
Show-Command