Powershell Commands: Difference between revisions

From RCATs
No edit summary
Line 3: Line 3:
== Basic Commands ==
== Basic Commands ==
<syntaxhighlight lang="powershell">
<syntaxhighlight lang="powershell">
Cmdlet         #Commands built into shell written in .NET
Cmdlet             #Commands built into shell written in .NET
Functions       #Commands written in PowerShell language
Functions           #Commands written in PowerShell language
Parameter       #Argument to a Cmdlet/Function/Script
Parameter           #Argument to a Cmdlet/Function/Script
Alias           #Shortcut for a Cmdlet or Function
Alias               #Shortcut for a Cmdlet or Function
Script         #Text files with .ps1 extension
Script             #Text files with .ps1 extension
Applications   #Existing windows programs
Applications       #Existing windows programs
Pipelines       #Pass objects Get-process word | Stop-Process
Pipelines           #Pass objects Get-process word | Stop-Process
Ctrl+c         #Interrupt current command
Ctrl+c             #Interrupt current command
Left/Right     #Navigate editing cursor
Left/Right         #Navigate editing cursor
Ctrl+Left/Right #Navigate a word at a time
Ctrl+Left/Right     #Navigate a word at a time
Home/End       #End Move to start / end of line
Home/End           #End Move to start / end of line
Up/Down         #Move up and down through history
Up/Down             #Move up and down through history
Insert         #Toggles between insert/overwrite mode
Insert             #Toggles between insert/overwrite mode
F7             #Command history in a window
F7                 #Command history in a window
Tab/Shift-Tab   #Command line completion
Tab/Shift-Tab       #Command line completion
</syntaxhighlight>
</syntaxhighlight>

Revision as of 10:38, 2 March 2023


Basic Commands

Cmdlet              #Commands built into shell written in .NET
Functions           #Commands written in PowerShell language
Parameter           #Argument to a Cmdlet/Function/Script
Alias               #Shortcut for a Cmdlet or Function
Script              #Text files with .ps1 extension
Applications        #Existing windows programs
Pipelines           #Pass objects Get-process word | Stop-Process
Ctrl+c              #Interrupt current command
Left/Right          #Navigate editing cursor
Ctrl+Left/Right     #Navigate a word at a time
Home/End            #End Move to start / end of line
Up/Down             #Move up and down through history
Insert              #Toggles between insert/overwrite mode
F7                  #Command history in a window
Tab/Shift-Tab       #Command line completion