Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dsc/docs-conceptual/dsc-3.0/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,17 @@ in this release, see the [diff on GitHub][compare-v3.1.0].
This release also includes an experimental extension for discovering resources installed as Appx
packages.

<details><summary>Related work items</summary>

- Issues:
- [#461][#461]
- [#681][#681]
- PRs:
- [#760][#760]
- [#762][#762]

</details>

- Addes support for passing parameters to the `dsc config` commands from stdin. You can pass
_either_ the configuration document or parameters file contents to the command from stdin, but
not both. This enables securely passing sensitive parameters to DSC without writing them to a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ external help file: PSDesiredStateConfiguration-help.xml
Locale: en-US
Module Name: PSDesiredStateConfiguration
ms.date: 10/04/2021
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/new-dscchecksum?view=dsc-1.1&WT.mc_id=ps-gethelp
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/New-DscChecksum?view=dsc-1.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: New-DscChecksum
---
Expand All @@ -20,7 +20,7 @@ New-DscChecksum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Co

## DESCRIPTION

The `New-DSCCheckSum` cmdlet generates checksum files for Windows PowerShell Desired State
The `New-DscChecksum` cmdlet generates checksum files for Windows PowerShell Desired State
Configuration (DSC) documents and compressed DSC resources. This cmdlet generates a checksum file
for each configuration and resource to be used in pull mode. The DSC service uses the checksums to
make sure that the correct configuration and resources exist on the target node. Place the checksums
Expand All @@ -31,7 +31,7 @@ together with the associated DSC documents and compressed DSC resources in the D
### Example 1: Create checksum files for all configurations in a specific path

```powershell
New-DscCheckSum -Path "C:\DSC\Configurations\"
New-DscChecksum -Path "C:\DSC\Configurations\"
```

This command creates checksum files for all configurations in the path `C:\DSC\Configurations`. Any
Expand All @@ -40,7 +40,7 @@ checksum files that already exist are skipped.
### Example 2: Create checksum files for all configurations in a specific path and overwrite the existing checksum files

```powershell
New-DscCheckSum -Path "C:\DSC\Configurations\" -Force
New-DscChecksum -Path "C:\DSC\Configurations\" -Force
```

This command creates new checksum files for all configurations in the path `C:\DSC\Configurations`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ external help file: PSDesiredStateConfiguration-help.xml
Locale: en-US
Module Name: PSDesiredStateConfiguration
ms.date: 05/19/2025
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/new-dscchecksum?view=dsc-2.0&WT.mc_id=ps-gethelp
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/New-DscChecksum?view=dsc-2.0&WT.mc_id=ps-gethelp
schema: 2.0.0
title: New-DscCheckSum
title: New-DscChecksum
---
# New-DscCheckSum
# New-DscChecksum

## SYNOPSIS
Creates checksum files for DSC documents and DSC resources.

## SYNTAX

```
New-DscCheckSum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
New-DscChecksum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION

The `New-DscCheckSum` cmdlet generates checksum files for PowerShell Desired State Configuration
The `New-DscChecksum` cmdlet generates checksum files for PowerShell Desired State Configuration
(DSC) documents and compressed DSC resources. This cmdlet generates a checksum file for each
configuration and resource to be used in pull mode. The DSC service uses the checksums to make sure
that the correct configuration and resources exist on the target node. Place the checksums together
Expand All @@ -31,7 +31,7 @@ with the associated DSC documents and compressed DSC resources in the DSC servic
### Example 1: Create checksum files for all configurations in a specific path

```
PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\"
PS C:\> New-DscChecksum -Path "C:\DSC\Configurations\"
```

This command creates checksum files for all configurations in the path `C:\DSC\Configurations`.
Expand All @@ -40,7 +40,7 @@ Any checksum files that already exist are skipped.
### Example 2: Create checksum files for all configurations in a specific path and overwrite the existing checksum files

```
PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\" -Force
PS C:\> New-DscChecksum -Path "C:\DSC\Configurations\" -Force
```

This command creates new checksum files for all configurations in the path `C:\DSC\Configurations`.
Expand Down
14 changes: 7 additions & 7 deletions dsc/dsc-3.0/PSDesiredStateConfiguration/New-DscChecksum.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@ external help file: PSDesiredStateConfiguration-help.xml
Locale: en-US
Module Name: PSDesiredStateConfiguration
ms.date: 05/19/2025
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/new-dscchecksum?view=dsc-3.0&WT.mc_id=ps-gethelp
online version: https://learn.microsoft.com/powershell/module/psdesiredstateconfiguration/New-DscChecksum?view=dsc-3.0&WT.mc_id=ps-gethelp
schema: 2.0.0
title: New-DscCheckSum
title: New-DscChecksum
---
# New-DscCheckSum
# New-DscChecksum

## SYNOPSIS
Creates checksum files for DSC documents and DSC resources.

## SYNTAX

```
New-DscCheckSum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm]
New-DscChecksum [-Path] <String[]> [[-OutPath] <String>] [-Force] [-WhatIf] [-Confirm]
[<CommonParameters>]
```

## DESCRIPTION

The `New-DscCheckSum` cmdlet generates checksum files for PowerShell Desired State Configuration
The `New-DscChecksum` cmdlet generates checksum files for PowerShell Desired State Configuration
(DSC) documents and compressed DSC resources. This cmdlet generates a checksum file for each
configuration and resource to be used in pull mode. The DSC service uses the checksums to make sure
that the correct configuration and resources exist on the target node. Place the checksums together
Expand All @@ -32,7 +32,7 @@ with the associated DSC documents and compressed DSC resources in the DSC servic
### Example 1: Create checksum files for all configurations in a specific path

```
PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\"
PS C:\> New-DscChecksum -Path "C:\DSC\Configurations\"
```

This command creates checksum files for all configurations in the path `C:\DSC\Configurations`.
Expand All @@ -41,7 +41,7 @@ Any checksum files that already exist are skipped.
### Example 2: Create checksum files for all configurations in a specific path

```
PS C:\> New-DscCheckSum -Path "C:\DSC\Configurations\" -Force
PS C:\> New-DscChecksum -Path "C:\DSC\Configurations\" -Force
```

This command creates new checksum files for all configurations in the path `C:\DSC\Configurations`.
Expand Down