- AWS Tools for PowerShell 6
- Ramesh Waghmare
- 275字
- 2021-07-15 17:09:13
Getting and exploring help options
Microsoft has designed PowerShell in such a way that it is easy to use for complex scripting and automation tasks, and it is also easy to use for an interactive command. The standard naming convention used for a PowerShell cmdlet will assist you in figuring out how to accomplish certain tasks. Understanding the help system capability in PowerShell will help you to write the complex scripting cases in a large infrastructure setup, and the help system in PowerShell will become your most important resource. On some Windows systems, in case you do not find the help system installed, you can update it using the update-Help cmdlet:
PS C:\>Update-Help -Force
Force with Update-Help indicates that the Update-Help cmdlet does not follow the once-per-day limitation; it skips version checking and downloads files that exceed the 1 GB limit. Also, you need to ensure that you started PowerShell as an administrator before attempting to run this command.
The Get-Help cmdlet displays information about the necessary help for any other cmdlet that you need the information for. You can seek help on any cmdlet using Get-Help. For example, if you want to seek information on the Get-Process cmdlet, then you can use the following command:
PS C:\>Get-Help Get-Process

The output shows the help for Get-Process. I would encourage you to check the following commonly used variant of the Get-Help cmdlet, which would feed you more detailed information on the specific cmdlet. This is what will help you to understand the command usage in detail when you start scripting:
PS C:\>Get-Help Get-Process -ShowWindow
PS C:\>Get-Help Get-Process -Detailed
PS C:\>Get-Help Get-Process -Full
PS C:\>Get-Help Get-Process -Online
- 基于粒計(jì)算模型的圖像處理
- Design Principles for Process:driven Architectures Using Oracle BPM and SOA Suite 12c
- SQL Server 2016從入門到精通(視頻教學(xué)超值版)
- Rust實(shí)戰(zhàn)
- Access 2010數(shù)據(jù)庫(kù)基礎(chǔ)與應(yīng)用項(xiàng)目式教程(第3版)
- C語(yǔ)言程序設(shè)計(jì)實(shí)踐教程
- JS全書:JavaScript Web前端開發(fā)指南
- 深入理解C指針
- 深度學(xué)習(xí)原理與PyTorch實(shí)戰(zhàn)(第2版)
- Instant jQuery Boilerplate for Plugins
- Learning Unreal Engine Game Development
- 例解Python:Python編程快速入門踐行指南
- 計(jì)算機(jī)系統(tǒng)解密:從理解計(jì)算機(jī)到編寫高效代碼
- Blender 3D Cookbook
- Java編程指南:語(yǔ)法基礎(chǔ)、面向?qū)ο?、函?shù)式編程與項(xiàng)目實(shí)戰(zhàn)