Skip to content

Commit e351128

Browse files
Merge pull request #53330 from Rob-Barefoot/main
Updating PowerShell command syntax
2 parents 35f4df5 + 5a0e701 commit e351128

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

learn-pr/wwl-azure/understand-command-syntax-windows-powershell/includes/5-display-about-files-content-powershell.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ Get-Help about*
99
To view a specific topic, use:
1010

1111
```powershell
12-
Get-Help about_common_parameters
12+
Get-Help about_CommonParameters
1313
```
1414

1515
You can also open the help topic in a separate window or online:
1616

1717
```powershell
18-
Get-Help about_common_parameters -ShowWindow
19-
Get-Help about_common_parameters -Online
18+
Get-Help about_CommonParameters -ShowWindow
19+
Get-Help about_CommonParameters -Online
2020
```
21+
> [!NOTE]
22+
> For the -Online version to open, it must have the URI/URL included in the information in the local help files. If the URI/URL isn't included in the local version, you may receive an error.
2123
22-
When you use wildcard characters with the **Get-Help** command, **About** help files will appear in a list when their titles contain a match for your wildcard pattern. Typically, **About** help files will appear last, after any commands whose names also matched your wildcard pattern. You can also use the *‑Category* parameter to specify a search for **About** files.
24+
When you use wildcard characters with the **Get-Help** command, **About** help files appear in a list when their titles contain a match for your wildcard pattern. Typically, **About** help files will appear last, after any commands whose names also matched your wildcard pattern. You can also use the *‑Category* parameter to specify a search for **About** files.
2325

2426
> [!NOTE]
2527
> For much of this course, you'll need to refer to **About** files for additional documentation. You must review these files frequently to discover the steps and techniques you need to complete lab exercises.

0 commit comments

Comments
 (0)