Skip to content

Commit aa250ac

Browse files
(GH-244) Add missing code for PSDSCv3 install (#245)
Prior to this change, the overview for the DSCv3 documentation included a sentence about installing PowerShell DSC v3, but did not include the code block to actually install the module. This change: - Adds the missing code block - Clarifies that the module is in beta - Resolves #244 - Fixes AB#204909
1 parent 5122d0c commit aa250ac

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

dsc/docs-conceptual/dsc-3.0/overview.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: >-
33
Learn about Microsoft's Desired State Configuration platform, including what it does and when
44
it should be used.
5-
ms.date: 06/28/2023
5+
ms.date: 01/29/2024
66
title: Microsoft Desired State Configuration v3 overview
77
---
88

@@ -68,7 +68,14 @@ To install DSCv3:
6868
1. Expand the release archive.
6969
1. Add the folder containing the expanded archive contents to the `PATH`.
7070

71-
To install the `PSDesiredStateConfiguration` version 3 from the PowerShell Gallery:
71+
To install the `PSDesiredStateConfiguration` version 3 beta from the PowerShell Gallery:
72+
73+
```powershell
74+
# Using PSResourceGet
75+
Install-PSResource -Name PSDesiredStateConfiguration -Version 3.0.0-beta1 -Prerelease
76+
# Using PowerShellGet
77+
Install-Module -Name PSDesiredStateConfiguration -RequiredVersion 3.0.0-beta1 -AllowPrerelease
78+
```
7279

7380
## Integrating with DSCv3
7481

0 commit comments

Comments
 (0)