30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
< PowerShell
https://www.techopedia.com/>
Scripting Best Practices
Dictionary
Cryptocurrency <
https://www.techopedia.com/cryptocurrency>
Cybersecurity <
https://www.techopedia.com/topic/4/cybersecurity>
Hardware <
https://www.techopedia.com/topic/226/personal-tech>
Software More
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 1/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Below are the 30 most common PowerShell commands aimed at enhancing system
administrators’ productivity.
We also included a PowerShell commands cheat sheet for quick reference so you can easily
find and apply the commands discussed.
Key Takeaways
PowerShell is a cross-platform system administration and automation tool compatible
with Windows, Linux, and macOS.
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 2/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Table of Contents
Scripts
PowerShell scripts < https://www.techopedia.com/definition/10324/scripts> are text files that
contain cmdlets and other PowerShell commands saved with a .ps1 extension. They
automate longer sequences of tasks and can be simple or complex.
Pipeline
PowerShell Pipeline < https://www.techopedia.com/definition/5312/pipeline> connects
multiple cmdlets, passing the output of one as the input to the next. This chaining of
commands enables you to perform complex operations with minimal code. For example, you
can list all files in a directory and filter them by size or type in a single line of code.
Advertisements
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 3/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
We’ve compiled a comprehensive PowerShell commands list with some of the essential
commands you should know for tasks ranging from navigating the file system <
https://www.techopedia.com/definition/5510/file-system> and file manipulation to system
admin and networking.
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 4/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 5/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
File Manipulation
PowerShell Scripting Best Practices
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 6/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
System Administration
PowerShell Scripting Best Practices
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 7/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 8/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Networking Commands
PowerShell Scripting Best Practices
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 9/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Process
PowerShellManagement
Scripting Best Practices
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 10/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Working
PowerShellWith Objects
Scripting Best Practices
With this cheat sheet, you can get everything you need to know about those essential
commands, along with an example, for quick reference.
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 11/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Alias
PowerShell Command
Scripting Best PracticesSyntax Example Description
Lists items in
Get-ChildItem - Get-ChildItem -
Gci, ls, dir Get-ChildItem a specified
Path <Path> Path C:\Users
directory
Saves the
Push-Location -
Push-Location - current
pushd Push-Location Path
Path <Path> directory on a
C:\Windows
stack
Returns to
the directory
popd Pop-Location Pop-Location Pop-Location saved by
Push-
Location
File Manipulation
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 12/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Rename-Item - Rename-Item -
Path <Path> - Path .\file.txt - Renames a
ren, rni, Rename-Item
NewName NewName file
<NewName> new_file.txt
System Administration
Where-Object
{$_.Status -
gsv Get-Service Get-Service Get-Service
eq
“Running”}`
Starts a
Start-Service - Start-Service -
sasv Start-Service stopped
Name <Name> Name “bits”
service
Stops a
Stop-Service - Stop-Service -
spsv Stop-Service running
Name <Name> Name “bits”
service
Get- Select-Object
glu Get-LocalUser Get-LocalUser
LocalUser Name`
Creates a
New- New-LocalUser - New-LocalUser -
nlu new local
LocalUser Name <Name> Name “User1”
user account
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 13/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Set-Acl -Path
Set-Acl -Path Sets the ACL
<Path> -
– Set-Acl .\file.txt - for a file or
AclObject
AclObject $acl resource
<AclObject>
Networking Commands
Test-Connection Test-Connection
Test- Tests network
– -ComputerName -ComputerName
Connection connectivity
<Name> google.com
Get-
Retrieves IP
Get- Get- NetIPAddress -
– address
NetIPAddress NetIPAddress InterfaceAlias
configuration
“Ethernet”
Get-NetAdapter
Get- Lists network
– Get-NetAdapter -Name
NetAdapter adapters
“Ethernet”
Resolve-
Resolve- Resolves a
Resolve- DnsName -
– DnsName - DNS name to
DnsName Name
Name <Name> an IP address
google.com
Process Management
Where-Object
gps, ps Get-Process Get-Process Get-Process {$_.CPU -gt
100}`
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 14/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Stops a
Stop-Process - Stop-Process -
spps, kill Stop-Process running
Name <Name> Name “notepad”
process
Waits for a
Wait-Process - Wait-Process -
– Wait-Process process to
Name <Name> Name “notepad”
exit
Selects
Select-Object - Get-Process |
specific
select Select-Object Property Select-Object
properties of
<Property> Name, CPU
an object
Groups
Group-Object - Get-Process |
objects by
group Group-Object Property Group-Object
property
<Property> ProcessName
values
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 15/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Advanced PowerShell
PowerShell Scripting Commands & Techniques
Best Practices
PowerShell scripting extends the functionality of the command line, allowing for more
complex and powerful operations. Here are some of the key elements.
Scripts can automate almost any task that can be performed in the PowerShell command
line. Complex scripts can manage system updates, deploy software across networks,
automate file management, and a whole lot more.
The key is combining cmdlets, control structures, and custom functions to create a sequence
of operations that run without manual intervention.
Modules expand PowerShell’s capabilities by adding new commands, including cmdlets and
functions. After importing a module with Import-Module, you can access additional
functionalities for specific tasks, like AzureRM <
https://registry.terraform.io/providers/hashicorp/azurerm/latest> for Azure resources,
ActiveDirectory for directory services, and PSDsc < https://docs.inedo.com/docs/otter-
reference-operations-powershell-psdsc> for configuration management.
Modules can be either built-in, downloaded from the PowerShell Gallery <
https://learn.microsoft.com/en-us/powershell/gallery/getting-started?view=powershellget-3.x>
, or custom-made.
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 16/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
PowerShell Scripting
PowerShell Scripting Best Practices
Best Practices
When writing PowerShell scripts, following best practices will keep your code clean,
readable, and usable. Here are some general guidelines you should follow.
Use Clear Naming Conventions: Choose descriptive names for functions and variables.
This makes your script self-documenting and easier to understand.
Keep It Simple: Write simple and straightforward commands. Complex one-liners can be
impressive but difficult to read and maintain.
Modularize Your Code: Break your script into functions. This approach makes your code
reusable and easier to test.
Use Consistent Formatting: Use consistent indentation, spacing, and bracket placement
< https://www.techopedia.com/definition/18050/bracket> . This consistency improves
readability and maintenance.
Avoid Hard-Coding Values: Use parameters and configuration files instead of hard-
coded values < https://www.techopedia.com/definition/16934/hardcode> . This makes
your scripts more flexible and easier to update.
Implement Error Handling: Use try, catch, and finally, blocks to handle errors <
https://www.techopedia.com/definition/7068/error-message> . Proper error handling
prevents your script from failing silently and makes debugging easier.
Comment Your Code: Comments are very important for explaining the purpose of your
code, how it works, and why specific decisions were made. Comments are valuable for
anyone who may work on your script in the future, including your future self.
Document Your Script: Alongside in-line comments, document at the beginning of your
script its purpose, usage, parameters <
https://www.techopedia.com/definition/3725/parameter-param> , and any dependencies. It
is important for others to understand and use your script.
The PowerShell commands cheat sheet provided is a good starting point, but it’s important to
practice these commands and explore beyond the basics.
Advanced scripting, using modules, and learning new commands will unlock PowerShell’s
full capabilities.
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 17/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
FAQs
PowerShell Scripting Best Practices
References
Advertisements
Related Reading
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 18/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
humans-working-hand-in-hand-techopedias-
PowerShell Scripting Best Practices
interview-with-ibm-uks-chief-executive>
Related Terms
Cmdlet <
https://www.techopedia.com/definition/27340/cmdlet>
PowerShell <
https://www.techopedia.com/definition/25975/powershell>
Shell <
https://www.techopedia.com/definition/3427/shell>
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 19/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
TAGS
GENERAL COMPUTING < HTTPS://WWW.TECHOPEDIA.COM/TOPIC/84/GENERAL-COMPUTING>
Advertisements
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 20/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Disclosure
Advertisements
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 21/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
directory...
PowerShell Scripting Best Practices
Full Explanation <
https://www.techopedia.com/definition/chmod-
755>
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 22/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Sr. ServiceNow
Change & Release…
Capgemini
GA
<
https://www.indeed.co
m/tmn/ccs/3e15f5c144
8b9903/1b3e34f6625da
87668d2a347f5b05de7b
74fce141b9f01c45bfa17
bc29430b41/106287883
9669477?sf=qWY00>
Site Reliability
Engineer
Thales
Austin
<
https://www.indeed.co
m/tmn/ccs/809b0a8a4b
04d9c4/09286c64ca7639
88d6a59ba2cdcfdbe6f3
6c964b54b96f097807e1
59eb280221/106287883
9669477?sf=DEQ00>
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 23/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Tech Dictionary
Advertisements
Latest Q&A
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 24/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
LEARNING>
PowerShell Scripting Best Practices
How Can AI Help The World Deal With
Climate Change? <
Https://Www.Techopedia.Com/Experts/How-
Can-Ai-Help-The-World-Deal-With-Climate-
Change>
The headlines are typically overrun with stories
about how artificial intelligence (AI) is taking
everyone's jobs. But AI isn't as...
Advertisements
Advertisements
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 25/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Advertisements
Ad removed. Details
Advertisements
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 26/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 27/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 28/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
<
EMERGING TECHNOLOGY <
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/225/EMERGING
https://www.techopedia.com/why-
TECHNOLOGY>
remote-work-apps-
Why Remote Work
could-go-the-way-
Apps Could Go the…
W f F M hi
of-fax-machine>
<
https://www.techopedia.com/why-
remote-work-apps-
< https://www.techopedia.com/nasas-star-
EMERGING TECHNOLOGY < could-go-the-way-
will-drive-search-for-life-expert-analysis>
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/225/EMERGING-
TECHNOLOGY> of-fax-machine>
NASA’s ‘Star’ Will Drive Search FRANKLIN OKEKE <
For Life: Expert Analysis HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/FRAN
4 months
< https://www.techopedia.com/nasas-
star-will-drive-search-for-life-expert-
analysis> RAY FERNANDEZ <
HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/RAYFERNANDEZ>
3 months
<
EMERGING TECHNOLOGY < < CLOUD COMPUTING < <
EMERGING TECHNOLOGY <
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/225/EMERGING-
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/1/CLOUD-
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/225/EMERGIN
https://www.techopedia.com/quantum-
TECHNOLOGY> https://www.techopedia.com/why-
COMPUTING> https://www.techopedia.com/how-
TECHNOLOGY>
computing-
Quantum Computing Why green-innovation-in-
Green air-conditioning-
How Air Conditioning
investment-boom-
Investment hardware-and-
Boom:… Innovation in… changed-the-world>
Changed the World…
Ff di
di D i i H fd d A d Th h
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 29/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
funding> software-must-go-
< PowerShell Scripting Best
< Practices <
faster>
https://www.techopedia.com/quantum-
https://www.techopedia.com/why-
https://www.techopedia.com/how-
computing- green-innovation-in- air-conditioning-
investment-boom- hardware-and- changed-the-world>
funding> MARIA WEBB < software-must-go- NEIL C. HUGHES <
faster> RAY FERNANDEZ HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/NEIL
HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/MARIAWEBB>
4 months < 5 months
HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/RAYFERNANDEZ>
5 months
<
CAREER PATHS < <
EMERGING TECHNOLOGY < < INTERNET <
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/352/CAREER-
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/225/EMERGING-
HTTPS://WWW.TECHOPEDIA.COM/TOPIC/102/INTERNET
https://www.techopedia.com/free-
PATHS> https://www.techopedia.com/what-
TECHNOLOGY> https://www.techopedia.com/telegram-
tech-career-quiz> does-touching- Telegram vs Signal:
What Tech Job Is Everyone’s Obsessed vs-signal-which-is-
Which is the More…
grass-mean>
Right For You? Free… With This New… the-more-secure-
S M i
T hC Q i P d i i H k messaging-app-in-
<
< < 2024>
https://www.techopedia.com/telegram-
https://www.techopedia.com/free-
https://www.techopedia.com/what-
vs-signal-which-is-
tech-career-quiz> does-touching-
the-more-secure-
NEIL C. HUGHES < grass-mean> TIM
messaging-app-in-
HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/NEILHUGHES>
KEARY <
2024> RAY FERNANDEZ <
5 months HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/TIMKEARY>
HTTPS://WWW.TECHOPEDIA.COM/CONTRIBUTORS/RAYF
5 months
2 months
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 30/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Antivirus Artificial Audio < CRM < CryptocurrencyGambling Gaming < HR <
< Intelligence https://www.techopedia.com/audio>
https://www.techopedia.com/crm>
< < https://www.techope
https://ww
https://www.techopedia.com/antivirus>
< https://www.techopedia.com/cryptocurren
https://www.techopedia.com/ga
https://www.techopedia.com/ai>
Investing Laptops < Network < Password Project Spy < VoIP < VPN <
< https://www.techopedia.com/laptops>
https://www.techopedia.com/network>
Managers Management https://www.techopedia.com/sp
https://www.techope
https://ww
https://www.techopedia.com/investing>
< <
https://www.techopedia.com/password-
https://www.techopedia.com/project-
manager> management>
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 31/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at
any time.
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 32/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Popular Categories
Featured Content
About Techopedia
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 33/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
https://twitter.com/techopedia
https://www.facebook.
https://www.lin
https://
Techopedia Terms
# < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/1>
A < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/A>
B < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/B>
C < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/C>
D < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/D>
E < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/E>
F < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/F>
G < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/G>
H < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/H>
I < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/I>
J < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/J>
K < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/K>
L < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/L>
M < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/M>
N < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/N>
O < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/O>
P < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/P>
Q < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/Q>
R < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/R>
S < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/S>
T < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/T>
U < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/U>
V < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/V>
W < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/W>
X < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/X>
Y < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/Y>
Z < HTTPS://WWW.TECHOPEDIA.COM/IT-TERMS/Z>
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 34/35
10/10/24, 9:12 PM 30 Powershell Commands You Must Know (Cheat Sheet Included) - Techopedia
Registered Address: Tower Financial Centre, 12th Floor, 50th Street & Corner of Elvira, Panama City, Panama. © Techopedia.
English All Rights Reserved.
https://www.techopedia.com/30-powershell-commands-you-must-know-cheat-sheet-included 35/35