Skip to content

Commit 73e13f9

Browse files
authored
Fixes #10277 - Add missing function and reorder alphabetically (#10278)
* Add missing function and reorder alphabetically * fix formatting
1 parent ebbbadd commit 73e13f9

File tree

1 file changed

+27
-23
lines changed

1 file changed

+27
-23
lines changed

reference/5.1/Microsoft.PowerShell.Core/About/about_Built-in_Functions.md

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: Describes the built-in functions in PowerShell.
33
Locale: en-US
4-
ms.date: 01/03/2023
4+
ms.date: 07/17/2023
55
online version: https://learn.microsoft.com/powershell/module/Microsoft.PowerShell.Core/about/about_built-in_functions?view=powershell-5.1&WT.mc_id=ps-gethelp
66
schema: 2.0.0
77
title: about Built-in Functions
@@ -33,49 +33,53 @@ In the Windows CMD shell it's common to run the `cd` command without any spaces
3333
between the command and the destination path. This function runs
3434
`Set-Location \` to change to the root folder.
3535

36-
## `ImportSystemModules`
36+
## `Clear-Host`
3737

38-
This function has been deprecated. It is an empty function that does nothing.
38+
This function clears the screen. For more information, see
39+
[Clear-Host](xref:Microsoft.PowerShell.Core.Clear-Host).
3940

40-
## `Pause`
41+
## `Get-Verb`
4142

42-
This function replicates the behavior of CMD's `pause` command. The script
43-
pauses execution and prompts the user to hit a key to continue.
43+
This function lists PowerShell verbs and the category group they belong to. For
44+
more information, see [Get-Verb](xref:Microsoft.PowerShell.Core.Get-Verb)
4445

4546
## `help`
4647

4748
This function invokes `Get-Help` with your parameters and passes the output to
4849
the systems pager command, `more.com`.
4950

50-
## `prompt`
51-
52-
This is the function that creates the default prompt for the PowerShell command
53-
line. You can customize your prompt by overriding this function with your own.
54-
For more information see [about_Prompts](about_Prompts.md).
55-
56-
## `Clear-Host`
51+
## `ImportSystemModules`
5752

58-
This function clears the screen. For more information, see
59-
[Clear-Host](xref:Microsoft.PowerShell.Core.Clear-Host).
53+
This function has been deprecated. It is an empty function that does nothing.
6054

61-
## `TabExpansion2`
55+
## `mkdir`
6256

63-
This is the default function to use for tab expansion.
57+
This function provides a short hand way to run `New-Item -Type Directory` with
58+
your parameters.
6459

65-
## `Get-Verb`
60+
## `more`
6661

67-
This function lists PowerShell verbs and the category group they belong to. For
68-
more information, see [Get-Verb](xref:Microsoft.PowerShell.Core.Get-Verb)
62+
This function is a wrapper around the `more.com` native command.
6963

7064
## `oss`
7165

7266
This function provides a short hand way to run `Out-String -Stream` in a
7367
pipeline.
7468

75-
## `mkdir`
69+
## `Pause`
7670

77-
This function provides a short hand way to run `New-Item -Type Directory` with
78-
your parameters.
71+
This function replicates the behavior of CMD's `pause` command. The script
72+
pauses execution and prompts the user to hit a key to continue.
73+
74+
## `prompt`
75+
76+
This is the function that creates the default prompt for the PowerShell command
77+
line. You can customize your prompt by overriding this function with your own.
78+
For more information see [about_Prompts](about_Prompts.md).
79+
80+
## `TabExpansion2`
81+
82+
This is the default function to use for tab expansion.
7983

8084
## Windows drive letter functions
8185

0 commit comments

Comments
 (0)