
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Get List of All Commands in PowerShell
To get the list of all the commands installed in the system use the below command line. It will include all the Alias, Functions and Cmdlets.
Get-Command
To export them into the CSV file,
Get-Command | Export-Csv D:\Temp\PowerShellcommands.csv - NoTypeInformation
To get only the cmdlets commands,
Get-Command -CommandType Cmdlet
Similarly, you can get the commands for the alias and functions.
If you want the list of commands starting with getting, you parameter –Verb.
Get-Command -Verb Get
To get command starting with Set,
Get-Command -Verb Set
Advertisements