Skip to content

Commit 90c9f74

Browse files
authored
Fix capitalization of the file name and minor edits (#327)
1 parent 9759ae0 commit 90c9f74

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

dsc/dsc-2.0/PSDesiredStateConfiguration/Get-DscResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
153153
154154
### Microsoft.PowerShell.DesiredStateConfiguration.DscResourceInfo[]
155155
156-
### string[]
156+
### System.String[]
157157
158158
## NOTES
159159

dsc/dsc-2.0/PSDesiredStateConfiguration/New-DSCCheckSum.md renamed to dsc/dsc-2.0/PSDesiredStateConfiguration/New-DscCheckSum.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
external help file: PSDesiredStateConfiguration-help.xml
33
Locale: en-US
44
Module Name: PSDesiredStateConfiguration
5-
ms.date: 09/14/2021
5+
ms.date: 05/19/2025
66
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/new-dscchecksum?view=dsc-2.0&WT.mc_id=ps-gethelp
77
schema: 2.0.0
8-
title: New-DscChecksum
8+
title: New-DscCheckSum
99
---
10-
# New-DscChecksum
10+
# New-DscCheckSum
1111

1212
## SYNOPSIS
1313
Creates checksum files for DSC documents and DSC resources.
1414

1515
## SYNTAX
1616

1717
```
18-
New-DscChecksum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
18+
New-DscCheckSum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
1919
```
2020

2121
## DESCRIPTION
2222

23-
The `New-DSCCheckSum` cmdlet generates checksum files for PowerShell Desired State Configuration
23+
The `New-DscCheckSum` cmdlet generates checksum files for PowerShell Desired State Configuration
2424
(DSC) documents and compressed DSC resources. This cmdlet generates a checksum file for each
2525
configuration and resource to be used in pull mode. The DSC service uses the checksums to make sure
2626
that the correct configuration and resources exist on the target node. Place the checksums together

dsc/dsc-2.0/PSDesiredStateConfiguration/PSDesiredStateConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Help Version: 7.2.0.0
44
Locale: en-US
55
Module Guid: 779e0998-8c72-4567-89b5-49313fc15351
66
Module Name: PSDesiredStateConfiguration
7-
ms.date: 12/13/2021
7+
ms.date: 05/19/2025
88
schema: 2.0.0
99
title: PSDesiredStateConfiguration
1010
---
@@ -25,5 +25,5 @@ Gets the DSC resources present on the computer.
2525
### [Invoke-DscResource](Invoke-DscResource.md)
2626
Runs a method of a specified PowerShell Desired State Configuration (DSC) resource.
2727

28-
### [New-DSCCheckSum](New-DSCCheckSum.md)
28+
### [New-DscCheckSum](New-DscCheckSum.md)
2929
Creates checksum files for DSC documents and DSC resources.

dsc/dsc-3.0/PSDesiredStateConfiguration/Get-DscResource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
153153
154154
### Microsoft.PowerShell.DesiredStateConfiguration.DscResourceInfo[]
155155
156-
### string[]
156+
### System.String[]
157157
158158
## NOTES
159159

dsc/dsc-3.0/PSDesiredStateConfiguration/New-DscChecksum.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,26 @@
22
external help file: PSDesiredStateConfiguration-help.xml
33
Locale: en-US
44
Module Name: PSDesiredStateConfiguration
5-
ms.date: 09/14/2021
5+
ms.date: 05/19/2025
66
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/new-dscchecksum?view=dsc-3.0&WT.mc_id=ps-gethelp
77
schema: 2.0.0
8-
title: New-DscChecksum
8+
title: New-DscCheckSum
99
---
10-
# New-DscChecksum
10+
# New-DscCheckSum
1111

1212
## SYNOPSIS
1313
Creates checksum files for DSC documents and DSC resources.
1414

1515
## SYNTAX
1616

1717
```
18-
New-DscChecksum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
18+
New-DscCheckSum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm]
19+
[<CommonParameters>]
1920
```
2021

2122
## DESCRIPTION
2223

23-
The `New-DSCCheckSum` cmdlet generates checksum files for PowerShell Desired State Configuration
24+
The `New-DscCheckSum` cmdlet generates checksum files for PowerShell Desired State Configuration
2425
(DSC) documents and compressed DSC resources. This cmdlet generates a checksum file for each
2526
configuration and resource to be used in pull mode. The DSC service uses the checksums to make sure
2627
that the correct configuration and resources exist on the target node. Place the checksums together
@@ -37,14 +38,15 @@ PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\"
3738
This command creates checksum files for all configurations in the path `C:\DSC\Configurations`.
3839
Any checksum files that already exist are skipped.
3940

40-
### Example 2: Create checksum files for all configurations in a specific path and overwrite the existing checksum files
41+
### Example 2: Create checksum files for all configurations in a specific path
4142

4243
```
4344
PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\" -Force
4445
```
4546

4647
This command creates new checksum files for all configurations in the path `C:\DSC\Configurations`.
47-
Specifying the *Force* parameter causes the command to overwrite any checksum files that already exist.
48+
Specifying the *Force* parameter causes the command to overwrite any checksum files that already
49+
exist.
4850

4951
## PARAMETERS
5052

@@ -114,8 +116,7 @@ Accept wildcard characters: False
114116
115117
### -WhatIf
116118
117-
Shows what would happen if the cmdlet runs.
118-
The cmdlet is not run.
119+
Shows what would happen if the cmdlet runs. The cmdlet is not run.
119120
120121
```yaml
121122
Type: System.Management.Automation.SwitchParameter
@@ -149,4 +150,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
149150
## RELATED LINKS
150151
151152
[Windows PowerShell Desired State Configuration Overview](/powershell/scripting/dsc/overview/dscforengineers)
152-

dsc/dsc-3.0/PSDesiredStateConfiguration/PSDesiredStateConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Help Version: 7.2.0.0
44
Locale: en-US
55
Module Guid: 779e0998-8c72-4567-89b5-49313fc15351
66
Module Name: PSDesiredStateConfiguration
7-
ms.date: 04/18/2025
7+
ms.date: 05/19/2025
88
schema: 2.0.0
99
title: PSDesiredStateConfiguration
1010
---
@@ -40,6 +40,6 @@ Gets the DSC resources present on the computer.
4040

4141
Runs a method of a specified PowerShell Desired State Configuration (DSC) resource.
4242

43-
### [New-DSCCheckSum](New-DSCCheckSum.md)
43+
### [New-DscCheckSum](New-DscCheckSum.md)
4444

4545
Creates checksum files for DSC documents and DSC resources.

0 commit comments

Comments
 (0)