- PowerShell for Office 365
- Martin Machado Prashant G Bhoyar
- 174字
- 2021-07-02 18:50:38
How to get help with PowerShell
PowerShell comes with a lot of in-built cmdlets, and with the addition of every new module, the list of available cmdlets increases. You can use your favorite search engine to get more information on a cmdlet. You can do this from the PowerShell window as well. The cmdlet to get the help is this:
Get-Help nameofcmdlet
Here's an, for example:
Get-Help Get-Service
The following screenshot shows the output for the preceding command:

This is useful if we would like to get help but don't want to leave the Command Prompt.
If you would like to get help from the official online documentation, you can use the following cmdlet:
Get-Help Get-Service -online
This will open the online help manual of the cmdlet with your default browser:

If you would like to quickly check whether there are any commands available for a particular service, you can use the following cmdlet:
Get-Command *Service*
This will give all the commands that contain the Service service in all the modules that are loaded:
- HTML5+CSS3王者歸來
- Java多線程編程實戰指南:設計模式篇(第2版)
- Getting Started with Gulp(Second Edition)
- 在最好的年紀學Python:小學生趣味編程
- Android Studio Essentials
- Learning RabbitMQ
- Python貝葉斯分析(第2版)
- INSTANT Passbook App Development for iOS How-to
- Mastering JavaScript Design Patterns(Second Edition)
- 區塊鏈技術與應用
- PHP 8從入門到精通(視頻教學版)
- Hands-On ROS for Robotics Programming
- C#網絡編程高級篇之網頁游戲輔助程序設計
- Java Web程序開發參考手冊
- Java并發編程深度解析與實戰