@@ -3,24 +3,24 @@ external help file: PSDesiredStateConfiguration-help.xml
33Locale : en-US
44Module Name : PSDesiredStateConfiguration
55ms.date : 05/19/2025
6- online version : https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/new-dscchecksum ?view=dsc-2.0&WT.mc_id=ps-gethelp
6+ online version : https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/New-DscChecksum ?view=dsc-2.0&WT.mc_id=ps-gethelp
77schema : 2.0.0
8- title : New-DscCheckSum
8+ title : New-DscChecksum
99---
10- # New-DscCheckSum
10+ # New-DscChecksum
1111
1212## SYNOPSIS
1313Creates 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
2525configuration and resource to be used in pull mode. The DSC service uses the checksums to make sure
2626that the correct configuration and resources exist on the target node. Place the checksums together
@@ -31,7 +31,7 @@ with the associated DSC documents and compressed DSC resources in the DSC servic
3131### Example 1: Create checksum files for all configurations in a specific path
3232
3333```
34- PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\"
34+ PS C:\> New-DscChecksum -Path "C:\DSC\Configurations\"
3535```
3636
3737This command creates checksum files for all configurations in the path ` C:\DSC\Configurations ` .
@@ -40,7 +40,7 @@ Any checksum files that already exist are skipped.
4040### Example 2: Create checksum files for all configurations in a specific path and overwrite the existing checksum files
4141
4242```
43- PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\" -Force
43+ PS C:\> New-DscChecksum -Path "C:\DSC\Configurations\" -Force
4444```
4545
4646This command creates new checksum files for all configurations in the path ` C:\DSC\Configurations ` .
0 commit comments