Updates from: 02/02/2022 06:58:13
Service Microsoft Docs article Related commit history on GitHub Change details
Microsoft.PowerShell.Management New Psdrive (5.1) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/5.1/Microsoft.PowerShell.Management/New-PSDrive.md
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Management Previously updated : 01/18/2022 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-psdrive?view=powershell-5.1&WT.mc_id=ps-gethelp schema: 2.0.0 Title: New-PSDrive
by using `Set-Location`, and access the contents of the drive by using `Get-Item
Because temporary drives are known only to PowerShell, you can't access them by using File Explorer, Windows Management Instrumentation (WMI), Component Object Model (COM), Microsoft .NET Framework, or
-with tools such as **net use**.
+with tools such as `net use`.
The following features were added to `New-PSDrive` in PowerShell 3.0:
specified in the value of the **Credential** parameter is used to create the **P
Some code samples use splatting to reduce the line length and improve readability. For more information, see [about_Splatting](../Microsoft.PowerShell.Core/About/about_Splatting.md).
+> [!NOTE]
+> Unless you use the **Scope** parameter, PSDrives are created in the scope in which the
+> `New-PSDrive` command is run.
+ ## Examples ### Example 1: Create a temporary drive mapped to a network share
LocalName RemoteName ConnectionState Status
X: \\products\public Disconnected Unavailable ```
+### Example 6: Create persistent drive in a script
+
+PSDrives are created in the scope in which the `New-PSDrive` command is run. When the command is run
+within a script, the drive mapping is local to the script. When the script exits, the drive is no
+longer available.
+
+```powershell
+New-PSDrive -Persist -Name "X" -PSProvider "FileSystem" -Root "\\Server01\Public" -Scope Global
+```
+
+To ensure that the drive is available outside of the script to must use the **Scope** parameter to
+create the drive in the **Global** scope.
+ ## Parameters ### -Credential
Microsoft.PowerShell.Utility Update Typedata (5.1) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/5.1/Microsoft.PowerShell.Utility/Update-TypeData.md
Accept wildcard characters: False
### -DefaultDisplayPropertySet
-Specifies one or more properties of the type. These properties are displayed by the `Format-List`
-cmdlet when no other properties are specified.
+Specifies one or more properties of the type. These properties are displayed by the `Format-List`,
+`Format-Table`, and `Format-Custom` cmdlets when no other properties are specified.
Type the names of standard or extended properties of the type. The value of this parameter can be the names of types that are added in the same command.
-This value is effective only when there are no list views defined for the type in a `Format.ps1xml`
-file.
+This value is effective only when there are no list, table, or custom views, respectively,
+defined for the type in a `Format.ps1xml` file.
This parameter was introduced in Windows PowerShell 3.0.
Microsoft.PowerShell.Management New Psdrive (7.0) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.0/Microsoft.PowerShell.Management/New-PSDrive.md
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Management Previously updated : 01/18/2022 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-psdrive?view=powershell-7&WT.mc_id=ps-gethelp schema: 2.0.0 Title: New-PSDrive
by using `Set-Location`, and access the contents of the drive by using `Get-Item
Because temporary drives are known only to PowerShell, you can't access them by using File Explorer, Windows Management Instrumentation (WMI), Component Object Model (COM), Microsoft .NET Framework, or
-with tools such as **net use**.
+with tools such as `net use`.
The following features were added to `New-PSDrive` in PowerShell 3.0:
specified in the value of the **Credential** parameter is used to create the **P
Some code samples use splatting to reduce the line length and improve readability. For more information, see [about_Splatting](../Microsoft.PowerShell.Core/About/about_Splatting.md).
+> [!NOTE]
+> Unless you use the **Scope** parameter, PSDrives are created in the scope in which the
+> `New-PSDrive` command is run.
+ ## Examples ### Example 1: Create a temporary drive mapped to a network share
LocalName RemoteName ConnectionState Status
X: \\products\public Disconnected Unavailable ```
+### Example 6: Create persistent drive in a script
+
+PSDrives are created in the scope in which the `New-PSDrive` command is run. When the command is run
+within a script, the drive mapping is local to the script. When the script exits, the drive is no
+longer available.
+
+```powershell
+New-PSDrive -Persist -Name "X" -PSProvider "FileSystem" -Root "\\Server01\Public" -Scope Global
+```
+
+To ensure that the drive is available outside of the script to must use the **Scope** parameter to
+create the drive in the **Global** scope.
+ ## Parameters ### -Credential
Microsoft.PowerShell.Utility Update Typedata (7.0) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.0/Microsoft.PowerShell.Utility/Update-TypeData.md
Accept wildcard characters: False
### -DefaultDisplayPropertySet
-Specifies one or more properties of the type. These properties are displayed by the `Format-List`
-cmdlet when no other properties are specified.
+Specifies one or more properties of the type. These properties are displayed by the `Format-List`,
+`Format-Table`, and `Format-Custom` cmdlets when no other properties are specified.
Type the names of standard or extended properties of the type. The value of this parameter can be the names of types that are added in the same command.
-This value is effective only when there are no list views defined for the type in a `Format.ps1xml`
-file.
+This value is effective only when there are no list, table, or custom views, respectively,
+defined for the type in a `Format.ps1xml` file.
This parameter was introduced in Windows PowerShell 3.0.
Microsoft.PowerShell.Management New Psdrive (7.1) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.1/Microsoft.PowerShell.Management/New-PSDrive.md
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Management Previously updated : 01/18/2022 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-psdrive?view=powershell-7.1&WT.mc_id=ps-gethelp schema: 2.0.0 Title: New-PSDrive
by using `Set-Location`, and access the contents of the drive by using `Get-Item
Because temporary drives are known only to PowerShell, you can't access them by using File Explorer, Windows Management Instrumentation (WMI), Component Object Model (COM), Microsoft .NET Framework, or
-with tools such as **net use**.
+with tools such as `net use`.
The following features were added to `New-PSDrive` in PowerShell 3.0:
specified in the value of the **Credential** parameter is used to create the **P
Some code samples use splatting to reduce the line length and improve readability. For more information, see [about_Splatting](../Microsoft.PowerShell.Core/About/about_Splatting.md).
+> [!NOTE]
+> Unless you use the **Scope** parameter, PSDrives are created in the scope in which the
+> `New-PSDrive` command is run.
+ ## Examples ### Example 1: Create a temporary drive mapped to a network share
LocalName RemoteName ConnectionState Status
X: \\products\public Disconnected Unavailable ```
+### Example 6: Create persistent drive in a script
+
+PSDrives are created in the scope in which the `New-PSDrive` command is run. When the command is run
+within a script, the drive mapping is local to the script. When the script exits, the drive is no
+longer available.
+
+```powershell
+New-PSDrive -Persist -Name "X" -PSProvider "FileSystem" -Root "\\Server01\Public" -Scope Global
+```
+
+To ensure that the drive is available outside of the script to must use the **Scope** parameter to
+create the drive in the **Global** scope.
+ ## Parameters ### -Credential
Microsoft.PowerShell.Utility Read Host (7.1) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.1/Microsoft.PowerShell.Utility/Read-Host.md
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Utility Previously updated : 03/18/2021 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/read-host?view=powershell-7.1&WT.mc_id=ps-gethelp schema: 2.0.0 Title: Read-Host
input. When you use this parameter, the output of the `Read-Host` cmdlet is a **
This allows you to safely prompt for a password that is returned as plaintext instead of **SecureString**.
+This parameter was added in PowerShell 7.1.
+ ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: AsString
Microsoft.PowerShell.Utility Update Typedata (7.1) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.1/Microsoft.PowerShell.Utility/Update-TypeData.md
Accept wildcard characters: False
### -DefaultDisplayPropertySet
-Specifies one or more properties of the type. These properties are displayed by the `Format-List`
-cmdlet when no other properties are specified.
+Specifies one or more properties of the type. These properties are displayed by the `Format-List`,
+`Format-Table`, and `Format-Custom` cmdlets when no other properties are specified.
Type the names of standard or extended properties of the type. The value of this parameter can be the names of types that are added in the same command.
-This value is effective only when there are no list views defined for the type in a `Format.ps1xml`
-file.
+This value is effective only when there are no list, table, or custom views, respectively,
+defined for the type in a `Format.ps1xml` file.
This parameter was introduced in Windows PowerShell 3.0.
Microsoft.PowerShell.Management New Psdrive (7.2) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.2/Microsoft.PowerShell.Management/New-PSDrive.md
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Management Previously updated : 01/18/2022 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-psdrive?view=powershell-7.2&WT.mc_id=ps-gethelp schema: 2.0.0 Title: New-PSDrive
by using `Set-Location`, and access the contents of the drive by using `Get-Item
Because temporary drives are known only to PowerShell, you can't access them by using File Explorer, Windows Management Instrumentation (WMI), Component Object Model (COM), Microsoft .NET Framework, or
-with tools such as **net use**.
+with tools such as `net use`.
The following features were added to `New-PSDrive` in PowerShell 3.0:
specified in the value of the **Credential** parameter is used to create the **P
Some code samples use splatting to reduce the line length and improve readability. For more information, see [about_Splatting](../Microsoft.PowerShell.Core/About/about_Splatting.md).
+> [!NOTE]
+> Unless you use the **Scope** parameter, PSDrives are created in the scope in which the
+> `New-PSDrive` command is run.
+ ## Examples ### Example 1: Create a temporary drive mapped to a network share
LocalName RemoteName ConnectionState Status
X: \\products\public Disconnected Unavailable ```
+### Example 6: Create persistent drive in a script
+
+PSDrives are created in the scope in which the `New-PSDrive` command is run. When the command is run
+within a script, the drive mapping is local to the script. When the script exits, the drive is no
+longer available.
+
+```powershell
+New-PSDrive -Persist -Name "X" -PSProvider "FileSystem" -Root "\\Server01\Public" -Scope Global
+```
+
+To ensure that the drive is available outside of the script to must use the **Scope** parameter to
+create the drive in the **Global** scope.
+ ## Parameters ### -Credential
Microsoft.PowerShell.Utility Read Host (7.2) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.2/Microsoft.PowerShell.Utility/Read-Host.md
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Utility Previously updated : 03/18/2021 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/read-host?view=powershell-7.2&WT.mc_id=ps-gethelp schema: 2.0.0 Title: Read-Host
input. When you use this parameter, the output of the `Read-Host` cmdlet is a **
This allows you to safely prompt for a password that is returned as plaintext instead of **SecureString**.
+This parameter was added in PowerShell 7.1.
+ ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: AsString
Microsoft.PowerShell.Utility Update Typedata (7.2) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.2/Microsoft.PowerShell.Utility/Update-TypeData.md
Accept wildcard characters: False
### -DefaultDisplayPropertySet
-Specifies one or more properties of the type. These properties are displayed by the `Format-List`
-cmdlet when no other properties are specified.
+Specifies one or more properties of the type. These properties are displayed by the `Format-List`,
+`Format-Table`, and `Format-Custom` cmdlets when no other properties are specified.
Type the names of standard or extended properties of the type. The value of this parameter can be the names of types that are added in the same command.
-This value is effective only when there are no list views defined for the type in a `Format.ps1xml`
-file.
+This value is effective only when there are no list, table, or custom views, respectively,
+defined for the type in a `Format.ps1xml` file.
This parameter was introduced in Windows PowerShell 3.0.
Microsoft.PowerShell.Management New Psdrive (7.3) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.3/Microsoft.PowerShell.Management/New-PSDrive.md
external help file: Microsoft.PowerShell.Commands.Management.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Management Previously updated : 01/18/2022 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.management/new-psdrive?view=powershell-7.3&WT.mc_id=ps-gethelp schema: 2.0.0 Title: New-PSDrive
by using `Set-Location`, and access the contents of the drive by using `Get-Item
Because temporary drives are known only to PowerShell, you can't access them by using File Explorer, Windows Management Instrumentation (WMI), Component Object Model (COM), Microsoft .NET Framework, or
-with tools such as **net use**.
+with tools such as `net use`.
The following features were added to `New-PSDrive` in PowerShell 3.0:
specified in the value of the **Credential** parameter is used to create the **P
Some code samples use splatting to reduce the line length and improve readability. For more information, see [about_Splatting](../Microsoft.PowerShell.Core/About/about_Splatting.md).
+> [!NOTE]
+> Unless you use the **Scope** parameter, PSDrives are created in the scope in which the
+> `New-PSDrive` command is run.
+ ## Examples ### Example 1: Create a temporary drive mapped to a network share
LocalName RemoteName ConnectionState Status
X: \\products\public Disconnected Unavailable ```
+### Example 6: Create persistent drive in a script
+
+PSDrives are created in the scope in which the `New-PSDrive` command is run. When the command is run
+within a script, the drive mapping is local to the script. When the script exits, the drive is no
+longer available.
+
+```powershell
+New-PSDrive -Persist -Name "X" -PSProvider "FileSystem" -Root "\\Server01\Public" -Scope Global
+```
+
+To ensure that the drive is available outside of the script to must use the **Scope** parameter to
+create the drive in the **Global** scope.
+ ## Parameters ### -Credential
credentials.
[Get-PSDrive](Get-PSDrive.md) [Remove-PSDrive](Remove-PSDrive.md)-
Microsoft.PowerShell.Utility Read Host (7.3) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.3/Microsoft.PowerShell.Utility/Read-Host.md
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml Locale: en-US Module Name: Microsoft.PowerShell.Utility Previously updated : 03/18/2021 Last updated : 02/01/2022 online version: https://docs.microsoft.com/powershell/module/microsoft.powershell.utility/read-host?view=powershell-7.3&WT.mc_id=ps-gethelp schema: 2.0.0 Title: Read-Host
input. When you use this parameter, the output of the `Read-Host` cmdlet is a **
This allows you to safely prompt for a password that is returned as plaintext instead of **SecureString**.
+This parameter was added in PowerShell 7.1.
+ ```yaml Type: System.Management.Automation.SwitchParameter Parameter Sets: AsString
Microsoft.PowerShell.Utility Update Typedata (7.3) https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/7.3/Microsoft.PowerShell.Utility/Update-TypeData.md
Accept wildcard characters: False
### -DefaultDisplayPropertySet
-Specifies one or more properties of the type. These properties are displayed by the `Format-List`
-cmdlet when no other properties are specified.
+Specifies one or more properties of the type. These properties are displayed by the `Format-List`,
+`Format-Table`, and `Format-Custom` cmdlets when no other properties are specified.
Type the names of standard or extended properties of the type. The value of this parameter can be the names of types that are added in the same command.
-This value is effective only when there are no list views defined for the type in a `Format.ps1xml`
-file.
+This value is effective only when there are no list, table, or custom views, respectively,
+defined for the type in a `Format.ps1xml` file.
This parameter was introduced in Windows PowerShell 3.0.
community 2021 Updates https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/docs-conceptual/community/2021-updates.md
--- description: List of changes to the PowerShell documentation for 2021 Previously updated : 11/01/2021 Last updated : 02/01/2022 Title: What's New in PowerShell-Docs for 2021 --- # What's new in PowerShell Docs for 2021
contributions from the community.
Help us make the documentation better for you. Read the [Contributor's Guide][contrib] to learn how to get started.
+## 2021-December
+
+New Content
+
+- Added PowerShell 7.3-preview.1 [preview content]
+- New DSC 3.0 content
+ - [PowerShell Desired State Configuration overview](/powershell/dsc/overview?view=dsc-3.0&preserve-view=true)
+ - [Manage configuration using PowerShell DSC](/powershell/dsc/getting-started/getting-started?view=dsc-3.0&preserve-view=true)
+ - [DSC Configurations](/powershell/dsc/concepts/configurations?view=dsc-3.0&preserve-view=true)
+ - [DSC Resources](/powershell/dsc/concepts/resources?view=dsc-3.0&preserve-view=true)
+
+Content updates
+
+- Moved Desired State Configuration [content](/powershell/dsc/overview) to new docset and repository
+ - DSC is now being developed outside of the PowerShell product.
+ - The move allows for better versioning of documentation for DSC.
+
+### Top Community Contributors
+
+GitHub stats
+
+- 24 PRs merged (4 from Community)
+- 30 issues opened (26 from Community)
+- 12 issues closed (7 Community issues closed)
+
+The following people have contributed to PowerShell docs by submitting pull requests or filing
+issues. Thank you!
+
+| GitHub Id | PRs merged | Issues opened |
+| --------------- | :--------: | :-----------: |
+| dAu6jARL | 1 | |
+| shriharshmishra | 1 | |
+| a-sync | 1 | |
+| bogdangrigg | 1 | |
+
+## 2021-November
+
+New Content
+- [about_Built-in_Functions](/powershell/module/microsoft.powershell.core/about/about_built-in_functions)
+
+Content updates
+
+- PowerShell 7.2 GA documentation updates
+- Update GitHub Issue and PR templates - piloting the new YAML-based forms for issues
+- Updated Crescendo reference for Preview 4 release
+
+### Top Community Contributors
+
+GitHub stats
+
+- 48 PRs merged (13 from Community)
+- 31 issues opened (24 from Community)
+- 34 issues closed (28 Community issues closed)
+
+The following people have contributed to PowerShell docs by submitting pull requests or filing
+issues. Thank you!
+
+| GitHub Id | PRs merged | Issues opened |
+| ----------- | :--------: | :-----------: |
+| matt9ucci | 4 | |
+| yecril71pl | 3 | |
+| tholabrk | 1 | |
+| lukejjh | 1 | |
+| Oechiih | 1 | |
+| bergmeister | 1 | |
+| Hrxn | 1 | |
+| jebeckham | 1 | |
+ ## 2021-October New Content
community 2022 Updates https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/docs-conceptual/community/2022-updates.md
+---
+description: List of changes to the PowerShell documentation for 2022
Last updated : 02/01/2022
+ Title: What's New in PowerShell-Docs for 2022
+---
+# What's new in PowerShell Docs for 2022
+
+This article lists some of the major changes to docs during this previous month and celebrates the
+contributions from the community.
+
+Help us make the documentation better for you. Read the [Contributor's Guide][contrib] to learn how
+to get started.
+
+## 2022-January
+
+New Content
+
+- No new content. We are down to one writer for PowerShell. I was out of the office for half of
+ December for vacation then half of January for COVID.
+
+Content updates
+
+- Catching up on issues
+- Updates for 7.3 preview content
+
+### Top Community Contributors
+
+GitHub stats
+
+- 51 PRs merged (10 from Community)
+- 29 issues opened (26 from Community)
+- 46 issues closed (39 Community issues closed)
+
+The following people have contributed to PowerShell docs by submitting pull requests or filing
+issues. Thank you!
+
+| GitHub Id | PRs merged | Issues opened |
+| --------------- | :--------: | :-----------: |
+| sethvs | 3 | |
+| UberKluger | 1 | |
+| MiguelDomingues | 1 | |
+| reZach | 1 | |
+| Hertz-Hu | 1 | |
+| julian-hansen | 1 | |
+| Hrxn | 1 | |
+| peteraritchie | 1 | |
community Hall Of Fame https://github.com/MicrosoftDocs/PowerShell-Docs/commits/staging/reference/docs-conceptual/community/hall-of-fame.md
--- description: List of the GitHub users that have the most contributions to the PowerShell-Doc project. Previously updated : 11/01/2021 Last updated : 02/01/2022 Title: Community contributor Hall of Fame --- # Community Contributor Hall of Fame
As of the end of September 2021, these GitHub users are the All-Time Top Communi
Pull Requests help us fix those issues and make the documentation better for everyone.
-| Docs PRs Merged | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | Grand Total |
-| --------------- | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ----------: |
-| Community | 3 | 194 | 446 | 464 | 318 | 161 | 84 | 1670 |
-| matt9ucci | | | 157 | 80 | 30 | 1 | 2 | 270 |
-| nschonni | | | | 14 | 138 | 10 | | 162 |
-| kiazhi | | 25 | 79 | 12 | | | | 116 |
-| alexandair | | 57 | 7 | 26 | 2 | 1 | | 93 |
-| doctordns | | 5 | 32 | 20 | 7 | 9 | 5 | 78 |
-| sethvs | | | 1 | 43 | | 20 | 1 | 65 |
-| yecril71pl | | | | | | 21 | | 21 |
-| Dan1el42 | | 20 | | | | | | 20 |
-| NReilingh | | 2 | | 13 | 3 | | | 18 |
-| it-praktyk | | | | 16 | 1 | | | 17 |
-| vors | | 15 | 1 | | | | | 16 |
-| markekraus | | | 11 | 5 | | | | 16 |
-| kvprasoon | | 2 | 1 | 7 | 2 | 2 | 2 | 16 |
-| purdo17 | | | | 13 | | | | 13 |
-| k-takai | | | | 5 | 1 | 7 | | 13 |
-| skycommand | | | 1 | 3 | 3 | 6 | | 13 |
-| PlagueHO | | 10 | | | 1 | | | 11 |
-| exchange12rocks | | | 7 | 3 | | | 1 | 11 |
+| Docs PRs Merged | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | Grand Total |
+| --------------- | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ----------: |
+| Community | 3 | 194 | 446 | 464 | 318 | 161 | 100 | 11 | 1697 |
+| matt9ucci | | | 157 | 80 | 30 | 1 | 6 | | 274 |
+| nschonni | | | | 14 | 138 | 10 | | | 162 |
+| kiazhi | | 25 | 79 | 12 | | | | | 116 |
+| alexandair | | 57 | 7 | 26 | 2 | 1 | | | 93 |
+| doctordns | | 5 | 32 | 20 | 7 | 9 | 5 | | 78 |
+| sethvs | | | 1 | 43 | | 20 | 1 | 4 | 69 |
+| yecril71pl | | | | | | 21 | 3 | | 24 |
+| Dan1el42 | | 20 | | | | | | | 20 |
+| NReilingh | | 2 | | 13 | 3 | | | | 18 |
+| it-praktyk | | | | 16 | 1 | | | | 17 |
+| markekraus | | | 11 | 5 | | | | | 16 |
+| vors | | 15 | 1 | | | | | | 16 |
+| kvprasoon | | 2 | 1 | 7 | 2 | 2 | 2 | | 16 |
+| skycommand | | | 1 | 3 | 3 | 6 | | | 13 |
+| purdo17 | | | | 13 | | | | | 13 |
+| k-takai | | | | 5 | 1 | 7 | | | 13 |
+| PlagueHO | | 10 | | | 1 | | | | 11 |
+| exchange12rocks | | | 7 | 3 | | | 1 | | 11 |
## GitHub issues opened GitHub issues help us identify errors and gaps in our documentation.
-| Docs Issues Opened | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | Grand Total |
-| ------------------ | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ----------: |
-| Community | 3 | 54 | 95 | 212 | 560 | 562 | 304 | 1790 |
-| mklement0 | | | 19 | 60 | 56 | 61 | 25 | 221 |
-| jszabo98 | | | | 2 | 15 | 6 | 1 | 24 |
-| iSazonov | | | 1 | 4 | 10 | 8 | 1 | 24 |
-| juvtib | | | | | | 15 | 7 | 22 |
-| doctordns | | | 5 | 3 | 5 | 6 | 1 | 20 |
-| alexandair | | 9 | 4 | 2 | | | | 15 |
-| vexx32 | | | | 3 | 11 | | | 14 |
-| clamb123 | | | | | | | 14 | 14 |
-| KirkMunro | | | | 7 | 5 | 1 | | 13 |
-| trollyanov | | | | | | | 11 | 11 |
-| JustinGrote | | | | 1 | 3 | 6 | 1 | 11 |
-| vors | 1 | 6 | 2 | 1 | | | | 10 |
+| Docs Issues Opened | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | Grand Total |
+| ------------------ | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ----------: |
+| Community | 3 | 54 | 95 | 212 | 559 | 561 | 332 | 9 | 1825 |
+| mklement0 | | | 19 | 60 | 56 | 61 | 27 | | 223 |
+| iSazonov | | | 1 | 4 | 10 | 8 | 3 | | 26 |
+| jszabo98 | | | | 2 | 15 | 6 | 1 | | 24 |
+| juvtib | | | | | | 15 | 7 | | 22 |
+| doctordns | | | 5 | 3 | 5 | 6 | 1 | | 20 |
+| vexx32 | | | | 3 | 11 | | | 1 | 15 |
+| alexandair | | 9 | 4 | 2 | | | | | 15 |
+| clamb123 | | | | | | | 14 | | 14 |
+| KirkMunro | | | | 7 | 5 | 1 | | | 13 |
+| trollyanov | | | | | | | 11 | | 11 |
+| JustinGrote | | | | 1 | 3 | 6 | 1 | | 11 |
+| vors | 1 | 6 | 2 | 1 | | | | | 10 |
+| rkeithhill | | | 1 | 2 | 2 | 2 | 3 | | 10 |
<!-- Link references --> [contrib]: contributing/overview.md